lib/sfn/planner.rb in sfn-3.0.30 vs lib/sfn/planner.rb in sfn-3.0.32

- old
+ new

@@ -1,14 +1,14 @@ -require 'sfn' +require "sfn" module Sfn # Interface for generating plan report class Planner - autoload :Aws, 'sfn/planner/aws' + autoload :Aws, "sfn/planner/aws" # Value to flag runtime modification - RUNTIME_MODIFIED = '__MODIFIED_REFERENCE_VALUE__' + RUNTIME_MODIFIED = "__MODIFIED_REFERENCE_VALUE__" # @return [Bogo::Ui] attr_reader :ui # @return [Smash] attr_reader :config @@ -39,10 +39,10 @@ # Generate update report # # @param template [Hash] updated template # @param parameters [Hash] runtime parameters for update # - # @return [Hash] report + # @return [Miasma::Models::Orchestration::Stack::Plan] report def generate_plan(template, parameters) raise NotImplementedError end end end