module Tacokit
Emulate only what we need from activesupport
Constants
- VERSION
Public Class Methods
client()
click to toggle source
# File lib/tacokit.rb, line 3 def client @client ||= Tacokit::Client.new end
method_missing(method_name, *args, &block)
click to toggle source
Calls superclass method
# File lib/tacokit.rb, line 7 def method_missing(method_name, *args, &block) return super unless client.respond_to?(method_name) client.send(method_name, *args, &block) end