I get this same error running locally. I was able to fix it by changing this line:
On Sun, Mar 15, 2009 at 12:00 PM, Nick Dimiduk <[email protected]> wrote: > config.gem 'mislav-will_paginate', :version => '~> 2.2.3', :lib => > 'will_paginate', :source => 'http://gems.github.com' > ...to read like this: config.gem 'mislav-will_paginate', :version => '>= 2.2.3', :lib => 'will_paginate', :source => 'http://gems.github.com' Since the latest version of mislav-will_paginate is 2.2.8, specifying >= 2.2.3 means that that will work. (Your other option would be to specify the exact gem version of 2.2.3 in your .gems.) Adam --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
