How should one provide assets in an engine in Rails 3.1?
Where should they be located and can they be included automatically?
Originally asked by Tomas Celizna posted here.
|
How should one provide assets in an engine in Rails 3.1? Where should they be located and can they be included automatically? Originally asked by Tomas Celizna posted here. |
||||
|
|
|
The paths to the all the engines' assets folders are automatically loaded. The assets themselves are not loaded by default. This is understandable as the loading is done with The easy solution is to ask the user to require the js/css in application.js/css or wherever else it is needed. As the paths are loaded correctly, the user only need to specify the name of your asset (I'd recommend using the name of your engine). Example: Appended to
If you have split your js in different files, your file
This will load all js files in Note that If you have a rake task to install your engine, then you could do the append to application.js. Another way for the user to include it is to insert I don't think there is a way to have it inserted automatically |
|||||||||||
|