Sha256: dbf4774eb1a1c51be69169199db1d9d1fc608ca1a16d721cfc4ec7b6157e9eb8

Contents?: true

Size: 677 Bytes

Versions: 15

Compression:

Stored size: 677 Bytes

Contents

require 'rubygems'
require 'bundler'
require 'rake/tasklib'
require 'rake/rdoctask'

begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new do |t|
  t.pattern = FileList['./spec/**/*_spec.rb']
end
  
task :default => :spec

Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "equivalent-xml #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
equivalent-xml-0.3.0 Rakefile
equivalent-xml-0.2.9 Rakefile
equivalent-xml-0.2.8 Rakefile
equivalent-xml-0.2.7 Rakefile
equivalent-xml-0.2.6 Rakefile
equivalent-xml-0.2.5 Rakefile
equivalent-xml-0.2.4 Rakefile
equivalent-xml-0.2.2 Rakefile
equivalent-xml-0.2.1 Rakefile
equivalent-xml-0.1.6 Rakefile
equivalent-xml-0.1.5 Rakefile
equivalent-xml-0.1.4 Rakefile
equivalent-xml-0.1.3 Rakefile
equivalent-xml-0.1.2 Rakefile
equivalent-xml-0.1.1 Rakefile