I started playing around with rails 3.1.rc4 but the first problem I'm having is that the assets are not available. I created a brand new project and in the index page the rails image gives 404. Actually any assets are available.
I checked
# application.rb
# Enable the asset pipeline
config.assets.enabled = true
And I tried
config.assets.paths << "#{Rails.root}/app/assets/images"
and also from the shell
$ rake rails:update
$ rake assets:clean
$ rake assets:precompile
had no luck, so I destroyed the gemset and I made another one reinstalling rails, but nothing worked so far.
Any ideas? - thank you