Sha256: 404a4021c692ed27ec72dc3de088fbdcf84c534b0017c0f9f679684570b12278

Contents?: true

Size: 677 Bytes

Versions: 4

Compression:

Stored size: 677 Bytes

Contents

desc 'build and test'    
task :default => [:build_and_test]

task :build_and_test do
  Rake::Task["build"].execute
  Rake::Task["test"].execute
end

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

desc 'Uninstall gem'
task :uninstall do
  sh "gem uninstall -x ruby-processing"	
end

desc 'Install jruby-complete'
task :install_jruby_complete do
  begin
    sh "cd vendors && rake"
  rescue
    warn("WARNING: you may not have wget installed")	    
  end
end

desc 'Build gem'
task :build do
  sh "gem build ruby-processing.gemspec"
end

desc 'Test'
task :test do
  ruby "test/rp5_test.rb"	
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ruby-processing-2.4.4 Rakefile
ruby-processing-2.4.3 Rakefile
ruby-processing-2.4.2 Rakefile
ruby-processing-2.4.1 Rakefile