質問編集履歴

2

追記

2018/10/04 09:47

投稿

kozica
kozica

スコア58

test CHANGED
File without changes
test CHANGED
@@ -13,6 +13,10 @@
13
13
 
14
14
 
15
15
  これはどうすればよいのでしょうか?
16
+
17
+
18
+
19
+ どなたも解決ができなようですが、わかる方いませんでしょうか?
16
20
 
17
21
  ```
18
22
 

1

追記

2018/10/04 09:46

投稿

kozica
kozica

スコア58

test CHANGED
File without changes
test CHANGED
@@ -1,4 +1,16 @@
1
1
  bundle installで下記のようなエラーがでてきます
2
+
3
+
4
+
5
+ bundle updateしろというので
6
+
7
+ bundle updateしたら,bundle update activerecordしろと言われ
8
+
9
+ bundle update activerecordしたらbundle updateしろと振り出しに戻ります
10
+
11
+
12
+
13
+
2
14
 
3
15
  これはどうすればよいのでしょうか?
4
16
 
@@ -46,4 +58,126 @@
46
58
 
47
59
  the gems in your Gemfile, which may resolve the conflict.
48
60
 
61
+
62
+
63
+ $ bundle update
64
+
65
+ Your Gemfile lists the gem settingslogic (>= 0) more than once.
66
+
67
+ You should probably keep only one of them.
68
+
69
+ While it's not a problem now, it could cause errors if you change the version of one of them later.
70
+
71
+ Fetching gem metadata from https://rubygems.org/.......
72
+
73
+ Fetching gem metadata from https://rubygems.org/.
74
+
75
+ Resolving dependencies................
76
+
77
+ Using rake 12.3.1
78
+
79
+ Using concurrent-ruby 1.0.5
80
+
81
+ Using i18n 0.9.5
82
+
83
+ Using multi_json 1.13.1
84
+
85
+ Using activesupport 3.2.14
86
+
87
+ Using builder 3.0.4
88
+
89
+ Using activemodel 3.2.14
90
+
91
+ Using erubis 2.7.0
92
+
93
+ Using journey 1.0.4
94
+
95
+ Using rack 1.4.7
96
+
97
+ Using rack-cache 1.8.0
98
+
99
+ Using rack-test 0.6.3
100
+
101
+ Using hike 1.2.3
102
+
103
+ Using tilt 1.4.1
104
+
105
+ Using sprockets 2.2.3
106
+
107
+ Using actionpack 3.2.14
108
+
109
+ Using mime-types 1.25.1
110
+
111
+ Using polyglot 0.3.5
112
+
113
+ Using treetop 1.4.15
114
+
115
+ Using mail 2.5.5
116
+
117
+ Using actionmailer 3.2.14
118
+
119
+ Fetching activerecord 3.2.14
120
+
121
+ Downloading activerecord-3.2.14 revealed dependencies not in the API or the lockfile
122
+
123
+ (activesupport (= 3.2.14), activemodel (= 3.2.14), arel (~> 3.0.2), tzinfo (~> 0.3.29)).
124
+
125
+ Either installing with `--full-index` or running `bundle update activerecord` should fix
126
+
127
+ the problem.
128
+
129
+
130
+
131
+ In Gemfile:
132
+
133
+ acts_as_list was resolved to 0.9.16, which depends on
134
+
135
+ activerecord
136
+
137
+
138
+
139
+ $ bundle update activerecord
140
+
141
+ Your Gemfile lists the gem settingslogic (>= 0) more than once.
142
+
143
+ You should probably keep only one of them.
144
+
145
+ While it's not a problem now, it could cause errors if you change the version of one of them later.
146
+
147
+ Fetching gem metadata from https://rubygems.org/.......
148
+
149
+ Fetching gem metadata from https://rubygems.org/.
150
+
151
+ Resolving dependencies...
152
+
153
+ Bundler could not find compatible versions for gem "rspec-core":
154
+
155
+ In snapshot (Gemfile.lock):
156
+
157
+ rspec-core (= 3.8.0)
158
+
159
+
160
+
161
+ In Gemfile:
162
+
163
+ guard-rspec was resolved to 4.7.3, which depends on
164
+
165
+ rspec (< 4.0, >= 2.99.0) was resolved to 3.8.0, which depends on
166
+
167
+ rspec-core (~> 3.8.0)
168
+
169
+
170
+
171
+ rspec-rails (~> 3.7.2) was resolved to 3.7.2, which depends on
172
+
173
+ rspec-core (~> 3.7.0)
174
+
175
+
176
+
177
+ Running `bundle update` will rebuild your snapshot from scratch, using only
178
+
179
+ the gems in your Gemfile, which may resolve the conflict.
180
+
181
+
182
+
49
183
  ```