module MSP::SingletonService
Singletone Service
Module
Public Instance Methods
method_missing(method, *args)
click to toggle source
When class method is called Try calling the method passed with it's arguments on the singleton instance
# File lib/MSP/singleton_service.rb, line 7 def method_missing(method, *args) instance.send(method.to_sym, *args) end