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 35 36 37 38 39 40 41 42 43 44
|
require 'rake'
require 'rake/clean'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'
CLEAN.include('**/*.gem', '**/*.rbc', '**/*.rbx', '**/*.lock')
namespace :gem do
desc "Build the sys-filesystem gem"
task :create => [:clean] do
require 'rubygems/package'
spec = Gem::Specification.load('sys-filesystem.gemspec')
spec.signing_key = File.join(Dir.home, '.ssh', 'gem-private_key.pem')
Gem::Package.build(spec)
end
desc "Install the sys-filesystem gem"
task :install => [:create] do
file = Dir['*.gem'].first
sh "gem install -l #{file}"
end
end
desc "Run the example program"
task :example do
sh "ruby -Ilib -Ilib/unix -Ilib/windows examples/example_stat.rb"
end
RuboCop::RakeTask.new
namespace :rubocop do
RuboCop::RakeTask.new(:unix) do |task|
task.patterns = ['lib/sys/unix/sys/**/*.rb', 'spec/*unix*']
end
RuboCop::RakeTask.new(:windows) do |task|
task.patterns = ['lib/sys/windows/sys/**/*.rb', 'spec/*windows*']
end
end
desc "Run the test suite"
RSpec::Core::RakeTask.new(:spec)
task :default => :spec
|