module TwitterWebIntents
Constants
- VERSION
Public Class Methods
respond_to?(method_name, include_private=false)
click to toggle source
Calls superclass method
# File lib/twitter_web_intents.rb, line 8 def respond_to?(method_name, include_private=false); Intents.respond_to?(method_name, include_private) || super; end
respond_to_missing?(method_name, include_private=false)
click to toggle source
# File lib/twitter_web_intents.rb, line 7 def respond_to_missing?(method_name, include_private=false); Intents.respond_to?(method_name, include_private); end
Private Class Methods
method_missing(method_name, *args, &block)
click to toggle source
Calls superclass method
# File lib/twitter_web_intents.rb, line 12 def method_missing(method_name, *args, &block) return super unless Intents.respond_to?(method_name) Intents.send(method_name, *args, &block) end