module Lemondrop

Constants

VERSION

Public Class Methods

method_missing(meth, *args, &blk) click to toggle source
Calls superclass method
# File lib/lemondrop/send_connection.rb, line 3
def method_missing(meth, *args, &blk)
  if Lemondrop::Plugin::Service.connection && Lemondrop::Plugin::Service.connection.respond_to?(meth)
    Lemondrop::Plugin::Service.connection.send meth, *args, &blk
  else
    super
  end
end