Oddly this is no longer required.

master
Tom Vaughan 2013-09-21 12:29:10 -03:00
parent 268ddb1a14
commit fd5fa8c04d
1 changed files with 1 additions and 22 deletions

View File

@ -11,25 +11,4 @@ require 'rake/clean'
task :test => ["cucumber"]
require "middleman-deploy/pkg-info"
PACKAGE = "#{Middleman::Deploy::PACKAGE}"
VERSION = "#{Middleman::Deploy::VERSION}"
task :package do
system "gem build #{PACKAGE}.gemspec"
end
task :install => :package do
Dir.chdir("pkg") do
system "gem install #{PACKAGE}-#{VERSION}"
end
end
task :release => :package do
Dir.chdir("pkg") do
system "gem push #{PACKAGE}-#{VERSION}"
end
end
task :default => :test
task :default => :test