class Fixnum
Public Instance Methods
to_character_set(characters, options = {})
click to toggle source
# File lib/number_to/fixnum.rb, line 23 def to_character_set(characters, options = {}) NumberTo.to_character_set(self, characters, options) end
to_lower_alpha()
click to toggle source
# File lib/number_to/fixnum.rb, line 11 def to_lower_alpha NumberTo.to_lower_alpha(self) end
to_lower_roman()
click to toggle source
# File lib/number_to/fixnum.rb, line 5 def to_lower_roman NumberTo.to_lower_roman(self) end
to_ordinal()
click to toggle source
# File lib/number_to/fixnum.rb, line 14 def to_ordinal NumberTo.to_ordinal(self) end
to_upper_alpha()
click to toggle source
# File lib/number_to/fixnum.rb, line 8 def to_upper_alpha NumberTo.to_upper_alpha(self) end
to_upper_roman()
click to toggle source
# File lib/number_to/fixnum.rb, line 2 def to_upper_roman NumberTo.to_upper_roman(self) end
to_word_ordinal(options = {})
click to toggle source
# File lib/number_to/fixnum.rb, line 20 def to_word_ordinal(options = {}) NumberTo.to_word_ordinal(self, options) end
to_words(options = {})
click to toggle source
# File lib/number_to/fixnum.rb, line 17 def to_words(options = {}) NumberTo.to_words(self, options) end