module MSP::Service

Service Module

Public Instance Methods

method_missing(method, *args) click to toggle source

When class method is called Try initializing an object of the class and call the method passed with it's arguments

# File lib/MSP/service.rb, line 7
def method_missing(method, *args)
  new.send(method.to_sym, *args)
end