class Vcard::V3_0::PropertyValue::Geovalue

Public Class Methods

new(val) click to toggle source
# File lib/vobject/vcard/v3_0/propertyvalue.rb, line 268
def initialize(val)
  self.value = val
  self.type = "geovalue"
end

Public Instance Methods

to_hash() click to toggle source
# File lib/vobject/vcard/v3_0/propertyvalue.rb, line 278
def to_hash
  value
end
to_s() click to toggle source
# File lib/vobject/vcard/v3_0/propertyvalue.rb, line 273
def to_s
  ret = "#{value[:lat]};#{value[:long]}"
  ret
end