Class: Nis::Unit::Status

Inherits:
Object
  • Object
show all
Defined in:
lib/nis/unit/status.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value) ⇒ Status

Returns a new instance of Status.



6
7
8
# File 'lib/nis/unit/status.rb', line 6

def initialize(value)
  @value = value
end

Instance Attribute Details

#valueString

Returns the current value of value.

Returns:

  • (String)

    the current value of value



3
4
5
# File 'lib/nis/unit/status.rb', line 3

def value
  @value
end

Instance Method Details

#==(other) ⇒ Boolean

Returns:

  • (Boolean)


31
32
33
# File 'lib/nis/unit/status.rb', line 31

def ==(other)
  @value == other.value
end

#to_sString

Returns:

  • (String)


26
27
28
# File 'lib/nis/unit/status.rb', line 26

def to_s
  @value
end