Method: Methods::MethodWithoutArgs#method
- Defined in:
- lib/methods/method_without_args.rb
#method(*args) ⇒ Object
17 18 19 20 21 22 23 |
# File 'lib/methods/method_without_args.rb', line 17 def method(*args) if args.empty? Methods::MethodsWrapper.new(self, Methods.configuration) else super end end |