class RHC::Rest::EnvironmentVariable

Public Instance Methods

<=>(other) click to toggle source
# File lib/rhc/rest/environment_variable.rb, line 10
def <=>(other)
  name <=> other.name
end
to_hash() click to toggle source
# File lib/rhc/rest/environment_variable.rb, line 6
def to_hash
  { :name => name, :value => value }
end