Sha256: f99d0e0f5632f73f041a1667d9d3b845a6fc28690524aacddf4edaf4e4089c69
Contents?: true
Size: 841 Bytes
Versions: 5
Compression:
Stored size: 841 Bytes
Contents
# encoding: utf-8 require 'rubygems' require 'bundler' $:.push File.expand_path("../lib", __FILE__) require "guerrilla_patch/version" begin Bundler::GemHelper.install_tasks rescue Bundler::BundlerError => e $stderr.puts e.message $stderr.puts "Run `bundle install` to install missing gems" exit e.status_code end require 'rspec/core' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList['spec/**/*_spec.rb'] end RSpec::Core::RakeTask.new(:rcov) do |spec| spec.pattern = 'spec/**/*_spec.rb' spec.rcov = true end task :default => :spec require 'rake/rdoctask' Rake::RDocTask.new do |rdoc| version = GuerrillaPatch::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
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
guerrilla_patch-2.8.6 | Rakefile |
guerrilla_patch-2.8.5 | Rakefile |
guerrilla_patch-2.8.4 | Rakefile |
guerrilla_patch-2.8.3 | Rakefile |
guerrilla_patch-2.8.2 | Rakefile |