質問編集履歴

1

gemfile全文を載せました

2018/06/21 17:48

投稿

ari1235
ari1235

スコア11

test CHANGED
File without changes
test CHANGED
@@ -90,9 +90,103 @@
90
90
 
91
91
  DBをmysqlにするためのバージョン合わせ等は行なった。
92
92
 
93
- gemfileとして追記したのは以下
93
+ gemfile全文は以下
94
-
94
+
95
- ```
95
+ ```
96
+
97
+ source 'https://rubygems.org'
98
+
99
+
100
+
101
+
102
+
103
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
104
+
105
+ gem 'rails', '4.2.6'
106
+
107
+ # Use mysql as the database for Active Record
108
+
109
+ gem 'mysql2', '0.3.18'
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.1.0'
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 following links in your web application faster. Read more: https://github.com/rails/turbolinks
134
+
135
+ gem 'turbolinks'
136
+
137
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
138
+
139
+ gem 'jbuilder', '~> 2.0'
140
+
141
+ # bundle exec rake doc:rails generates the API under doc/api.
142
+
143
+ gem 'sdoc', '~> 0.4.0', group: :doc
144
+
145
+
146
+
147
+ # Use ActiveModel has_secure_password
148
+
149
+ # gem 'bcrypt', '~> 3.1.7'
150
+
151
+
152
+
153
+ # Use Unicorn as the app server
154
+
155
+ # gem 'unicorn'
156
+
157
+
158
+
159
+ # Use Capistrano for deployment
160
+
161
+ # gem 'capistrano-rails', group: :development
162
+
163
+
164
+
165
+ group :development, :test do
166
+
167
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
168
+
169
+ gem 'byebug'
170
+
171
+ end
172
+
173
+
174
+
175
+ group :development do
176
+
177
+ # Access an IRB console on exception pages or by using <%= console %> in views
178
+
179
+ gem 'web-console', '~> 2.0'
180
+
181
+
182
+
183
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
184
+
185
+ gem 'spring'
186
+
187
+ end
188
+
189
+
96
190
 
97
191
  gem 'dotenv-rails'
98
192
 
@@ -108,4 +202,6 @@
108
202
 
109
203
  end
110
204
 
205
+
206
+
111
- ```
207
+ ```