質問編集履歴

1

Gemfile追記。

2019/08/29 02:50

投稿

tkshp
tkshp

スコア174

test CHANGED
File without changes
test CHANGED
@@ -149,3 +149,129 @@
149
149
 
150
150
 
151
151
  Windows 10
152
+
153
+
154
+
155
+ ### 追記
156
+
157
+
158
+
159
+ Gemfileの内容。
160
+
161
+ ```
162
+
163
+ source 'https://rubygems.org'
164
+
165
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
166
+
167
+
168
+
169
+ ruby '2.4.5'
170
+
171
+
172
+
173
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
174
+
175
+ gem 'rails', '~> 5.2.2'
176
+
177
+ # Use sqlite3 as the database for Active Record
178
+
179
+ gem 'sqlite3'
180
+
181
+ # Use Puma as the app server
182
+
183
+ gem 'puma', '~> 3.11'
184
+
185
+ # Use SCSS for stylesheets
186
+
187
+ gem 'sass-rails', '~> 5.0'
188
+
189
+ # Use Uglifier as compressor for JavaScript assets
190
+
191
+ gem 'uglifier', '>= 1.3.0'
192
+
193
+ # See https://github.com/rails/execjs#readme for more supported runtimes
194
+
195
+ gem 'duktape'
196
+
197
+ # Use CoffeeScript for .coffee assets and views
198
+
199
+ gem 'coffee-rails', '~> 4.2'
200
+
201
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
202
+
203
+ gem 'turbolinks', '~> 5'
204
+
205
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
206
+
207
+ gem 'jbuilder', '~> 2.5'
208
+
209
+ # Use Redis adapter to run Action Cable in production
210
+
211
+ # gem 'redis', '~> 4.0'
212
+
213
+ # Use ActiveModel has_secure_password
214
+
215
+ # gem 'bcrypt', '~> 3.1.7'
216
+
217
+
218
+
219
+ # Use ActiveStorage variant
220
+
221
+ # gem 'mini_magick', '~> 4.8'
222
+
223
+
224
+
225
+ # Use Capistrano for deployment
226
+
227
+ # gem 'capistrano-rails', group: :development
228
+
229
+
230
+
231
+ # Reduces boot times through caching; required in config/boot.rb
232
+
233
+ gem 'bootsnap', '>= 1.1.0', require: false
234
+
235
+
236
+
237
+ group :development, :test do
238
+
239
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
240
+
241
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
242
+
243
+ end
244
+
245
+
246
+
247
+ group :development do
248
+
249
+ # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
250
+
251
+ gem 'web-console', '>= 3.3.0'
252
+
253
+ end
254
+
255
+
256
+
257
+ group :test do
258
+
259
+ # Adds support for Capybara system testing and selenium driver
260
+
261
+ gem 'capybara', '>= 2.15'
262
+
263
+ gem 'selenium-webdriver'
264
+
265
+ # Easy installation and use of chromedriver to run system tests with Chrome
266
+
267
+ gem 'chromedriver-helper'
268
+
269
+ end
270
+
271
+
272
+
273
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
274
+
275
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
276
+
277
+ ```