質問編集履歴
1
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -76,7 +76,127 @@
|
|
76
76
|
|
77
77
|
```ここに言語名を入力
|
78
78
|
|
79
|
+
source 'https://rubygems.org'
|
80
|
+
|
81
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
ruby '2.7.1'
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
90
|
+
|
91
|
+
gem 'rails', '~> 6.0.3'
|
92
|
+
|
93
|
+
# Use sqlite3 as the database for Active Record
|
94
|
+
|
95
|
+
gem 'sqlite3'
|
96
|
+
|
97
|
+
# Use Puma as the app server
|
98
|
+
|
99
|
+
gem 'puma', '~> 4.1'
|
100
|
+
|
101
|
+
# Use SCSS for stylesheets
|
102
|
+
|
103
|
+
gem 'sass-rails', '>= 6'
|
104
|
+
|
105
|
+
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
|
106
|
+
|
107
|
+
gem 'webpacker', '~> 4.0'
|
108
|
+
|
109
|
+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
110
|
+
|
111
|
+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
112
|
+
|
113
|
+
gem 'jbuilder', '~> 2.7'
|
114
|
+
|
115
|
+
# Use Redis adapter to run Action Cable in production
|
116
|
+
|
117
|
+
# gem 'redis', '~> 4.0'
|
118
|
+
|
119
|
+
# Use Active Model has_secure_password
|
120
|
+
|
121
|
+
# gem 'bcrypt', '~> 3.1.7'
|
122
|
+
|
123
|
+
|
124
|
+
|
125
|
+
# Use Active Storage variant
|
126
|
+
|
127
|
+
# gem 'image_processing', '~> 1.2'
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
# Reduces boot times through caching; required in config/boot.rb
|
132
|
+
|
133
|
+
gem 'bootsnap', '>= 1.4.2', require: false
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
group :development, :test do
|
138
|
+
|
139
|
+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
140
|
+
|
141
|
+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
end
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
group :development do
|
150
|
+
|
151
|
+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
152
|
+
|
153
|
+
gem 'web-console', '>= 3.3.0'
|
154
|
+
|
155
|
+
gem 'listen', '~> 3.2'
|
156
|
+
|
79
|
-
|
157
|
+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
158
|
+
|
159
|
+
gem 'spring'
|
160
|
+
|
161
|
+
gem 'spring-watcher-listen', '~> 2.0.0'
|
162
|
+
|
163
|
+
end
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
group :test do
|
168
|
+
|
169
|
+
# Adds support for Capybara system testing and selenium driver
|
170
|
+
|
171
|
+
gem 'capybara', '>= 2.15'
|
172
|
+
|
173
|
+
gem 'selenium-webdriver'
|
174
|
+
|
175
|
+
# Easy installation and use of web drivers to run system tests with browsers
|
176
|
+
|
177
|
+
gem 'webdrivers'
|
178
|
+
|
179
|
+
gem 'sqlite3'
|
180
|
+
|
181
|
+
end
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
group :production do
|
186
|
+
|
187
|
+
gem 'pg'
|
188
|
+
|
189
|
+
end
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
194
|
+
|
195
|
+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
196
|
+
|
197
|
+
gem "jquery-rails"
|
198
|
+
|
199
|
+
|
80
200
|
|
81
201
|
```
|
82
202
|
|