Added Jeweler for building the gem when the time comes
This commit is contained in:
parent
eaf74d921e
commit
03dd3e1d7f
|
@ -1,2 +1,3 @@
|
||||||
gembin/*
|
gembin/*
|
||||||
vendor/gems/*
|
vendor/gems/*
|
||||||
|
pkg/*
|
15
Rakefile
15
Rakefile
|
@ -1,5 +1,20 @@
|
||||||
require 'rake/testtask'
|
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
|
task :default => :test
|
||||||
|
|
||||||
Rake::TestTask.new do |t|
|
Rake::TestTask.new do |t|
|
||||||
|
|
Loading…
Reference in New Issue