This module is a Hoe plugin. You can set its attributes in your Rakefile’s Hoe spec, like this:
Hoe.plugin :isolate Hoe.spec "myproj" do self.isolate_dir = "tmp/isolated" end
NOTE! The Isolate plugin is a little bit special: It messes with the plugin ordering to make sure that it comes before everything else.
Where should Isolate, um, isolate? [default: "tmp/isolate"] FIX: consider removing this and allowing isolate_options instead.
# File lib/hoe/isolate.rb, line 45 def define_isolate_tasks # HACK sandbox = ::Isolate.sandbox # reset, now that they've had a chance to change it sandbox.options :path => isolate_dir, :system => false self.extra_deps.each do |name, version| sandbox.gem name, *Array(version) end self.extra_dev_deps.each do |name, version| sandbox.env "development" do sandbox.gem name, *Array(version) end end sandbox.activate end
# File lib/hoe/isolate.rb, line 26 def initialize_isolate # Tee hee! Move ourselves to the front to beat out :test. Hoe.plugins.unshift Hoe.plugins.delete(:isolate) self.isolate_dir ||= "tmp/isolate" ::Isolate.sandbox ||= ::Isolate::Sandbox.new ::Isolate.sandbox.entries.each do |entry| dep = [entry.name, *entry.requirement.as_list] if entry.environments.include? "development" extra_dev_deps << dep elsif entry.environments.empty? extra_deps << dep end end end
Generated with the Darkfish Rdoc Generator 2.