Module: NumberToWords::Numeric
- Defined in:
- lib/number_to_words.rb
Defined Under Namespace
Modules: ClassMethods, InstanceMethods
Class Method Summary collapse
Class Method Details
.included(recipient) ⇒ Object
7 8 9 10 11 12 |
# File 'lib/number_to_words.rb', line 7 def self.included(recipient) recipient.extend(ClassMethods) recipient.class_eval do include InstanceMethods end end |