LoginSignup
3
1

More than 1 year has passed since last update.

クオートとバッククオートを間違って bundle install できなかった話

Last updated at Posted at 2015-10-27

問題

Gemfile に gem を追加する。

Gemfile
gem `devise`

インストールする。

$ bundle install

何度試してもエラーになる。

There was an error parsing `Gemfile`: No such file or directory - devise. Bundler cannot continue.

解決

シングルクオートで書くべきところを。
バッククオートで書いていた。

直したら動いた。

Gemfile
- gem `devise`
+ gem 'devise'

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

メンター受付

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