Class: Utopia::Locale

Inherits:
Struct
  • Object
show all
Defined in:
lib/utopia/locale.rb

Overview

A structured representation of locale based on RFC3066.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#countryObject

Returns the value of attribute country

Returns:

  • (Object)

    the current value of country



23
24
25
# File 'lib/utopia/locale.rb', line 23

def country
  @country
end

#languageObject

Returns the value of attribute language

Returns:

  • (Object)

    the current value of language



23
24
25
# File 'lib/utopia/locale.rb', line 23

def language
  @language
end

#variantObject

Returns the value of attribute variant

Returns:

  • (Object)

    the current value of variant



23
24
25
# File 'lib/utopia/locale.rb', line 23

def variant
  @variant
end

Class Method Details

.dump(instance) ⇒ Object



28
29
30
31
32
# File 'lib/utopia/locale.rb', line 28

def self.dump(instance)
  if instance
    instance.to_s
  end
end

.load(instance) ⇒ Object



34
35
36
37
38
39
40
41
42
# File 'lib/utopia/locale.rb', line 34

def self.load(instance)
  if instance.is_a? String
    self.new(*instance.split('-', 3))
  elsif instance.is_a? Array
    return self.new(*instance)
  elsif instance.is_a? self
    return instance.frozen? ? instance : instance.dup
  end
end

Instance Method Details

#to_sObject



24
25
26
# File 'lib/utopia/locale.rb', line 24

def to_s
  to_a.compact.join('-')
end