module AtYourService

Constants

VERSION

Public Class Methods

call(*args) click to toggle source
# File lib/at_your_service/service.rb, line 16
def self.call(*args)
  new(*args).call
end
with(options = {}) click to toggle source
# File lib/at_your_service/service.rb, line 4
def self.with(options = {})
 @@strict = options.fetch(:strict, false)
 return self
end