-
-
Save joshdholtz/d20a1bbc4f23054dca89 to your computer and use it in GitHub Desktop.
Rakefile Template
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
SLACK_TOKEN=blahblahblah |
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
source "https://rubygems.org" | |
gem "dotenv" | |
gem "slack-notifier" | |
gem "rake" |
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
# | |
# 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