#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