views:

45

answers:

2

i wonder if ruby on rails have bundles, the ones similar in django?

kind of a plugin that contains css, js, images, ruby code and everything for one feature.

thanks

+1  A: 

You could use generators to copy CSS, JS and image files from a plugin to your application's public dir. For models, controllers and the rest please see http://guides.rails.info/plugins.html

kschaper
but i guess that is not the same thing?
never_had_a_name
+1  A: 

I believe Rails Engines tries to solve that problem

RyanWilcox