1
1

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.

Ruby on Rails Tutorial デプロイ時のError 及び その解決策

Posted at

Railsチュートリアル進行中、第1章の1.5.2「Herokuにデプロイする」で下記のコマンドを記述するとErrorが発生。

~/hello_app
$ git push heroku master
Error
remote:  !
remote:  !     You must use Bundler 2 or greater with this lockfile.
remote:  !

とりあえず

bash
$ bundler -v

でバージョン確認してみるも

bash
Bundler version 2.0.1

となっており、ちゃんとバージョン2以上やないかい!!!

結局解決策探していたら次のコードを記述すればデプロイできたので
応急処置として記載しておきます。

~/hello_app
$ heroku buildpacks:set https://github.com/bundler/heroku-buildpack-bundler2

参考ページ

これで先程のErrorは消えるはず
ですが新しくappをデプロイする際毎回同じ作業を繰り返すことになるので面倒です。
新しい方法が見つかり次第再度掲載し直します。

少しでも同じ悩みを抱える人の手助けになりますように。。。

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?