Skip to content

Instantly share code, notes, and snippets.

@rsnorman
Last active November 30, 2016 14:11
Show Gist options
  • Save rsnorman/10cde8980edae4b7618d6c9f651ef93c to your computer and use it in GitHub Desktop.
Save rsnorman/10cde8980edae4b7618d6c9f651ef93c to your computer and use it in GitHub Desktop.
Favorite Artist Mentioned Tweets
# HighlightedAlbumRelatedTweets
last_album_highlighted = HighlightedAlbum.last.album
artist_hashtag = "##{album.artist.name.gsub(/[^a-zA-Z]*/, '')}"
artist_mentioned_tweets = client.search("#{artist_hashtag} -rt")
related_tweets = artist_mentioned_tweets.select { |t| t.user.id != 704175249202540544 }
# TweetsFavoriter
related_tweets.each { |t| client.favorite(t) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment