Sha256: f95423779132230c0d6cd411639082f92b3fdbfc83ae142cb25ff4c12fa8b517

Contents?: true

Size: 318 Bytes

Versions: 2

Compression:

Stored size: 318 Bytes

Contents

#require "bundler/gem_tasks"

task :install => :build do
  sh "jruby -S gem install #{Dir.glob('*.gem').join(' ')} --no-ri --no-rdoc"
end

task :build do
  sh "gem build cf3ruby.gemspec"
end

task :test do
  sh "jruby -S k9 --run test/test_cf3.rb"
end

task :clean do
  sh "rm *.gem"
end 

task :default => [:install]

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cf3-1.0.1 Rakefile
cf3-1.0.0 Rakefile