-
This is a numbered list.
-
I'm going to include a fenced code block as part of this bullet:
Code More Code
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
Capistrano::Configuration.instance(:must_exist).load do | |
require 'httparty' | |
before "deploy", "yammer:notify_deploy_start" | |
after "deploy", "yammer:notify_deploy_success" | |
after "deploy:rollback", "yammer:notify_deploy_fail" | |
namespace :yammer do | |
desc "Notify a Yammer account that a deploy just started" | |
task :notify_deploy_start do |
NewerOlder