# Look in the tasks/setup.rb file for the various options that can be # configured in this Rakefile. The .rake files in the tasks directory # are where the options are used. load 'tasks/setup.rb' ensure_in_path 'lib' require 'libxml-jruby' task :default => 'spec:run' PROJ.name = 'libxml-jruby' PROJ.authors = 'Michael Guterl' PROJ.email = 'mguterl@gmail.com' PROJ.url = 'FIXME (project homepage)' PROJ.rubyforge.name = 'libxml-jruby' PROJ.spec.opts << '--color' begin require 'jeweler' Jeweler::Tasks.new do |gemspec| gemspec.name = "libxml-jruby-fixed" gemspec.version = "1.0.0" gemspec.date = "2008-09-20" gemspec.summary = "LibXMLRuby compatibility layer for jruby" gemspec.homepage = "http://rubyforge.org/projects/libxml-jruby" gemspec.authors = "Michael Guterl" gemspec.email = "mguterl @nospam@ gmail.com" gemspec.rubyforge_project = "libxml-jruby-fixed" gemspec.has_rdoc = false gemspec.platform = "jruby" gemspec.files = FileList['lib/**/*.rb', 'script/**/*', 'tasks/**/*', '[A-Z]*', 'test/**/*'].to_a end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler not available. Install it with: sudo gem install technicalsteaks-jeweler -s http://gems.github.com" end # EOF