项目作者: infertux

项目描述 :
Turns a number into an ordinal string such as first, second, third or 1st, 2nd, 3rd.
高级语言: Ruby
项目地址: git://github.com/infertux/ordinalize_full.git
创建时间: 2014-06-30T20:11:49Z
项目社区:https://github.com/infertux/ordinalize_full

开源协议:MIT License

下载


OrdinalizeFull

Build Status
Gem Version

Like Rails’ ordinalize method but with the ability to return the ordinal string spelled out in full words such as “first”, “second”, “third”.

Features:

  • i18n support
  • doesn’t require monkey-patching
  • easy to integrate with Rails but doesn’t require Rails

Usage

Monkey-patching Integer (like Rails does)

  1. require "ordinalize_full/integer"
  2. 42.ordinalize_in_full #=> "forty second"
  3. 42.ordinalize_full #=> "forty second"
  4. 42.ordinalize(in_full: true) #=> "forty second"
  5. 42.ordinalize #=> "42nd"
  6. I18n.locale = :fr
  7. 42.ordinalize_in_full #=> "quarante-deuxième"
  8. 42.ordinalize #=> "42ème"
  9. I18n.locale = :es
  10. 14.ordinalize_in_full(gender: :feminine, plurality: :plural) #=> decimocuartas
  11. 1.ordinalize_in_full #=> primer // default masculine, singular
  12. 22.ordinalize_in_full(gender: :feminine) #=> vigésima segunda // default singular
  13. 1.ordinalize #=> 1.ᵉʳ
  14. 55.ordinalize #=> 55.ᵒ

Without monkey-patching

  1. require "ordinalize_full"
  2. 42.ordinalize_in_full #=> NoMethodError: undefined method `ordinalize_in_full' for 42:Fixnum
  3. class MyIntegerLikeClass; include OrdinalizeFull; def to_s; "42"; end; end #=> :to_s
  4. MyIntegerLikeClass.new.ordinalize_in_full #=> "forty second"

Limitations

  • only works up to 100 for non-English languages
  • locales only available in English, French, Italian, Spanish, and Dutch (pull requests welcome!)

License

SPDX-License-Identifier: MIT