Class: I18n::Locale::Tag::Simple

Inherits:
Object
  • Object
show all
Includes:
Parents
Defined in:
lib/active_support/vendor/i18n-0.4.1/i18n/locale/tag/simple.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Parents

#parent, #parents, #self_and_parents

Constructor Details

#initialize(*tag) ⇒ Simple

Returns a new instance of Simple.



19
20
21
# File 'lib/active_support/vendor/i18n-0.4.1/i18n/locale/tag/simple.rb', line 19

def initialize(*tag)
  @tag = tag.join('-').to_sym
end

Instance Attribute Details

#tagObject (readonly)

Returns the value of attribute tag.



17
18
19
# File 'lib/active_support/vendor/i18n-0.4.1/i18n/locale/tag/simple.rb', line 17

def tag
  @tag
end

Class Method Details

.tag(tag) ⇒ Object



10
11
12
# File 'lib/active_support/vendor/i18n-0.4.1/i18n/locale/tag/simple.rb', line 10

def tag(tag)
  new(tag)
end

Instance Method Details

#subtagsObject



23
24
25
# File 'lib/active_support/vendor/i18n-0.4.1/i18n/locale/tag/simple.rb', line 23

def subtags
  @subtags = tag.to_s.split('-').map { |subtag| subtag.to_s }
end

#to_aObject



35
36
37
# File 'lib/active_support/vendor/i18n-0.4.1/i18n/locale/tag/simple.rb', line 35

def to_a
  subtags
end

#to_sObject



31
32
33
# File 'lib/active_support/vendor/i18n-0.4.1/i18n/locale/tag/simple.rb', line 31

def to_s
  tag.to_s
end

#to_symObject



27
28
29
# File 'lib/active_support/vendor/i18n-0.4.1/i18n/locale/tag/simple.rb', line 27

def to_sym
  tag
end