質問編集履歴

2

cloneしたアプリのurlを追加しました

2020/08/18 13:08

投稿

yutann
yutann

スコア23

test CHANGED
File without changes
test CHANGED
@@ -221,3 +221,9 @@
221
221
 
222
222
 
223
223
  ```
224
+
225
+
226
+
227
+ ### git上のリポジトリのURL
228
+
229
+ クローンしたアプリケーションのURLは[こちら](https://github.com/sho7650/heroku_ruby_0124)になります。

1

Gemfileのコードを追加しました。

2020/08/18 13:08

投稿

yutann
yutann

スコア23

test CHANGED
File without changes
test CHANGED
@@ -129,3 +129,95 @@
129
129
  アプリケーションをpushするのに適した方法を教えていただきたいです。
130
130
 
131
131
  よろしくお願いします。
132
+
133
+
134
+
135
+ 追記として、アプリケーション内のGemfileは以下のようになっています。
136
+
137
+ ```Gemfile
138
+
139
+ source 'https://rubygems.org'
140
+
141
+
142
+
143
+ ruby "2.3.3"
144
+
145
+
146
+
147
+ gem 'rspec'
148
+
149
+ gem 'rspec-rails'
150
+
151
+ gem 'rake'
152
+
153
+
154
+
155
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
156
+
157
+ gem 'rails', '~> 4.2.0'
158
+
159
+ # Use SCSS for stylesheets
160
+
161
+ # gem 'sass-rails', '~> 5.0'
162
+
163
+ # Use Uglifier as compressor for JavaScript assets
164
+
165
+ # gem 'uglifier', '>= 1.3.0'
166
+
167
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
168
+
169
+ # gem 'jbuilder', '~> 2.0'
170
+
171
+ # bundle exec rake doc:rails generates the API under doc/api.
172
+
173
+ # gem 'sdoc', '~> 0.4.0', group: :doc
174
+
175
+
176
+
177
+ # Use ActiveModel has_secure_password
178
+
179
+ # gem 'bcrypt', '~> 3.1.7'
180
+
181
+
182
+
183
+ # Use Unicorn as the app server
184
+
185
+ # gem 'unicorn'
186
+
187
+
188
+
189
+ # Use Capistrano for deployment
190
+
191
+ # gem 'capistrano-rails', group: :development
192
+
193
+
194
+
195
+ group :development do
196
+
197
+ # Use sqlite3 as the database for Active Record
198
+
199
+ gem 'sqlite3'
200
+
201
+ # Access an IRB console on exception pages or by using <%= console %> in views
202
+
203
+ gem 'web-console', '~> 2.0'
204
+
205
+ end
206
+
207
+
208
+
209
+ group :production do
210
+
211
+ # Use postgresql as the database for Active Record
212
+
213
+ gem 'pg', '~> 0.15'
214
+
215
+ # Use easily Heroku with Rails
216
+
217
+ gem 'rails_12factor'
218
+
219
+ end
220
+
221
+
222
+
223
+ ```