Re: [Rails] Adding a path to assets for Rails 3.1.2
Monday, December 26, 2011, 1:17:14 PM, you wrote:
RS> Referring to http://guides.rubyonrails.org/asset_pipeline.html it says:
RS> - - - -
RS> You can add additional (fully qualified) paths to the pipeline in
RS> config/application.rb. For example:
RS> config.assets.paths << Rails.root.join("app", "assets", "flash")
RS> - - - -
RS> I did that but when I look at
RS> Rails.application.config.assets.paths
RS> later in the code, the path to app/assets/flash has disappeared.
RS> What's the right way to add a path to assets?
RS> --
RS> Posted via http://www.ruby-forum.com/.
I'll answer my own question.
The documentation is wrong.
Instead create a file (an initializer) in config\initializers. I called mine
add_to_asset_paths.rb
My config\initializers\add_to_asset_paths.rb looks like
- - - - -
# Ralph: http://guides.rubyonrails.org/asset_pipeline.html is wrong
Rails.application.config.assets.paths << (Rails.root.join("app", "assets", "flash")).to_s
- - - - -
I hope this saves someone else from pulling their hair out.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home