Sha256: 3f4294fb9803be59044d87487f8a43535f29cf9151a8554364ef8410ab6a66a2
Contents?: true
Size: 435 Bytes
Versions: 1
Compression:
Stored size: 435 Bytes
Contents
require 'direct_employers/client' module DirectEmployers def self.new DirectEmployers::Client.new end # Delegate to DirectEmployers::Client def self.method_missing(method, *args, &block) return super unless new.respond_to?(method) new.send(method, *args, &block) end def self.respond_to?(method, include_private=false) new.respond_to?(method, include_private) || super(method, include_private) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
direct_employers-0.0.1 | lib/direct_employers.rb |