Sha256: c282c08fa3e8fc655b9d6bc2048cc3949ca98ac70452886acd882728c4c22070

Contents?: true

Size: 645 Bytes

Versions: 1

Compression:

Stored size: 645 Bytes

Contents

require 'bundler'
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 release  # Create tag vx.x.x and build and push ardtweeno-x.x.x.gem to http://rubygems.org/
rake test     # Run the unit testing suite on this gem.
MSG
end

desc "Run the unit testing suite on this gem."
task :test do
  $LOAD_PATH.unshift File.expand_path(File.dirname(__FILE__) + '/lib')
  require 'ardtweeno.rb'
  Dir.glob("./test/*_test.rb").each do |file|
   require file
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ardtweeno-0.0.2 Rakefile