Method: TweetStream.method_missing
- Defined in:
- lib/tweetstream.rb
.method_missing(method, *args, &block) ⇒ Object
Delegate to TweetStream::Client
26 27 28 29 |
# File 'lib/tweetstream.rb', line 26 def method_missing(method, *args, &block) return super unless new.respond_to?(method) new.send(method, *args, &block) end |