My articles have images. I put the images in app/assests/images and store their location in a field in the database.
Then I can display them in by using:
This is a problem I ran into when Rails 3.1 was released.
If your assets are manually placed by you then all you have to do is run:
rake assets:precompile
This will precompile your assets into public/assets
.
It's best to precompile on your production server so you don't have unessential files on your development server.
If you are uploading images using something like Paperclip, then don't use the asset folder.
You need put your images in the public folder. In your case probably public/assets/articles