Last active
November 30, 2016 14:11
-
-
Save rsnorman/10cde8980edae4b7618d6c9f651ef93c to your computer and use it in GitHub Desktop.
Favorite Artist Mentioned Tweets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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