Sha256: 98a51720cb88f8b843e2147233b4a676c174575d6e9769bdf373e745fe5a9383
Contents?: true
Size: 1.37 KB
Versions: 5
Compression:
Stored size: 1.37 KB
Contents
require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "xamplr-pp" gem.summary = %Q{A pure ruby XML pull parser} gem.email = "hutch@recursive.ca" gem.homepage = "http://github.com/hutch/xamplr-pp" gem.authors = ["Bob Hutchison"] # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings end rescue LoadError puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com" end require 'rake/testtask' Rake::TestTask.new(:test) do |test| test.libs << 'lib' << 'test' test.pattern = 'test/**/*_test.rb' test.verbose = true end begin require 'rcov/rcovtask' Rcov::RcovTask.new do |test| test.libs << 'test' test.pattern = 'test/**/*_test.rb' test.verbose = true end rescue LoadError task :rcov do abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov" end end task :default => :test require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| if File.exist?('VERSION.yml') config = YAML.load(File.read('VERSION.yml')) version = "#{config[:major]}.#{config[:minor]}.#{config[:patch]}" else version = "" end rdoc.rdoc_dir = 'rdoc' rdoc.title = "xamplr-pp #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
5 entries across 5 versions & 2 rubygems
Version | Path |
---|---|
hutch-xamplr-pp-1.0.0 | Rakefile |
hutch-xamplr-pp-1.1.0 | Rakefile |
hutch-xamplr-pp-1.1.2 | Rakefile |
xamplr-pp-1.1.4 | Rakefile |
xamplr-pp-1.0.0 | Rakefile |