Sha256: efb33d88a3b2d1965f25565c08f8fcc78826bf32fa3b86cb1d0e5b656b6aa043

Contents?: true

Size: 1.94 KB

Versions: 2

Compression:

Stored size: 1.94 KB

Contents

# encoding: utf-8
require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "backports"
    gem.summary = "Backports or ruby 1.8.7+ & rails for older ruby."
    gem.email = "github@marc-andre.ca"
    gem.homepage = "http://github.com/marcandre/backports"
    gem.authors = ["Marc-André Lafortune"]
    gem.rubyforge_project = "backports"
  
    gem.description = <<-EOS
      Essential backports that enable some of the really nice features of ruby 1.8.7, ruby 1.9 and rails from ruby 1.8.6 and earlier.
    EOS
    gem.has_rdoc = true
    gem.rdoc_options << '--title' << 'Backports library' <<
                           '--main' << 'README.rdoc' <<
                           '--line-numbers' << '--inline-source'

    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
    Jeweler::GemcutterTasks.new
  end
  Jeweler::RubyforgeTasks.new do |rubyforge|
    rubyforge.doc_task = "rdoc"
  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 = false
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 = "backports #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
backports-1.11.2 Rakefile
backports-1.11.1 Rakefile