class Aptible::CLI::Formatter::Value

Attributes

value[R]

Public Class Methods

new(value) click to toggle source
# File lib/aptible/cli/formatter/value.rb, line 9
def initialize(value)
  @value = value
end

Public Instance Methods

<=>(other) click to toggle source
# File lib/aptible/cli/formatter/value.rb, line 13
def <=>(other)
  value <=> other.value
end
hash() click to toggle source
# File lib/aptible/cli/formatter/value.rb, line 19
def hash
  value.hash
end