Skip to content

Instantly share code, notes, and snippets.

@joshdholtz
Created October 27, 2015 15:33
Show Gist options
  • Save joshdholtz/d20a1bbc4f23054dca89 to your computer and use it in GitHub Desktop.
Save joshdholtz/d20a1bbc4f23054dca89 to your computer and use it in GitHub Desktop.
Rakefile Template
SLACK_TOKEN=blahblahblah
source "https://rubygems.org"
gem "dotenv"
gem "slack-notifier"
gem "rake"
#
# INSTALLATION
# 1. bundle install
# 2. rake slack_quote
#
require 'dotenv'
Dotenv.load
desc "Run rake stuff"
task :slack_quote do
slack_token = ENV['SLACK_TOKEN']
puts "token - #{slack_token}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment