module Tumblife
Constants
- VERSION
Public Class Methods
client(options = {})
click to toggle source
Alias for Tumblife::Client.new
@return [Tumblife::Client]
# File lib/tumblife.rb, line 12 def self.client(options = {}) Tumblife::Client.new(options) end
method_missing(method_name, *args, &block)
click to toggle source
Delegate to {Tumblife::Client}
Calls superclass method
# File lib/tumblife.rb, line 17 def self.method_missing(method_name, *args, &block) return super unless client.respond_to?(method_name) client.send(method_name, *args, &block) end
respond_to?(method_name, include_private = false)
click to toggle source
Delegate to {Tumblife::Client}
Calls superclass method
# File lib/tumblife.rb, line 23 def self.respond_to?(method_name, include_private = false) return client.respond_to?(method_name, include_private) || super end