Added Jeweler for building the gem when the time comes

This commit is contained in:
Mitchell Hashimoto 2010-01-30 22:06:22 -08:00
parent eaf74d921e
commit 03dd3e1d7f
2 changed files with 17 additions and 1 deletions

3
.gitignore vendored
View File

@ -1,2 +1,3 @@
gembin/*
vendor/gems/*
vendor/gems/*
pkg/*

View File

@ -1,5 +1,20 @@
require 'rake/testtask'
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "hobo"
gemspec.summary = "Create virtualized development environments"
gemspec.description = "Create virtualized development environments"
gemspec.email = "todo@todo.com"
gemspec.homepage = "http://github.com/mitchellh/hobo"
gemspec.authors = ["Mitchell Hashimoto", "John Bender"]
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end
task :default => :test
Rake::TestTask.new do |t|