lib/speckle/cli/router.rb in speckle-0.1.7 vs lib/speckle/cli/router.rb in speckle-0.1.8
- old
+ new
@@ -1,14 +1,12 @@
module Speckle
module CLI
- require_relative 'rake_app'
require_relative 'controller'
class Router
def route(action, options)
- rake_app = RakeApp.new(options)
- controller = Controller.new(options, rake_app)
+ controller = Controller.new(options)
controller.send(action)
end
end
end