vote up 1 vote down star

Is it possible to include view code in a plugin, such that an app using the plugin can simply call reference the view code like it might reference one of its own partials.

Am I off track here or are there good examples of plugins which do this..

flag

65% accept rate

2 Answers

vote up 1 vote down check

You can do this with the engine stuff that's already built into Rails 2.3, I've done it with calenduh. This is supposedly vastly improved in the up and coming Rails 3.

link|flag
Does that mean rails engines will be built-in with Rails3? – jpartogi Sep 4 at 3:44
Thanks Radar, so rails engines looks like the way to go.. its relatively new so are there any gotchas to look out for.. Can I package all the static assets (css, images etc) with the rails engine? – Dom Sep 4 at 8:03
@jpartogi: yup @Dom: You can't package them but if you look at calenduh I've added something to install.rb that will copy them over to public. – Radar Sep 5 at 23:28
vote up 1 vote down

You can do that with Rails Engines.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.