class I18n::Locale::Tag::Simple

def initialize(*tag)

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

def subtags

def subtags
  @subtags = tag.to_s.split('-').map!(&:to_s)
end

def tag(tag)

def tag(tag)
  new(tag)
end

def to_a

def to_a
  subtags
end

def to_s

def to_s
  tag.to_s
end

def to_sym

def to_sym
  tag
end