Skip to content

Instantly share code, notes, and snippets.

@firstspring1845
Created November 21, 2014 05:30
Show Gist options
  • Save firstspring1845/6b6e77881cebbd989784 to your computer and use it in GitHub Desktop.
Save firstspring1845/6b6e77881cebbd989784 to your computer and use it in GitHub Desktop.
class Service
def streaming(method = :userstream, *args, &proc)
p = lambda{|q|
if q and not q.empty?
Plugin.call(:json, q) end
proc.call(q)
}
twitter.__send__(method, *args, &p)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment