Skip to content

Customizing your project's gem specification

technicalpickles edited this page Aug 22, 2010 · 9 revisions

When you instantiate your Jeweler::Tasks, you have opportunity to customize your projects Gem::Specification. Here is a bare minimum to get going:


 Jeweler::Tasks.new do |gemspec|
   gemspec.name = "the-perfect-gem"
   gemspec.summary = "This gem is perfect"
   gemspec.email = "[email protected]"
   gemspec.homepage = "http://github.com/technicalpickles/the-perfect-gem"
   gemspec.authors = ["Josh Nichols"]
 end