Sha256: bceec800d12d5e7607c05fd646c2397ebe94d99694e17e95c51fed28cd2e7845

Contents?: true

Size: 1.18 KB

Versions: 6

Compression:

Stored size: 1.18 KB

Contents

require 'daemons'

# A daemonized TweetStream client that will allow you to
# create backgroundable scripts for application specific
# processes. For instance, if you create a script called
# <tt>tracker.rb</tt> and fill it with this:
#
#     require 'rubygems'
#     require 'tweetstream'
#
#     TweetStream::Daemon.new('user','pass', 'tracker').track('intridea') do |status|
#       # do something here
#     end
#
# And then you call this from the shell:
#
#     ruby tracker.rb start
#
# A daemon process will spawn that will automatically
# run the code in the passed block whenever a new tweet
# matching your search term ('intridea' in this case)
# is posted.
#
class TweetStream::Daemon < TweetStream::Client
  # Initialize a Daemon with the credentials of the
  # Twitter account you wish to use. The daemon has
  # an optional process name for use when querying
  # running processes.
  def initialize(user, pass, app_name=nil, parser=:json_gem)
    @app_name = app_name
    super(user, pass, parser)
  end
  
  def start(path, query_parameters = {}, &block) #:nodoc:
    Daemons.run_proc(@app_name || 'tweetstream', :multiple => true) do
      super(path, query_parameters, &block)
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
tweetstream-1.0.5 lib/tweetstream/daemon.rb
tweetstream-1.0.4 lib/tweetstream/daemon.rb
tweetstream-1.0.3 lib/tweetstream/daemon.rb
tweetstream-1.0.2 lib/tweetstream/daemon.rb
tweetstream-1.0.1 lib/tweetstream/daemon.rb
tweetstream-1.0.0 lib/tweetstream/daemon.rb