Sha256: b5f41377d6bc0320abd08e23b58816199fa4ee7bf0711effa02e01ce7d090682

Contents?: true

Size: 591 Bytes

Versions: 97

Compression:

Stored size: 591 Bytes

Contents

require 'active_support/inflector'

module ActiveSupport #:nodoc:
  module CoreExtensions #:nodoc:
    module Integer #:nodoc:
      module Inflections
        # Ordinalize turns a number into an ordinal string used to denote the
        # position in an ordered sequence such as 1st, 2nd, 3rd, 4th.
        #
        # Examples
        #   1.ordinalize    # => "1st"
        #   2.ordinalize    # => "2nd"
        #   1002.ordinalize # => "1002nd"
        #   1003.ordinalize # => "1003rd"
        def ordinalize
          Inflector.ordinalize(self)
        end
      end
    end
  end
end

Version data entries

97 entries across 97 versions & 7 rubygems

Version Path
jstorimer-deep-test-2.0.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb
jstorimer-deep-test-1.4.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb
jstorimer-deep-test-1.3.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb
jstorimer-deep-test-1.2.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb
jstorimer-deep-test-1.1.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb
jstorimer-deep-test-1.0.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb
jstorimer-deep-test-0.2.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb
jstorimer-deep-test-0.1.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb
activesupport-2.0.1 lib/active_support/core_ext/integer/inflections.rb
activesupport-1.4.1 lib/active_support/core_ext/integer/inflections.rb
activesupport-1.4.0 lib/active_support/core_ext/integer/inflections.rb
activesupport-1.4.4 lib/active_support/core_ext/integer/inflections.rb
activesupport-1.4.2 lib/active_support/core_ext/integer/inflections.rb
activesupport-2.0.0 lib/active_support/core_ext/integer/inflections.rb
activesupport-1.4.3 lib/active_support/core_ext/integer/inflections.rb
activesupport-2.0.2 lib/active_support/core_ext/integer/inflections.rb
activesupport-2.0.4 lib/active_support/core_ext/integer/inflections.rb
activesupport-2.0.5 lib/active_support/core_ext/integer/inflections.rb
backlog-0.0.0 vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb
backlog-0.0.1 vendor/rails/activesupport/lib/active_support/core_ext/integer/inflections.rb