aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/integer/inflections.rb
blob: 94721cfc7cc14705dfc9459ba58aca4649931d0d (plain) (tree)
1
2
3
4
                                                                             

                                
                           










                                    
require File.dirname(__FILE__) + '/../../inflector' unless defined? Inflector
module ActiveSupport #:nodoc:
  module CoreExtensions #:nodoc:
    module Integer #:nodoc:
      module Inflections
        # 1.ordinalize  # => "1st"
        # 3.ordinalize  # => "3rd"
        # 10.ordinalize # => "10th"
        def ordinalize
          Inflector.ordinalize(self)
        end
      end
    end
  end
end