lib/sfn/planner.rb in sfn-3.0.28 vs lib/sfn/planner.rb in sfn-3.0.30
- old
+ new
@@ -1,11 +1,10 @@
require 'sfn'
module Sfn
# Interface for generating plan report
class Planner
-
autoload :Aws, 'sfn/planner/aws'
# Value to flag runtime modification
RUNTIME_MODIFIED = '__MODIFIED_REFERENCE_VALUE__'
@@ -27,11 +26,11 @@
# @param arguments [Array<String>]
# @param stack [Miasma::Models::Orchestration::Stack]
# @param opts [Hash]
#
# @return [self]
- def initialize(ui, config, arguments, stack, opts={})
+ def initialize(ui, config, arguments, stack, opts = {})
@ui = ui
@config = config
@arguments = arguments
@origin_stack = stack
@options = opts
@@ -44,8 +43,7 @@
#
# @return [Hash] report
def generate_plan(template, parameters)
raise NotImplementedError
end
-
end
end