Sha256: b78d8db6f358045154f12372b0d13e51d06553306fea4f427780c5ae24f79556

Contents?: true

Size: 657 Bytes

Versions: 30

Compression:

Stored size: 657 Bytes

Contents

# Simple Locale tag implementation that computes subtags by simply splitting
# the locale tag at '-' occurrences.
module I18n
  module Locale
    module Tag
      class Simple
        class << self
          def tag(tag)
            new(tag)
          end
        end

        include Parents

        attr_reader :tag

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

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

        def to_sym
          tag
        end

        def to_s
          tag.to_s
        end

        def to_a
          subtags
        end
      end
    end
  end
end

Version data entries

30 entries across 28 versions & 11 rubygems

Version Path
fablicop-1.10.2 vendor/bundle/ruby/3.2.0/gems/i18n-1.14.1/lib/i18n/locale/tag/simple.rb
i18n-1.14.1 lib/i18n/locale/tag/simple.rb
i18n-1.14.0 lib/i18n/locale/tag/simple.rb
i18n-1.13.0 lib/i18n/locale/tag/simple.rb
fluent-plugin-google-cloud-logging-on-prem-0.1.0 vendor/ruby/3.1.0/gems/i18n-1.12.0/lib/i18n/locale/tag/simple.rb
rubypitaya-3.12.4 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/i18n-1.12.0/lib/i18n/locale/tag/simple.rb
rubypitaya-3.12.3 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/i18n-1.12.0/lib/i18n/locale/tag/simple.rb
rubypitaya-3.12.2 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/i18n-1.12.0/lib/i18n/locale/tag/simple.rb
i18n-1.12.0 lib/i18n/locale/tag/simple.rb
i18n-1.11.0 lib/i18n/locale/tag/simple.rb