Sha256: c0a851551d40e1835c04404f2c33fbc1244565afb2e2c19d2d76d4982eee297e

Contents?: true

Size: 788 Bytes

Versions: 78

Compression:

Stored size: 788 Bytes

Contents

# frozen_string_literal: true

module Bolt
  class PAL
    class YamlPlan
      class Step
        class Plan < Step
          def self.allowed_keys
            super + Set['plan', 'parameters']
          end

          def self.required_keys
            Set.new
          end

          def initialize(step_body)
            super
            @plan = step_body['plan']
            @parameters = step_body.fetch('parameters', {})
          end

          def transpile
            code = String.new("  ")
            code << "$#{@name} = " if @name

            fn = 'run_plan'
            args = [@plan]
            args << @parameters unless @parameters.empty?

            code << function_call(fn, args)

            code << "\n"
          end
        end
      end
    end
  end
end

Version data entries

78 entries across 78 versions & 1 rubygems

Version Path
bolt-2.8.0 lib/bolt/pal/yaml_plan/step/plan.rb
bolt-2.7.0 lib/bolt/pal/yaml_plan/step/plan.rb
bolt-2.6.0 lib/bolt/pal/yaml_plan/step/plan.rb
bolt-2.5.0 lib/bolt/pal/yaml_plan/step/plan.rb
bolt-2.4.0 lib/bolt/pal/yaml_plan/step/plan.rb
bolt-2.3.1 lib/bolt/pal/yaml_plan/step/plan.rb
bolt-2.3.0 lib/bolt/pal/yaml_plan/step/plan.rb
bolt-2.2.0 lib/bolt/pal/yaml_plan/step/plan.rb
bolt-2.1.0 lib/bolt/pal/yaml_plan/step/plan.rb
bolt-2.0.1 lib/bolt/pal/yaml_plan/step/plan.rb
bolt-2.0.0 lib/bolt/pal/yaml_plan/step/plan.rb
bolt-1.49.0 lib/bolt/pal/yaml_plan/step/plan.rb
bolt-1.48.0 lib/bolt/pal/yaml_plan/step/plan.rb
bolt-1.47.0 lib/bolt/pal/yaml_plan/step/plan.rb
bolt-1.45.0 lib/bolt/pal/yaml_plan/step/plan.rb
bolt-1.44.0 lib/bolt/pal/yaml_plan/step/plan.rb
bolt-1.43.0 lib/bolt/pal/yaml_plan/step/plan.rb
bolt-1.42.0 lib/bolt/pal/yaml_plan/step/plan.rb
bolt-1.41.0 lib/bolt/pal/yaml_plan/step/plan.rb
bolt-1.40.0 lib/bolt/pal/yaml_plan/step/plan.rb