質問編集履歴
1
記載していた情報が反映されていなかったので追記しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -11,4 +11,70 @@
|
|
11
11
|
|
12
12
|
## 現状
|
13
13
|
|
14
|
-
Gemfile
|
14
|
+
Gemfile内
|
15
|
+
$source 'https://rubygems.org'
|
16
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
17
|
+
|
18
|
+
ruby '2.5.0'
|
19
|
+
|
20
|
+
Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
21
|
+
gem 'rails', '~> 5.2.4', '>= 5.2.4.1'
|
22
|
+
Use sqlite3 as the database for Active Record
|
23
|
+
gem 'sqlite3'
|
24
|
+
Use Puma as the app server
|
25
|
+
gem 'puma', '~> 3.11'
|
26
|
+
Use SCSS for stylesheets
|
27
|
+
gem 'sass-rails', '~> 5.0'
|
28
|
+
Use Uglifier as compressor for JavaScript assets
|
29
|
+
gem 'uglifier', '>= 1.3.0'
|
30
|
+
See https://github.com/rails/execjs#readme for more supported runtimes
|
31
|
+
gem 'mini_racer', platforms: :ruby
|
32
|
+
|
33
|
+
Use CoffeeScript for .coffee assets and views
|
34
|
+
gem 'coffee-rails', '~> 4.2'
|
35
|
+
Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
36
|
+
gem 'turbolinks', '~> 5'
|
37
|
+
Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
38
|
+
gem 'jbuilder', '~> 2.5'
|
39
|
+
Use Redis adapter to run Action Cable in production
|
40
|
+
gem 'redis', '~> 4.0'
|
41
|
+
Use ActiveModel has_secure_password
|
42
|
+
gem 'bcrypt', '~> 3.1.7'
|
43
|
+
|
44
|
+
Use ActiveStorage variant
|
45
|
+
gem 'mini_magick', '~> 4.8'
|
46
|
+
|
47
|
+
Use Capistrano for deployment
|
48
|
+
gem 'capistrano-rails', group: :development
|
49
|
+
|
50
|
+
Reduces boot times through caching; required in config/boot.rb
|
51
|
+
gem 'bootsnap', '>= 1.1.0', require: false
|
52
|
+
|
53
|
+
group :development, :test do
|
54
|
+
Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
55
|
+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
56
|
+
end
|
57
|
+
|
58
|
+
group :development do
|
59
|
+
Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
60
|
+
gem 'web-console', '>= 3.3.0'
|
61
|
+
gem 'listen', '>= 3.0.5', '< 3.2'
|
62
|
+
Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
63
|
+
gem 'spring'
|
64
|
+
gem 'spring-watcher-listen', '~> 2.0.0'
|
65
|
+
end
|
66
|
+
|
67
|
+
group :test do
|
68
|
+
Adds support for Capybara system testing and selenium driver
|
69
|
+
gem 'capybara', '>= 2.15'
|
70
|
+
gem 'selenium-webdriver'
|
71
|
+
Easy installation and use of chromedriver to run system tests with Chrome
|
72
|
+
gem 'chromedriver-helper'
|
73
|
+
end
|
74
|
+
|
75
|
+
Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
76
|
+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
77
|
+
|
78
|
+
|
79
|
+
|
80
|
+
Gemfile.lockのファイルがありませんでした。
|