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



8
9
10
# File 'lib/utopia/locale.rb', line 8

def country
  @country
end

#languageObject

Returns the value of attribute language

Returns:

  • (Object)

    the current value of language



8
9
10
# File 'lib/utopia/locale.rb', line 8

def language
  @language
end

#variantObject

Returns the value of attribute variant

Returns:

  • (Object)

    the current value of 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_sObject



9
10
11
# File 'lib/utopia/locale.rb', line 9

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