Bundle install is green, but when I run "rake" I get the following:

rake aborted! undefined method `static_root=' for
#<Sprockets::Environment:0x16b6b78> ... Tasks: TOP => default => spec
=> db:test:prepare => db:abort_if_pending_migrations => environment
(See full trace by running task with --trace)

If I add "gem 'sprockets', '2.0.0.beta.15'" to Gemfile and rebundle and re-rake. Everything is okay.

link|improve this question
Please run this command again with --trace on the end of it. I suspect you're still running an older version of Rails which tries to use the static_root= method which is not available in this final release. – Ryan Bigg Aug 30 '11 at 0:51
If I go to rails 3.1.0.rc8 and sprockets 2.0.0, but still at sqlite3 and sqlite3-ruby at 1.3.3, I get this: rake aborted! Please install the sqlite3 adapter: gem install activerecord-sqlite3-adapter` (can't activate sqlite3 (~> 1.3.4), already activated sqlite3-1.3.3. Make sure all dependencies are added to Gemfile.)` – jasnow Aug 30 '11 at 1:36
Code demonstrating this question: github.com/jasnow/sample_app_3_1 – jasnow Aug 30 '11 at 23:59
Fixed my sqlite3 problem with this: stackoverflow.com/questions/6853046/… Successful Rails 3.1.0.rc8 "Rails Tutorial" Gemfile: pastie.org/2457446 Successful Results: pastie.org/2457433 – jasnow Aug 31 '11 at 0:57
feedback

1 Answer

I faced same issue,I resolved it by

gem install rails -v=3.1.0.rc8

check it out

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.