5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Railsチュートリアル 第2章<ハマったこと>

Posted at

#2.1 アプリケーションの計画 その1
Toyアプリケーション用のGemfileをコピペし、
bundle install --without production
を実行すると、以下のエラーが発生。

You have requested:
  spring = 2.0.2

The bundle currently has spring locked at 2.1.0.
Try running `bundle update spring`

If you are updating multiple gems in your Gemfile at once,
try passing them all to `bundle update`

bundle updateを実行するよう表示されているので、
実行してみると、問題なくupdateされた模様。

再度bundle install --without productionを実行。
上手くいった!

Bundle complete! 15 Gemfile dependencies, 64 gems now installed.
Gems in the group production were not installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.

#2.1 アプリケーションの計画 その2
指示に従いソースコードを編集後、
Herokuにアップロードしようとして
$ heroku createを実行すると、以下のエラーが発生。

bash: heroku: command not found

herokuがインストールされていない?
第1章でインストールしなかったっけ・・・??

下記URL
https://teratail.com/questions/157274
を参考にさせていただき、
単発(?)インストールであったことが判明。
(Linuxコマンドの知識不足です)

今回は、1章と同じ方法で再度インストールしました。

インストール

$ source <(curl -sL https://cdn.learnenough.com/heroku_install)

結果

$ heroku --version
heroku/7.33.1 linux-x64 node-v11.14.0
5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?