Sha256: 717da5983595d4dc28a0ea702f2f0004eb50f47ebe46bcbfcfbc0ff8810b532f
Contents?: true
Size: 788 Bytes
Versions: 2
Compression:
Stored size: 788 Bytes
Contents
require 'rake' require 'rake/clean' require 'rake/testtask' CLEAN.include("**/*.gem", "**/*.rbc") namespace 'gem' do desc 'Build the win32-taskscheduler gem' task :create => [:clean] do require 'rubygems/package' spec = eval(IO.read('win32-taskscheduler.gemspec')) Gem::Package.build(spec, true) end desc 'Install the win32-taskscheduler library as a gem' task :install => [:create] do file = Dir['win32-taskscheduler*.gem'].first sh "gem install -l #{file}" end end desc 'Run the example code' task :example do ruby '-Iib examples/taskscheduler_example.rb' end desc 'Run the test suite for the win32-taskscheduler library' Rake::TestTask.new do |t| t.verbose = true t.warning = true end task :default => :test
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
win32-taskscheduler-0.4.1 | Rakefile |
win32-taskscheduler-0.4.0 | Rakefile |