Method: Archipelago::Client::Base#method_missing
- Defined in:
- lib/archipelago/client.rb
#method_missing(meth, *args) ⇒ Object
Finding our services dynamically.
74 75 76 77 78 79 80 |
# File 'lib/archipelago/client.rb', line 74 def method_missing(meth, *args) if @services.include?(meth) return @services[meth] else super end end |