lib/jive.rb in jive-0.2.3 vs lib/jive.rb in jive-0.3.0

- old
+ new

@@ -4,10 +4,11 @@ require "open3" require "jive/batch_runner" require "jive/git" require "jive/popen" +require "jive/project" require "jive/runner" require "jive/shell" require "jive/version" module Jive @@ -17,7 +18,11 @@ @root ||= Pathname.new(__FILE__).parent.parent end def self.run(tasks) Jive::BatchRunner.new.run(tasks) + end + + def self.shell + @shell ||= ::Jive::Shell.new end end