abuse-the-force/Rakefile

18 lines
364 B
Ruby
Raw Normal View History

$:.push File.expand_path('../lib', __FILE__)
2013-04-18 16:09:05 +00:00
require 'rake/testtask'
require 'abusetheforce/version'
2013-04-18 16:09:05 +00:00
Rake::TestTask.new do |t|
t.libs << 'test'
end
task :default => :build
desc "Build the gem"
task :build do
system "gem build abusetheforce.gemspec"
end
task :install => [:build] do
system "gem install abusetheforce-#{AbuseTheForce::VERSION}.gem"
end