質問編集履歴

1

gemfileを追加

2019/04/28 09:38

投稿

awa
awa

スコア34

test CHANGED
File without changes
test CHANGED
@@ -104,6 +104,90 @@
104
104
 
105
105
  ```
106
106
 
107
+ ```ruby
108
+
109
+ 【gemfile】
110
+
111
+ # Use SCSS for stylesheets
112
+
113
+ gem 'sass-rails', '~> 5.0'
114
+
115
+ # Use Uglifier as compressor for JavaScript assets
116
+
117
+ gem 'uglifier', '>= 1.3.0'
118
+
119
+ # Use CoffeeScript for .coffee assets and views
120
+
121
+ gem 'coffee-rails', '~> 4.2'
122
+
123
+ # See https://github.com/rails/execjs#readme for more supported runtimes
124
+
125
+ # gem 'therubyracer', platforms: :ruby
126
+
127
+
128
+
129
+ # Use jquery as the JavaScript library
130
+
131
+ gem 'jquery-rails'
132
+
133
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
134
+
135
+ gem 'turbolinks', '~> 5'
136
+
137
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
138
+
139
+ gem 'jbuilder', '~> 2.5'
140
+
141
+ # Use Redis adapter to run Action Cable in production
142
+
143
+ # gem 'redis', '~> 3.0'
144
+
145
+ # Use ActiveModel has_secure_password
146
+
147
+ # gem 'bcrypt', '~> 3.1.7'
148
+
149
+ gem 'bootstrap', '~> 4.1.1'
150
+
151
+ # Use Capistrano for deployment
152
+
153
+ # gem 'capistrano-rails', group: :development
154
+
155
+
156
+
157
+ group :development, :test do
158
+
159
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
160
+
161
+ gem 'byebug', platform: :mri
162
+
163
+ end
164
+
165
+
166
+
167
+ group :development do
168
+
169
+ # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
170
+
171
+ gem 'web-console'
172
+
173
+ gem 'listen', '~> 3.0.5'
174
+
175
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
176
+
177
+ gem 'spring'
178
+
179
+ gem 'spring-watcher-listen', '~> 2.0.0'
180
+
181
+ end
182
+
183
+
184
+
185
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
186
+
187
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
188
+
189
+ ```
190
+
107
191
 
108
192
 
109
193
  お手数ですが、どうぞよろしくお願いいたします。