質問編集履歴

1

追記

2019/06/26 02:01

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -124,4 +124,156 @@
124
124
 
125
125
  ```
126
126
 
127
+
128
+
129
+ ```Gemfile
130
+
131
+ source 'https://rubygems.org'
132
+
133
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
134
+
135
+
136
+
137
+ ruby '2.6.3'
138
+
139
+
140
+
141
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
142
+
143
+ gem 'rails', '~> 5.2.3'
144
+
145
+ # Use sqlite3 as the database for Active Record
146
+
147
+ gem 'sqlite3'
148
+
149
+ # Use Puma as the app server
150
+
151
+ gem 'puma', '~> 3.11'
152
+
153
+ # Use SCSS for stylesheets
154
+
155
+ gem 'sass-rails', '~> 5.0'
156
+
157
+ # Use Uglifier as compressor for JavaScript assets
158
+
159
+ gem 'uglifier', '>= 1.3.0'
160
+
161
+ # See https://github.com/rails/execjs#readme for more supported runtimes
162
+
163
+ # gem 'mini_racer', platforms: :ruby
164
+
165
+
166
+
167
+ # Use CoffeeScript for .coffee assets and views
168
+
169
+ gem 'coffee-rails', '~> 4.2'
170
+
171
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
172
+
173
+ gem 'turbolinks', '~> 5'
174
+
175
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
176
+
177
+ gem 'jbuilder', '~> 2.5'
178
+
179
+ # Use Redis adapter to run Action Cable in production
180
+
181
+ # gem 'redis', '~> 4.0'
182
+
183
+ # Use ActiveModel has_secure_password
184
+
185
+ # gem 'bcrypt', '~> 3.1.7'
186
+
187
+
188
+
189
+ # Use ActiveStorage variant
190
+
191
+ # gem 'mini_magick', '~> 4.8'
192
+
193
+
194
+
195
+ # Use Capistrano for deployment
196
+
197
+ # gem 'capistrano-rails', group: :development
198
+
199
+
200
+
201
+ # Reduces boot times through caching; required in config/boot.rb
202
+
203
+ gem 'bootsnap', '>= 1.1.0', require: false
204
+
205
+
206
+
207
+ group :development, :test do
208
+
209
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
210
+
211
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
212
+
213
+ end
214
+
215
+
216
+
217
+ group :development do
218
+
219
+ # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
220
+
221
+ gem 'web-console', '>= 3.3.0'
222
+
223
+ gem 'listen', '>= 3.0.5', '< 3.2'
224
+
225
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
226
+
227
+ gem 'spring'
228
+
229
+ gem 'spring-watcher-listen', '~> 2.0.0'
230
+
231
+ end
232
+
233
+
234
+
235
+ group :test do
236
+
237
+ # Adds support for Capybara system testing and selenium driver
238
+
239
+ gem 'capybara', '>= 2.15'
240
+
241
+ gem 'selenium-webdriver'
242
+
243
+ # Easy installation and use of chromedriver to run system tests with Chrome
244
+
245
+ gem 'chromedriver-helper'
246
+
247
+ end
248
+
249
+
250
+
251
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
252
+
253
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
254
+
255
+
256
+
257
+ gem 'rails-i18n'
258
+
259
+
260
+
261
+ gem "jquery-rails"
262
+
263
+
264
+
265
+ gem 'bootstrap-sass'
266
+
267
+ gem 'will_paginate', '3.0.4'
268
+
269
+ gem 'will_paginate-bootstrap', '1.0.1'
270
+
271
+
272
+
273
+
274
+
275
+ ```
276
+
277
+
278
+
127
279
  NoMethodErrorとのことですが、ググっても解決法がわかりません。。