to load my rails 3.2.8 app on Heroku, I put in Gemfile:
group :development, :test do
gem 'sqlite3'
end
group :production do
gem 'pg'
end
and I gave 'bundle install', forgetting to give '-- without production' and now when I give 'rails s', the console gives me error: Could not find railties '..my gems..' (gem: load error) and Heroku gives me error when I give: heroku run rake db:migrate..In Gemfile I just put the gem 'sqlite3' and gave 'bundle install' but same error. How can I go back with bundle?