module GooglePlus
require 'google_plus/direct_message'
require 'google_plus/creatable' require 'google_plus/user'
require 'google_plus-text'
Public Class Methods
method_missing(method, *args, &block)
click to toggle source
Delegate to GooglePlus::Client
Calls superclass method
# File lib/GooglePlus.rb, line 15 def method_missing(method, *args, &block) return super unless new.respond_to?(method) new.send(method, *args, &block) end
new(options={})
click to toggle source
Alias for GooglePlus::Client.new
@return [GooglePlus::Client]
# File lib/GooglePlus.rb, line 10 def new(options={}) GooglePlus::Client.new(options) end
respond_to?(method, include_private=false)
click to toggle source
Calls superclass method
# File lib/GooglePlus.rb, line 20 def respond_to?(method, include_private=false) new.respond_to?(method, include_private) || super(method, include_private) end