質問編集履歴

3

編集

2020/06/20 06:40

投稿

mako19
mako19

スコア6

test CHANGED
File without changes
test CHANGED
@@ -36,7 +36,7 @@
36
36
 
37
37
 
38
38
 
39
- ```application.html.haml
39
+ ```haml
40
40
 
41
41
  !!!
42
42
 

2

ファイル名を追加

2020/06/20 06:39

投稿

mako19
mako19

スコア6

test CHANGED
File without changes
test CHANGED
@@ -36,7 +36,7 @@
36
36
 
37
37
 
38
38
 
39
- ```haml
39
+ ```application.html.haml
40
40
 
41
41
  !!!
42
42
 

1

Gemファイルを追加しました

2020/06/20 06:39

投稿

mako19
mako19

スコア6

test CHANGED
@@ -1 +1 @@
1
- cannot load such file -- coffee_scriptにつ
1
+ cannot load such file -- coffee_scriptで困ってます。
test CHANGED
@@ -66,6 +66,150 @@
66
66
 
67
67
 
68
68
 
69
+ ```Gemfile
70
+
71
+ source 'https://rubygems.org'
72
+
73
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
74
+
75
+
76
+
77
+ ruby '2.6.5'
78
+
79
+
80
+
81
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
82
+
83
+ gem 'rails', '~> 6.0.0'
84
+
85
+ # Use mysql as the database for Active Record
86
+
87
+ gem 'mysql2', '>= 0.4.4'
88
+
89
+ # Use Puma as the app server
90
+
91
+ gem 'puma', '~> 3.11'
92
+
93
+ # Use SCSS for stylesheets
94
+
95
+ gem 'sass-rails', '~> 5'
96
+
97
+ # Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
98
+
99
+ gem 'webpacker', '~> 4.0'
100
+
101
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
102
+
103
+ gem 'turbolinks', '~> 5'
104
+
105
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
106
+
107
+ gem 'jbuilder', '~> 2.7'
108
+
109
+ # Use Redis adapter to run Action Cable in production
110
+
111
+ # gem 'redis', '~> 4.0'
112
+
113
+ # Use Active Model has_secure_password
114
+
115
+ # gem 'bcrypt', '~> 3.1.7'
116
+
117
+
118
+
119
+ # Use Active Storage variant
120
+
121
+ # gem 'image_processing', '~> 1.2'
122
+
123
+
124
+
125
+ # Reduces boot times through caching; required in config/boot.rb
126
+
127
+ gem 'bootsnap', '>= 1.4.2', require: false
128
+
129
+
130
+
131
+ group :development, :test do
132
+
133
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
134
+
135
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
136
+
137
+ end
138
+
139
+
140
+
141
+ group :development do
142
+
143
+ # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
144
+
145
+ gem 'web-console', '>= 3.3.0'
146
+
147
+ gem 'listen', '>= 3.0.5', '< 3.2'
148
+
149
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
150
+
151
+ gem 'spring'
152
+
153
+ gem 'spring-watcher-listen', '~> 2.0.0'
154
+
155
+ end
156
+
157
+
158
+
159
+ group :test do
160
+
161
+ # Adds support for Capybara system testing and selenium driver
162
+
163
+ gem 'capybara', '>= 2.15'
164
+
165
+ gem 'selenium-webdriver'
166
+
167
+ # Easy installation and use of web drivers to run system tests with browsers
168
+
169
+ gem 'webdrivers'
170
+
171
+ end
172
+
173
+
174
+
175
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
176
+
177
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
178
+
179
+
180
+
181
+ gem "haml-rails", ">= 1.0", '<= 2.0.1'
182
+
183
+
184
+
185
+ gem 'font-awesome-sass'
186
+
187
+
188
+
189
+ gem 'devise'
190
+
191
+
192
+
193
+ gem 'carrierwave'
194
+
195
+
196
+
197
+ gem 'mini_magick'
198
+
199
+
200
+
201
+ gem 'jquery-rails'
202
+
203
+
204
+
205
+ ```
206
+
207
+
208
+
209
+
210
+
211
+
212
+
69
213
 
70
214
 
71
215