Sha256: e7f9a1d914e9cc52612cd6e150962df9cfc93523e9146adebbef0c1b063d4bef

Contents?: true

Size: 1.41 KB

Versions: 14

Compression:

Stored size: 1.41 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
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 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "guerrilla_patch"
  gem.homepage = "http://github.com/drkreso/guerrilla_patch"
  gem.license = "MIT"
  gem.summary = %Q{Collection of monkey patches}
  gem.description = %Q{I am tierd of hunting down monkey patches at large. Caging them inside this gem}
  gem.email = "kresimir.bojcic@gmail.com"
  gem.authors = ["drKreso"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

require 'rcov/rcovtask'
Rcov::RcovTask.new do |test|
  test.libs << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
  test.rcov_opts << '--exclude "gems/*"'
end

task :default => :test

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

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

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
guerrilla_patch-2.8.0 Rakefile
guerrilla_patch-2.7.1 Rakefile
guerrilla_patch-2.7.0 Rakefile
guerrilla_patch-2.6.2 Rakefile
guerrilla_patch-2.6.1 Rakefile
guerrilla_patch-2.6.0 Rakefile
guerrilla_patch-2.5.0 Rakefile
guerrilla_patch-2.4.0 Rakefile
guerrilla_patch-2.3.1 Rakefile
guerrilla_patch-2.3.0 Rakefile
guerrilla_patch-2.2.0 Rakefile
guerrilla_patch-2.1.0 Rakefile
guerrilla_patch-2.0.0 Rakefile
guerrilla_patch-1.0.0 Rakefile