On Tuesday, May 14, 2013 3:07:06 AM UTC-4, sith wrote: > > 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 > > > 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' ? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/1b073900-c589-4376-855e-503eb115351d%40googlegroups.com?hl=en-US. For more options, visit https://groups.google.com/groups/opt_out.

