teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

Gemfileを追記しました

2020/02/21 10:09

投稿

rebirth210
rebirth210

スコア4

title CHANGED
File without changes
body CHANGED
@@ -178,4 +178,60 @@
178
178
  sqlite3.dllとsqlite3.exeをC:\Ruby26-x64\binにコピペ
179
179
 
180
180
  起動ボタンを押して実行
181
- 上記の実行ボタンを押したときのエラーメッセージが出現
181
+ 上記の実行ボタンを押したときのエラーメッセージが出現
182
+
183
+ ###追記
184
+ Gemfileの内容
185
+ ```
186
+ source 'https://rubygems.org'
187
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
188
+
189
+ ruby '2.6.5'
190
+
191
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
192
+ gem 'rails', '~> 6.0.2', '>= 6.0.2.1'
193
+ # Use sqlite3 as the database for Active Record
194
+ gem 'sqlite3', '~> 1.4'
195
+ # Use Puma as the app server
196
+ gem 'puma', '~> 4.1'
197
+ # Use SCSS for stylesheets
198
+ gem 'sass-rails', '>= 6'
199
+ # Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
200
+ gem 'webpacker', '~> 4.0'
201
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
202
+ gem 'turbolinks', '~> 5'
203
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
204
+ gem 'jbuilder', '~> 2.7'
205
+ # Use Redis adapter to run Action Cable in production
206
+ # gem 'redis', '~> 4.0'
207
+ # Use Active Model has_secure_password
208
+ # gem 'bcrypt', '~> 3.1.7'
209
+
210
+ # Use Active Storage variant
211
+ # gem 'image_processing', '~> 1.2'
212
+
213
+ # Reduces boot times through caching; required in config/boot.rb
214
+ gem 'bootsnap', '>= 1.4.2', require: false
215
+
216
+ group :development, :test do
217
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
218
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
219
+ end
220
+
221
+ group :development do
222
+ # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
223
+ gem 'web-console', '>= 3.3.0'
224
+ end
225
+
226
+ group :test do
227
+ # Adds support for Capybara system testing and selenium driver
228
+ gem 'capybara', '>= 2.15'
229
+ gem 'selenium-webdriver'
230
+ # Easy installation and use of web drivers to run system tests with browsers
231
+ gem 'webdrivers'
232
+ end
233
+
234
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
235
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
236
+
237
+ ```