Sha256: 6d6b827410de78cf3540141f3941fa92339cdc845ca9c026e337ed7b321631cd
Contents?: true
Size: 1.57 KB
Versions: 4
Compression:
Stored size: 1.57 KB
Contents
require 'rake' require 'rake/clean' require 'rake/testtask' require 'rbconfig' include Config desc "Clean the build files for the sys-admin source for UNIX systems" task :clean do Dir.chdir('ext') do unless RUBY_PLATFORM.match('mswin') build_file = 'admin.' + Config::CONFIG['DLEXT'] sh 'make distclean' if File.exists?(build_file) File.delete("sys/#{build_file}") if File.exists?("sys/#{build_file}") end end end desc "Build the sys-admin package on UNIX systems (but don't install it)" task :build => [:clean] do Dir.chdir('ext') do unless RUBY_PLATFORM.match('mswin') ruby 'extconf.rb' sh 'make' build_file = 'admin.' + Config::CONFIG['DLEXT'] FileUtils.cp(build_file, 'sys') end end end if RUBY_PLATFORM.match('mswin') desc "Install the sys-admin package for MS Windows" task :install do install_dir = File.join(CONFIG['sitelibdir'], 'sys') Dir.mkdir(install_dir) unless File.exists?(install_dir) FileUtils.cp('lib/sys/admin.rb', install_dir, :verbose => true) end else desc "Install the sys-admin package for Unix platforms" task :install => [:build] do Dir.chdir('ext') do sh 'make install' end end end desc "Run the test suite" Rake::TestTask.new("test") do |t| if RUBY_PLATFORM.match('mswin') t.libs << 'lib' else task :test => :build t.libs << 'ext' t.libs.delete('lib') end t.libs << 'test' t.test_files = FileList['test/test_sys_admin.rb'] end task :test do Rake.application[:clean].execute end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
sys-admin-1.5.1 | Rakefile |
sys-admin-1.5.2 | Rakefile |
sys-admin-1.5.0 | Rakefile |
sys-admin-1.4.5 | Rakefile |