質問編集履歴
1
記載していた情報が反映されていなかったので追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -24,4 +24,136 @@
|
|
24
24
|
|
25
25
|
|
26
26
|
|
27
|
-
Gemfile
|
27
|
+
Gemfile内
|
28
|
+
|
29
|
+
$source 'https://rubygems.org'
|
30
|
+
|
31
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
ruby '2.5.0'
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
40
|
+
|
41
|
+
gem 'rails', '~> 5.2.4', '>= 5.2.4.1'
|
42
|
+
|
43
|
+
Use sqlite3 as the database for Active Record
|
44
|
+
|
45
|
+
gem 'sqlite3'
|
46
|
+
|
47
|
+
Use Puma as the app server
|
48
|
+
|
49
|
+
gem 'puma', '~> 3.11'
|
50
|
+
|
51
|
+
Use SCSS for stylesheets
|
52
|
+
|
53
|
+
gem 'sass-rails', '~> 5.0'
|
54
|
+
|
55
|
+
Use Uglifier as compressor for JavaScript assets
|
56
|
+
|
57
|
+
gem 'uglifier', '>= 1.3.0'
|
58
|
+
|
59
|
+
See https://github.com/rails/execjs#readme for more supported runtimes
|
60
|
+
|
61
|
+
gem 'mini_racer', platforms: :ruby
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
Use CoffeeScript for .coffee assets and views
|
66
|
+
|
67
|
+
gem 'coffee-rails', '~> 4.2'
|
68
|
+
|
69
|
+
Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
70
|
+
|
71
|
+
gem 'turbolinks', '~> 5'
|
72
|
+
|
73
|
+
Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
74
|
+
|
75
|
+
gem 'jbuilder', '~> 2.5'
|
76
|
+
|
77
|
+
Use Redis adapter to run Action Cable in production
|
78
|
+
|
79
|
+
gem 'redis', '~> 4.0'
|
80
|
+
|
81
|
+
Use ActiveModel has_secure_password
|
82
|
+
|
83
|
+
gem 'bcrypt', '~> 3.1.7'
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
Use ActiveStorage variant
|
88
|
+
|
89
|
+
gem 'mini_magick', '~> 4.8'
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
Use Capistrano for deployment
|
94
|
+
|
95
|
+
gem 'capistrano-rails', group: :development
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
Reduces boot times through caching; required in config/boot.rb
|
100
|
+
|
101
|
+
gem 'bootsnap', '>= 1.1.0', require: false
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
group :development, :test do
|
106
|
+
|
107
|
+
Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
108
|
+
|
109
|
+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
110
|
+
|
111
|
+
end
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
group :development do
|
116
|
+
|
117
|
+
Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
118
|
+
|
119
|
+
gem 'web-console', '>= 3.3.0'
|
120
|
+
|
121
|
+
gem 'listen', '>= 3.0.5', '< 3.2'
|
122
|
+
|
123
|
+
Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
124
|
+
|
125
|
+
gem 'spring'
|
126
|
+
|
127
|
+
gem 'spring-watcher-listen', '~> 2.0.0'
|
128
|
+
|
129
|
+
end
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
group :test do
|
134
|
+
|
135
|
+
Adds support for Capybara system testing and selenium driver
|
136
|
+
|
137
|
+
gem 'capybara', '>= 2.15'
|
138
|
+
|
139
|
+
gem 'selenium-webdriver'
|
140
|
+
|
141
|
+
Easy installation and use of chromedriver to run system tests with Chrome
|
142
|
+
|
143
|
+
gem 'chromedriver-helper'
|
144
|
+
|
145
|
+
end
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
150
|
+
|
151
|
+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
Gemfile.lockのファイルがありませんでした。
|