Class: Utopia::Locale
- Inherits:
-
Struct
- Object
- Struct
- Utopia::Locale
- Defined in:
- lib/utopia/locale.rb
Overview
A structured representation of locale based on RFC3066.
Instance Attribute Summary collapse
-
#country ⇒ Object
Returns the value of attribute country.
-
#language ⇒ Object
Returns the value of attribute language.
-
#variant ⇒ Object
Returns the value of attribute variant.
Class Method Summary collapse
Instance Method Summary collapse
Instance Attribute Details
#country ⇒ Object
Returns the value of attribute country
8 9 10 |
# File 'lib/utopia/locale.rb', line 8 def country @country end |
#language ⇒ Object
Returns the value of attribute language
8 9 10 |
# File 'lib/utopia/locale.rb', line 8 def language @language end |
#variant ⇒ Object
Returns the value of attribute variant
8 9 10 |
# File 'lib/utopia/locale.rb', line 8 def variant @variant end |
Class Method Details
.dump(instance) ⇒ Object
13 14 15 16 17 |
# File 'lib/utopia/locale.rb', line 13 def self.dump(instance) if instance instance.to_s end end |
.load(instance) ⇒ Object
19 20 21 22 23 24 25 26 27 |
# File 'lib/utopia/locale.rb', line 19 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_s ⇒ Object
9 10 11 |
# File 'lib/utopia/locale.rb', line 9 def to_s to_a.compact.join('-') end |