Sha256: 6a327e5fb76a4f0e9cbdff046e4b607fe848cac7c022cfc3feb52742e946cf5b
Contents?: true
Size: 321 Bytes
Versions: 2
Compression:
Stored size: 321 Bytes
Contents
require 'lolp/version' require 'lolp/client' module Lolp class << self def client @client ||= Lolp::Client.new end def method_missing(method_name, *args, &block) if client.respond_to?(method_name) return client.send(method_name, *args, &block) end super end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
lolp-0.2.1 | lib/lolp.rb |
lolp-0.2.0 | lib/lolp.rb |