Sha256: f78b4c011079a5d14b71e3e1c9dcc3cbd97e2d533141d803ec2a47f04a7945e4
Contents?: true
Size: 1.42 KB
Versions: 6
Compression:
Stored size: 1.42 KB
Contents
require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "xamplr" gem.summary = %Q{xamplr is the ruby version of xampl} gem.email = "hutch@recursive.ca" gem.homepage = "http://github.com/hutch/xamplr" gem.authors = ["Bob Hutchison"] gem.add_dependency('hutch-xamplr-pp') # 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 #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
hutch-xamplr-1.0.0 | Rakefile |
hutch-xamplr-1.0.1 | Rakefile |
hutch-xamplr-1.0.2 | Rakefile |
hutch-xamplr-1.0.3 | Rakefile |
hutch-xamplr-1.0.4 | Rakefile |
hutch-xamplr-1.0.5 | Rakefile |