class Murk::Model::SimpleStackParameter
Attributes
env[R]
key[R]
value[R]
Public Class Methods
new(key, value, env: nil)
click to toggle source
# File lib/murk/model/stack_parameter.rb, line 9 def initialize(key, value, env: nil) @key = key @value = value @env = env end
Public Instance Methods
==(other)
click to toggle source
# File lib/murk/model/stack_parameter.rb, line 19 def ==(other) @key == other.key && @value == other.value && @env == other.env end
resolve()
click to toggle source
# File lib/murk/model/stack_parameter.rb, line 15 def resolve @value end