Adds a compatibility layer to your Thor classes which allows you to use rake package tasks. For example, to use rspec rake tasks, one can do:
require 'thor/rake_compat' class Default < Thor include Thor::RakeCompat Spec::Rake::SpecTask.new(:spec) do |t| t.spec_opts = ['--options', "spec/spec.opts"] t.spec_files = FileList['spec/**/*_spec.rb'] end end
# File lib/thor/rake_compat.rb, line 23 23: def self.included(base) 24: # Hack. Make rakefile point to invoker, so rdoc task is generated properly. 25: rakefile = File.basename(caller[0].match(/(.*):\d+/)[1]) 26: Rake.application.instance_variable_set(:@rakefile, rakefile) 27: self.rake_classes << base 28: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.