Sha256: 0c09edb14af79662a4776a54a884aaf5913283930381fc7839a644c6625ed33f

Contents?: true

Size: 319 Bytes

Versions: 7

Compression:

Stored size: 319 Bytes

Contents

# Not Yet Complete: Twitter Client in Channel.
class TweetTweet < Marvin::Base

  on_event :client_connected do
    start_tweeting
  end
  
  def start_tweeting
    client.periodically 180, :check_tweets
  end
  
  def handle_check_tweets
    logger.debug ">> Check Tweets"
  end
  
  def show_tweet(tweet)
  end
  
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
Sutto-marvin-0.8.0.0 handlers/tweet_tweet.rb
Sutto-marvin-0.8.0.1 handlers/tweet_tweet.rb
marvin-0.8.2 handlers/tweet_tweet.rb
marvin-0.8.1 handlers/tweet_tweet.rb
marvin-0.8.0.2 handlers/tweet_tweet.rb
marvin-0.8.0.1 handlers/tweet_tweet.rb
marvin-0.8.0.0 handlers/tweet_tweet.rb