質問編集履歴

9

誤字

2020/05/28 02:47

投稿

Ryuto.dc
Ryuto.dc

スコア1

test CHANGED
File without changes
test CHANGED
@@ -308,7 +308,7 @@
308
308
 
309
309
  .rbenv/versions/2.6.3/lib/ruby/gems/2.6.0/gems/bootsnap-1.4.6/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:23:in `require': cannot load such file -- aliyun/oss (LoadError)
310
310
 
311
- というエラーが発生してしましました。
311
+ というエラーが発生してしましました。
312
312
 
313
313
 
314
314
 

8

文章の追加

2020/05/28 02:47

投稿

Ryuto.dc
Ryuto.dc

スコア1

test CHANGED
File without changes
test CHANGED
@@ -8,9 +8,11 @@
8
8
 
9
9
 
10
10
 
11
- 変更があったので、gitにプッシュ後、herokuへもpushするとディプロイができなくなりました。
12
-
13
- らくbundlerを更新たからだと思うのですが、対応っています。
11
+ の後下記の通りいろいろ試てるのですが、ドツボはまってしま
12
+
13
+ ローカルで開くことも、へロクへディプロイすることもできなくなってしました。
14
+
15
+ お力添えをお願いいたします。
14
16
 
15
17
 
16
18
 

7

書式の改善

2020/05/27 09:40

投稿

Ryuto.dc
Ryuto.dc

スコア1

test CHANGED
File without changes
test CHANGED
@@ -312,6 +312,8 @@
312
312
 
313
313
  bundle exec rake -Pを行うと下記が出てくる
314
314
 
315
+
316
+
315
317
  rake aborted!
316
318
 
317
319
  LoadError: cannot load such file -- aliyun/oss

6

gem file 追加

2020/05/27 09:12

投稿

Ryuto.dc
Ryuto.dc

スコア1

test CHANGED
File without changes
test CHANGED
@@ -130,6 +130,10 @@
130
130
 
131
131
 
132
132
 
133
+
134
+
135
+
136
+
133
137
  追加で実施したこと
134
138
 
135
139
  rubyとbundlerのバージョン変更(herokuないで対応のバージョンが決まっているとあったため)
@@ -148,6 +152,150 @@
148
152
 
149
153
 
150
154
 
155
+ ```ここに言語を入力
156
+
157
+ gemfile
158
+
159
+ source 'https://rubygems.org'
160
+
161
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
162
+
163
+
164
+
165
+ ruby '2.6.3'
166
+
167
+
168
+
169
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
170
+
171
+ gem 'rails', '~> 5.2.4', '>= 5.2.4.2'
172
+
173
+ # Use sqlite3 as the database for Active Record
174
+
175
+ # gem 'sqlite3'
176
+
177
+ # Use Puma as the app server
178
+
179
+ gem "puma", ">= 3.12.6"
180
+
181
+ # Use SCSS for stylesheets
182
+
183
+ gem 'sass-rails', '~> 5.0'
184
+
185
+ # Use Uglifier as compressor for JavaScript assets
186
+
187
+ gem 'uglifier', '>= 1.3.0'
188
+
189
+ # See https://github.com/rails/execjs#readme for more supported runtimes
190
+
191
+ # gem 'mini_racer', platforms: :ruby
192
+
193
+ gem 'jquery-rails'
194
+
195
+ # Use CoffeeScript for .coffee assets and views
196
+
197
+ gem 'coffee-rails', '~> 4.2'
198
+
199
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
200
+
201
+ gem 'turbolinks', '~> 5'
202
+
203
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
204
+
205
+ gem 'jbuilder', '~> 2.5'
206
+
207
+ # Use Redis adapter to run Action Cable in production
208
+
209
+ # gem 'redis', '~> 4.0'
210
+
211
+ # Use ActiveModel has_secure_password
212
+
213
+ # gem 'bcrypt', '~> 3.1.7'
214
+
215
+ gem 'bcrypt'
216
+
217
+ gem 'carrierwave'
218
+
219
+ # Use ActiveStorage variant
220
+
221
+ # gem 'mini_magick', '~> 4.8'
222
+
223
+ gem 'fog'
224
+
225
+ # Use Capistrano for deployment
226
+
227
+ # gem 'capistrano-rails', group: :development
228
+
229
+ # Reduces boot times through caching; required in config/boot.rb
230
+
231
+ gem 'bootsnap', '>= 1.1.0', require: false
232
+
233
+
234
+
235
+ group :development, :test do
236
+
237
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
238
+
239
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
240
+
241
+ end
242
+
243
+
244
+
245
+ group :development do
246
+
247
+ # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
248
+
249
+ gem 'web-console', '>= 3.3.0'
250
+
251
+ gem 'listen', '>= 3.0.5', '< 3.2'
252
+
253
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
254
+
255
+ gem 'spring'
256
+
257
+ gem 'spring-watcher-listen', '~> 2.0.0'
258
+
259
+ gem 'letter_opener_web'
260
+
261
+ end
262
+
263
+
264
+
265
+ group :production do
266
+
267
+ gem 'pg'
268
+
269
+ end
270
+
271
+
272
+
273
+ group :test do
274
+
275
+ # Adds support for Capybara system testing and selenium driver
276
+
277
+ gem 'capybara', '>= 2.15'
278
+
279
+ gem 'sqlite3'
280
+
281
+ gem 'selenium-webdriver'
282
+
283
+ # Easy installation and use of chromedriver to run system tests with Chrome
284
+
285
+ gem 'chromedriver-helper'
286
+
287
+ end
288
+
289
+
290
+
291
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
292
+
293
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
294
+
295
+ ```
296
+
297
+
298
+
151
299
  上記実施後rails s でローカル環境でサーバーが開けなくなりました、、、、
152
300
 
153
301
  rails s 後

5

実施事項の追加

2020/05/27 09:09

投稿

Ryuto.dc
Ryuto.dc

スコア1

test CHANGED
File without changes
test CHANGED
@@ -110,7 +110,11 @@
110
110
 
111
111
  gemfile.lockの削除と更新
112
112
 
113
+ rubyのバージョンを2.6.5 ⇨ 2.6.3に変更⇨ローカル環境が開けなくなる(下記詳細含む)
113
114
 
115
+ bunder 2.0.2にバージョン変更
116
+
117
+ 上記実施のうえbundle install
114
118
 
115
119
 
116
120
 
@@ -124,13 +128,11 @@
124
128
 
125
129
  bunder 2.0.2
126
130
 
127
- gemfile.lock上は下記のように出ている
128
-
129
131
 
130
132
 
131
133
  追加で実施したこと
132
134
 
133
- rubyとbundlerのバージョン変更
135
+ rubyとbundlerのバージョン変更(herokuないで対応のバージョンが決まっているとあったため)
134
136
 
135
137
  $ brew update && brew upgrade ruby-build
136
138
 
@@ -146,9 +148,9 @@
146
148
 
147
149
 
148
150
 
149
- rails s でローカル環境でサーバーが開けなくなりました、、、、
151
+ 上記実施後rails s でローカル環境でサーバーが開けなくなりました、、、、
150
152
 
151
- rails 後
153
+ rails s 
152
154
 
153
155
  bin/rails: Bootsnap::LoadPathCache::FallbackScan
154
156
 

4

追加エラー

2020/05/27 08:40

投稿

Ryuto.dc
Ryuto.dc

スコア1

test CHANGED
File without changes
test CHANGED
@@ -148,6 +148,16 @@
148
148
 
149
149
  rails s でローカル環境でサーバーが開けなくなりました、、、、
150
150
 
151
+ rails 後
152
+
153
+ bin/rails: Bootsnap::LoadPathCache::FallbackScan
154
+
155
+ 中略
156
+
157
+ .rbenv/versions/2.6.3/lib/ruby/gems/2.6.0/gems/bootsnap-1.4.6/lib/bootsnap/load_path_cache/core_ext/kernel_require.rb:23:in `require': cannot load such file -- aliyun/oss (LoadError)
158
+
159
+ というエラーが発生してしましました。
160
+
151
161
 
