On Thursday, April 19, 2012 5:22:46 PM UTC-5, John Moroney wrote: > > Jim, > > bundle update returns radiant (1.0.1) in the gemfile.lock, which crashes > the app on heroku > if you use radiant from git 1.0.1 works fine on heroku.
# Gemfile gem "radiant", "1.0.1", :git => "git://github.com/radiant/radiant.git", :tag => "1.0.1" the released gem was built with ruby 1.9 and rubygems 1.8 which leads to a gem incompatible with rubygems 1.3.7 which heroku uses. > radiant seems to like only the bamboo stack, if that is important > right. as far as i know heroku only supports rails 3.x on cedar and radiant is on 2.3.x. bamboo and cedar both support ruby 1.9.2 so if there is nothing stopping you from using bamboo it's certainly going to make life easier at least until radiant is on a newer rails.
