Class: Integer
- Inherits:
-
Object
- Object
- Integer
- Defined in:
- lib/integer_expansion.rb
Instance Method Summary collapse
Instance Method Details
#add_commas ⇒ Object
23 24 25 |
# File 'lib/integer_expansion.rb', line 23 def add_commas commas(self) end |
#fact ⇒ Object
15 16 17 |
# File 'lib/integer_expansion.rb', line 15 def fact factorial(self) end |
#to_english ⇒ Object
19 20 21 |
# File 'lib/integer_expansion.rb', line 19 def to_english english_number(self) end |
#to_old_roman ⇒ Object
11 12 13 |
# File 'lib/integer_expansion.rb', line 11 def to_old_roman old_roman(self) end |
#to_roman ⇒ Object
7 8 9 |
# File 'lib/integer_expansion.rb', line 7 def to_roman new_roman(self) end |