mirror of
https://github.com/ViViDboarder/abuse-the-force.git
synced 2024-11-21 22:36:27 +00:00
c14df49aec
Now install with: rake install
18 lines
364 B
Ruby
18 lines
364 B
Ruby
$:.push File.expand_path('../lib', __FILE__)
|
|
require 'rake/testtask'
|
|
require 'abusetheforce/version'
|
|
|
|
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 |