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.
--traceon the end of it. I suspect you're still running an older version of Rails which tries to use thestatic_root=method which is not available in this final release. – Ryan Bigg Aug 30 '11 at 0:51rake 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