Sha256: ef0c69fb8f48ad3718bd4de16f50d46278c456fce86ca18d476af61eda6335a8
Contents?: true
Size: 1.22 KB
Versions: 1
Compression:
Stored size: 1.22 KB
Contents
require 'spec/rake/spectask' task :default => :spec Spec::Rake::SpecTask.new do |t| t.ruby_opts = ["-rubygems"] t.libs << 'lib' t.warning = false t.rcov = false t.spec_opts = ["--colour"] end require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| if File.exist?('VERSION') version = File.read('VERSION') else version = "" end rdoc.rdoc_dir = 'rdoc' rdoc.title = "tuio-ruby #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "tuio-ruby" gem.summary = %Q{library to interface with TUIO protocol} gem.email = "qzzzq1@gmail.com" gem.homepage = "http://github.com/aberant/tuio-ruby" gem.authors = ["aberant"] gem.files = FileList['Rakefile', 'examples/**/*', 'lib/**/*'].to_a gem.test_files = FileList['spec/**/*.rb'] gem.add_dependency('osc-ruby', '>= 0.6.2') gem.rubyforge_project = "tuio-ruby" # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tuio-ruby-0.2.5 | Rakefile |