質問編集履歴

1

/

2019/02/25 14:36

投稿

hazu
hazu

スコア33

test CHANGED
File without changes
test CHANGED
@@ -98,6 +98,110 @@
98
98
 
99
99
 
100
100
 
101
+ ```Gemfile
102
+
103
+ source 'https://rubygems.org'
104
+
105
+
106
+
107
+
108
+
109
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
110
+
111
+ gem 'rails', '~> 5.0.0'
112
+
113
+ # Use sqlite3 as the database for Active Record
114
+
115
+ gem 'sqlite3'
116
+
117
+ # Use Puma as the app server
118
+
119
+ gem 'puma', '~> 3.0'
120
+
121
+ # Use SCSS for stylesheets
122
+
123
+ gem 'sass-rails', '~> 5.0'
124
+
125
+ # Use Uglifier as compressor for JavaScript assets
126
+
127
+ gem 'uglifier', '>= 1.3.0'
128
+
129
+ # Use CoffeeScript for .coffee assets and views
130
+
131
+ gem 'coffee-rails', '~> 4.2'
132
+
133
+ # See https://github.com/rails/execjs#readme for more supported runtimes
134
+
135
+ # gem 'therubyracer', platforms: :ruby
136
+
137
+
138
+
139
+ # Use jquery as the JavaScript library
140
+
141
+ gem 'jquery-rails'
142
+
143
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
144
+
145
+ gem 'turbolinks', '~> 5'
146
+
147
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
148
+
149
+ gem 'jbuilder', '~> 2.5'
150
+
151
+ # Use Redis adapter to run Action Cable in production
152
+
153
+ # gem 'redis', '~> 3.0'
154
+
155
+ # Use ActiveModel has_secure_password
156
+
157
+ # gem 'bcrypt', '~> 3.1.7'
158
+
159
+
160
+
161
+ # Use Capistrano for deployment
162
+
163
+ # gem 'capistrano-rails', group: :development
164
+
165
+
166
+
167
+ group :development, :test do
168
+
169
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
170
+
171
+ gem 'byebug', platform: :mri
172
+
173
+ end
174
+
175
+
176
+
177
+ group :development do
178
+
179
+ # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
180
+
181
+ gem 'web-console'
182
+
183
+ gem 'listen', '~> 3.0.5'
184
+
185
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
186
+
187
+ gem 'spring'
188
+
189
+ gem 'spring-watcher-listen', '~> 2.0.0'
190
+
191
+ end
192
+
193
+
194
+
195
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
196
+
197
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
198
+
199
+
200
+
201
+ ```
202
+
203
+
204
+
101
205
  このエラーがどういう意味ですか?
102
206
 
103
207