152
162
 
153
163
  bundle exec rake -Pを行うと下記が出てくる

3

問題点追加

2020/05/27 08:26

投稿

Ryuto.dc
Ryuto.dc

スコア1

test CHANGED
File without changes
test CHANGED
@@ -146,6 +146,10 @@
146
146
 
147
147
 
148
148
 
149
+ rails s でローカル環境でサーバーが開けなくなりました、、、、
150
+
151
+
152
+
149
153
  bundle exec rake -Pを行うと下記が出てくる
150
154
 
151
155
  rake aborted!

2

rubyのバージョン変更

2020/05/27 08:12

投稿

Ryuto.dc
Ryuto.dc

スコア1

test CHANGED
File without changes
test CHANGED
@@ -126,10 +126,46 @@
126
126
 
127
127
  gemfile.lock上は下記のように出ている
128
128
 
129
- BUNDLED WITH
130
129
 
130
+
131
- 2.1.4
131
+ 追加で実施したこと
132
+
133
+ rubyとbundlerのバージョン変更
134
+
135
+ $ brew update && brew upgrade ruby-build
136
+
137
+ $ rbenv install 2.6.3
138
+
139
+ $ rbenv local 2.6.3
140
+
141
+ $ gem install bundler -v 2.0.2
142
+
143
+ $ rm Gemfile.lock
144
+
145
+ $ bundle install 
132
146
 
133
147
 
134
148
 
135
- ここにより詳細な情報を記載してください。
149
+ bundle exec rake -P行うと下が出てく
150
+
151
+ rake aborted!
152
+
153
+ LoadError: cannot load such file -- aliyun/oss
154
+
155
+ (eval):1:in `service_klass'
156
+
157
+ /User/config/application.rb:7:in `<top (required)>'
158
+
159
+ /Users//Rakefile:4:in `require_relative'
160
+
161
+ /Users//Rakefile:4:in `<top (required)>'
162
+
163
+ /Users/.rbenv/versions/2.6.3/bin/bundle:23:in `load'
164
+
165
+ /Users/.rbenv/versions/2.6.3/bin/bundle:23:in `<main>'
166
+
167
+
168
+
169
+ Caused by:
170
+
171
+ Bootsnap::LoadPathCache::FallbackScan:

1

bundlerのバージジョンを追加

2020/05/27 08:08

投稿

Ryuto.dc
Ryuto.dc

スコア1

test CHANGED
File without changes
test CHANGED
@@ -122,6 +122,14 @@
122
122
 
123
123
  ・rails 5.2.4.2
124
124
 
125
+ bunder 2.0.2
126
+
127
+ gemfile.lock上は下記のように出ている
128
+
129
+ BUNDLED WITH
130
+
131
+ 2.1.4
132
+
125
133
 
126
134
 
127
135
  ここにより詳細な情報を記載してください。