public
Description: Code as Art, Art as Code. Processing and Ruby are meant for each other.
Homepage: http://github.com/jashkenas/ruby-processing/wikis
Clone URL: git://github.com/jashkenas/ruby-processing.git
ruby-processing / Rakefile
100644 13 lines (10 sloc) 0.275 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'rake'
 
desc 'Build and install gem'
task :install do
  sh "sudo gem build ruby-processing.gemspec"
  sh "sudo gem install #{Dir.glob('*.gem').join(' ')} --no-ri --no-rdoc"
end
 
desc 'Uninstall gem'
task :uninstall do
  sh "sudo gem uninstall -x ruby-processing"
end