To create a new Ruby gem for use with Rails 3, should I use Jeweler or should I use Bundler's built-in gem skeleton to create a base gem? What are the differences that matter?
|
Use BundlerFrom the command line:
This will create a directory called |
|||
|
|
|
Creating a Gem isn't that difficult and I would advise to try building a gem from scratch, without any tools. After you know what's involved (creating a gemspec, building and pushing it to rubygems.org), you can use tools to speed up the process. My guess is you won't because making a gem is hardly the trouble at all. |
|||||||||||||||
|
|
I would go with Jeweler. The Bundler skeleton is only going to give you the basics. Jeweler has alot more options to work with and many helpful rake tasks for versioning, pushing to github, creating the gemspec, building and installing. If you are working with Rails 3 engines, I have a Jeweler fork (definitely a work-in-progress) that will generate the app skelaton and include the engine file. You just have to run the jeweler command with |
|||||||
|
|
Here's an alternative that's worth looking at: ore Bundler gives you a single template for ruby gems, whereas ore has multiple built in templates, plus the ability to create your own. It also supports Git, SVN (urgh) and Mercurial. |
|||
|
|