Sha256: 4e99dc06bb2c400b4138dbd96f6751b40b3cf84bf24b8d662dd4621233edb04f

Contents?: true

Size: 556 Bytes

Versions: 3

Compression:

Stored size: 556 Bytes

Contents

require 'rubygems'

begin
  require 'bundler'
rescue Exception => e
  puts 'bundler gem not found, please install bundler and try again.'
  exit
end



Bundler::GemHelper.install_tasks

task :default => 'menu'

task :menu do
  puts welcomeMsg = <<-MSG
rake build    # Build ardtweeno-x.x.x.gem into the pkg directory
rake install  # Build and install ardtweeno-x.x.x.gem into system gems
rake test     # Run the unit testing suite on this gem.
MSG
end

desc "Run the unit testing suite on this gem."
task :test do
  
  require "./test/test_helper.rb"

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ardtweeno-0.3.1 Rakefile
ardtweeno-0.3.0 Rakefile
ardtweeno-0.2.5 Rakefile