twitter/twitter-cldr-rb

View on GitHub
lib/twitter_cldr/formatters/numbers.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 Formatters
    module Numbers
      autoload :Base,     'twitter_cldr/formatters/numbers/helpers/base'
      autoload :Fraction, 'twitter_cldr/formatters/numbers/helpers/fraction'
      autoload :Integer,  'twitter_cldr/formatters/numbers/helpers/integer'
    end
  end
end