Skip to content

Instantly share code, notes, and snippets.

@mmotherwell
mmotherwell / twitter_deleter.rake
Created October 30, 2018 11:58
Ruby: Delete all your tweets older than this moth
namespace :twitter_deleter do
desc 'Deletes all your tweets older than a month'
task delete_old_tweets: :environment do
your_username = 'thisisme'
client = Twitter::REST::Client.new do |config|
config.consumer_key = "YOUR_CONSUMER_KEY"
config.consumer_secret = "YOUR_CONSUMER_SECRET"
config.access_token = "YOUR_ACCESS_TOKEN"