Sha256: 64a18035113954550cd6b824fffd9100f1c9ed22ff2e4f511b0d3c09f77c35fd

Contents?: true

Size: 797 Bytes

Versions: 6

Compression:

Stored size: 797 Bytes

Contents

=begin
  locale/tag/irregular.rb - Locale::Tag::Irregular

  Copyright (C) 2008  Masao Mutoh

  You may redistribute it and/or modify it under the same
  license terms as Ruby.

  $Id: irregular.rb 27 2008-12-03 15:06:50Z mutoh $
=end

require 'locale/tag/simple'

module Locale

  module Tag
    # Broken tag class.
    class Irregular < Simple

      def initialize(tag)
        tag = "en" if tag == nil or tag == ""
        super(tag.to_s)
        @tag = tag
      end

      # Returns an Array of tag-candidates order by priority.
      def candidates
        [Irregular.new(tag)]
      end
      memoize :candidates

      # Conver to the klass(the class of Language::Tag)
      private
      def convert_to(klass)
        klass.new(tag)
      end
      memoize :convert_to
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
locale-2.0.9 lib/locale/tag/irregular.rb
locale-2.0.8 lib/locale/tag/irregular.rb
locale-2.0.7 lib/locale/tag/irregular.rb
locale-2.0.6 lib/locale/tag/irregular.rb
locale-2.0.5 lib/locale/tag/irregular.rb
locale-2.0.4 lib/locale/tag/irregular.rb