Sha256: 1e42b51e6935ac1a17892a585f35d1511cfc6d39d489ec8242ca139b6d52b108
Contents?: true
Size: 770 Bytes
Versions: 5
Compression:
Stored size: 770 Bytes
Contents
begin require 'bundler/setup' rescue LoadError puts 'You must `gem install bundler` and `bundle install` to run rake tasks' end require 'rubygems/package_task' require 'rspec/core/rake_task' # Fix for NoMethodError: undefined method `last_comment' # Deprecated in Rake 12.x module FixForRakeLastComment def last_comment last_description end end Rake::Application.send :include, FixForRakeLastComment ### end of fix RSpec::Core::RakeTask.new(:spec) require 'rdoc/task' include Rake::DSL RDoc::Task.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = 'ExtraExtra' rdoc.options << '--line-numbers' rdoc.rdoc_files.include('README.rdoc') rdoc.rdoc_files.include('lib/**/*.rb') end Bundler::GemHelper.install_tasks task :default => :spec
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
resqutils-1.3.4 | Rakefile |
resqutils-1.3.3 | Rakefile |
resqutils-1.3.2 | Rakefile |
resqutils-1.3.1 | Rakefile |
resqutils-1.3.0 | Rakefile |