-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
34 lines (27 loc) · 760 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
require 'rake'
require 'rake/clean'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'
CLEAN.include("**/*.gem", "**/*.rbc", "**/*.lock")
namespace 'gem' do
desc 'Create the mkmf-lite gem.'
task :create => [:clean] do
require 'rubygems/package'
spec = Gem::Specification.load('mkmf-lite.gemspec')
spec.signing_key = File.join(Dir.home, '.ssh', 'gem-private_key.pem')
Gem::Package.build(spec)
end
desc 'Install the mkmf-lite gem.'
task :install => [:create] do
file = Dir["*.gem"].first
sh "gem install -l #{file}"
end
end
RuboCop::RakeTask.new
desc "Run the test suite"
RSpec::Core::RakeTask.new(:spec)
# Clean up afterwards
Rake::Task[:spec].enhance do
Rake::Task[:clean].invoke
end
task :default => :spec