0

I want to develop some kind of user control solution in Rails, so then that control can be easily added to Ruby On Rails sites. For example, lets say, i want to create some chat user control with its own database,views,controllers, so then that chat control can be added to Ruby On Rails sites.

Is this possible? And if yes, what should i learn for that(plugins,gems?)

Thanks in advance

Arman
  • 61
  • 1
  • 5
  • See my previous question [here](http://stackoverflow.com/questions/6497834/differences-between-railties-and-engines-in-ruby-on-rails-3) – Fabio Jul 04 '11 at 17:51

1 Answers1

1

You want to build an Engine.

Jeremy Weathers
  • 2,556
  • 1
  • 16
  • 24
  • Thanks, though it looks quite difficult to create an engine, but you pointed me to what i should learn!! – Arman Jul 04 '11 at 18:26