简体   繁体   中英

Bundle install not working with gem 'sqlite' and 'pg'

I was about to deploy my app so i was updating the gem file to be.

group :development do
  gem ‘sqlite3’
end

group :production do
  gem ‘pg’
  gem 'rails_12factor'
end

When i run the bundle install i get an error saying 'Undefined local variable or method `'sqlite3'' for Gemfile' which is weird because previously sqlite was the only gem in the file.

Thanks

Use single ' or double quotes " around gem names like you've done for rails_12factor . Update your Gemfile as follows:

group :development do
  gem 'sqlite3'
end

group :production do
  gem 'pg'
  gem 'rails_12factor'
end

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM