Have my app working on dev lappie on Ruby 1.9.1 and Rails 3.0.0.beta3
(yay!).

The Gemfile for the app is as follows:
source :gemcutter

gem 'rails', '3.0.0.beta3'
gem 'devise', '1.1.rc1'

group :development do
        gem 'mysql'
end

group :test do
        gem 'rspec'
        gem 'rspec-rails'
        gem 'capybara'
        gem 'database_cleaner'
        gem 'cucumber-rails'
        gem 'cucumber'
        gem 'pickle'
end

group :production do
        gem 'pg'
end

When I push to heroku (and am on the bamboo 1.9.1 stack) I'm getting
the following error :
===
-----> Gemfile detected, running Bundler
-----> Bundler works best on the Bamboo stack.  Please migrate your
app:
       http://docs.heroku.com/bamboo
       Unresolved dependencies detected; Installing...
       Fetching source index from http://gemcutter.org/
       Resolving dependencies
       Installing abstract (1.0.0) from system gems
       Installing actionmailer (3.0.0.beta3) from rubygems repository
at http://gemcutter.org/ /usr/local/lib/ruby/site_ruby/1.8/rubygems/
installer.rb:186:in `install': actionmailer requires Ruby version >=
1.8.7 (Gem::InstallError)
===

Not quite getting it since the thing is on 1.9.1 but could appreciate
any pointers to what may be wrong. Figure it's a gotcha I don't know
about (do I need to explicitly list every gem in the rails bundle
required for example?).

thanks !
Daryl.

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.

Reply via email to