Search code examples
ruby-on-railsrubygemsruby-on-rails-plugins

How to convert a gem to plugin in ruby on rails and vice versa?


Is there any tool to convert plugin to gem and vice versa.


Solution

  • Check out Jeweler -- it helps you get all the files together that you need to build a gem, then have a look at rubygems.org to publish it when you're ready.

    I would encourage you to build gems as opposed to plugins, they're typically easier to maintain during a project lifecycle.