Hi Adam, Here is my development.rb file, I can't see any reference to cache_template_loading, is the line I need to remove here?
# Settings specified here will take precedence over those in config/ environment.rb # In the development environment your application's code is reloaded on # every request. This slows down response time but is perfect for development # since you don't have to restart the webserver when you make code changes. config.cache_classes = false # Log error messages when you accidentally call methods on nil. config.whiny_nils = true # Show full error reports and disable caching config.action_controller.consider_all_requests_local = true config.action_view.debug_rjs = true config.action_controller.perform_caching = false # Don't care if the mailer can't send config.action_mailer.raise_delivery_errors = false On Mar 4, 8:08 pm, Adam Wiggins <[email protected]> wrote: > On Sun, Mar 1, 2009 at 11:49 PM, DAZ <[email protected]> wrote: > > rake aborted! > > undefined method `cache_template_loading=' for ActionView::Base:Class > > This method was removed in Rails 2.2. You'll need to either 1. > explicitly set your Rails version to 2.1 in environment.rb, or delete > the line mentioning cache_template_loading from > config/environments/development.rb. > > 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 -~----------~----~----~----~------~----~------~--~---
