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
23 24 25 |
# File 'lib/utopia/locale.rb', line 23 def country @country end |
#language ⇒ Object
Returns the value of attribute language
23 24 25 |
# File 'lib/utopia/locale.rb', line 23 def language @language end |
#variant ⇒ Object
Returns the value of attribute 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_s ⇒ Object
24 25 26 |
# File 'lib/utopia/locale.rb', line 24 def to_s to_a.compact.join('-') end |