Reputation: 465
I need from my Rails 3 app just to copy the dir and file tree structure from app/assets to public/assets, flattened (all images, javascripts etc. must go just to public/assets, maintaining their subfolder structure). Don't ask me why.
I don't want merging CSS and JS files into a single files, don't want digests, don't want compression.
Thanks.
Upvotes: 0
Views: 129
Reputation: 25029
What you want to do isn't to configure the asset pipeline; it's to disable it.
You can do this by setting config.assets.enabled = false
in your config/application.rb
.
Then instead of putting all of your assets in app/assets
, just put them in public
and refer to them as normal.
Upvotes: 2