While running rake precompile:assets i’m getting the following error
This is the error message:
rake assets:precompile:all RAILS_ENV=production
rake aborted!
undefined local variable or method `establish_connection’ for
ActiveRecord::Base:Class
On Tuesday, May 14, 2013 3:07:06 AM UTC-4, sith wrote:
Please help
not sure on this, it could be a number of things. establish_connection
is
a class method used by Active Record to establish a connection between
your
application and the database, using the information you provide in
config/database.yml. By default, it’s called whenever rails is
invoked,
even though it really has nothing to do with precompiling assets.
Usually,
when it throws an error, there’s an error somewhere in the database.yml
file, but this error almost looks like it’s missing the definition for
the
ActiveRecord class.
It’s going to be hard to pinpoint this error without more information.
What version of rails are you running and in your config/application.rb
file do you have the line require ‘rails/all’ ?
While running rake precompile:assets i’m getting the following error
This is the error message:
rake assets:precompile:all RAILS_ENV=production
rake aborted!
undefined local variable or method `establish_connection’ for
ActiveRecord::Base:Class
Do you get the same error when you start the server or run rake
db:migrate for example?