twitter/twitter-cldr-rb

View on GitHub
lib/twitter_cldr/shared/properties/bidi_brackets.rb

Summary

Maintainability
A
0 mins
Test Coverage
# encoding: UTF-8

# Copyright 2012 Twitter, Inc
# http://www.apache.org/licenses/LICENSE-2.0

module TwitterCldr
  module Shared
    module Properties
      module BidiBrackets

        BRACKET_TYPES = {
          'O' => 'Open',
          'C' => 'Close',
          'N' => 'None'
        }

        class << self

          def bracket_types
            BRACKET_TYPES
          end

        end

      end
    end
  end
end