Skip to content

Instantly share code, notes, and snippets.

@netbe
Last active October 15, 2015 01:09
Show Gist options
  • Save netbe/52a3a45e5e1392129877 to your computer and use it in GitHub Desktop.
Save netbe/52a3a45e5e1392129877 to your computer and use it in GitHub Desktop.
Tweet article if not published
require 'net/http'
desc "Tweet the newly published article"
task :tweet do
if File.exists?(TWEET_FILE)
message = File.read(TWEET_FILE)
puts "Tweeting #{message}"
`bundle exec t update "#{message}" -P .trc`
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment