質問編集履歴

1

rubyのバージョンとgemfileの中身を追記しました。

2016/06/28 06:04

投稿

kanjin
kanjin

スコア8

test CHANGED
File without changes
test CHANGED
@@ -67,3 +67,123 @@
67
67
  ###補足情報(言語/FW/ツール等のバージョンなど)
68
68
 
69
69
  より詳細な情報
70
+
71
+
72
+
73
+ 回答ありがとうございます。
74
+
75
+
76
+
77
+ rubyのバージョンは以下の様になっています。
78
+
79
+ ruby 2.1.3p242 (2014-09-19 revision 47630) [x86_64-darwin15.0]
80
+
81
+
82
+
83
+ これがGemfileの中身です。
84
+
85
+
86
+
87
+ source 'https://rubygems.org'
88
+
89
+
90
+
91
+
92
+
93
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
94
+
95
+ gem 'rails', '4.2.6'
96
+
97
+ # Use mysql as the database for Active Record
98
+
99
+ gem 'mysql2', '0.3.18',
100
+
101
+ # Use SCSS for stylesheets
102
+
103
+ gem 'sass-rails', '~> 4.0.2'
104
+
105
+ # Use Uglifier as compressor for JavaScript assets
106
+
107
+ gem 'uglifier', '>= 1.3.0'
108
+
109
+ # Use CoffeeScript for .coffee assets and views
110
+
111
+ gem 'coffee-rails', '~> 4.1.0'
112
+
113
+ # See https://github.com/rails/execjs#readme for more supported runtimes
114
+
115
+ # gem 'therubyracer', platforms: :ruby
116
+
117
+
118
+
119
+ # Use jquery as the JavaScript library
120
+
121
+ gem 'jquery-rails'
122
+
123
+ # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
124
+
125
+ gem 'turbolinks'
126
+
127
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
128
+
129
+ gem 'jbuilder', '~> 2.0'
130
+
131
+ # bundle exec rake doc:rails generates the API under doc/api.
132
+
133
+ gem 'sdoc', '~> 0.4.0', group: :doc
134
+
135
+
136
+
137
+ # Use ActiveModel has_secure_password
138
+
139
+ # gem 'bcrypt', '~> 3.1.7'
140
+
141
+
142
+
143
+ # Use Unicorn as the app server
144
+
145
+ # gem 'unicorn'
146
+
147
+
148
+
149
+ # Use Capistrano for deployment
150
+
151
+ # gem 'capistrano-rails', group: :development
152
+
153
+
154
+
155
+ group :development, :test do
156
+
157
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
158
+
159
+ gem 'byebug'
160
+
161
+ end
162
+
163
+
164
+
165
+ group :development do
166
+
167
+ # Access an IRB console on exception pages or by using <%= console %> in views
168
+
169
+ gem 'web-console', '~> 2.0'
170
+
171
+
172
+
173
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
174
+
175
+ gem 'spring'
176
+
177
+ end
178
+
179
+
180
+
181
+ gem 'pry-rails'
182
+
183
+ gem 'compass-rails', '~> 2.0'
184
+
185
+ gem 'sprockets' , '2.11.0'
186
+
187
+
188
+
189
+ 申し訳ございませんが、よろしくお願いします。