Class: Numeric
- Inherits:
-
Object
show all
- Defined in:
- lib/xronor/core_ext/numeric.rb
Instance Method Summary
collapse
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args, &block) ⇒ Object
Instance Method Details
#respond_to?(method, include_private = false) ⇒ Boolean
2
3
4
|
# File 'lib/xronor/core_ext/numeric.rb', line 2
def respond_to?(method, include_private = false)
super || Xronor::DSL::NumericSeconds.public_method_defined?(method)
end
|