Skip to content

Instantly share code, notes, and snippets.

@igorshubovych
Forked from exAspArk/friday_deploy_cap2.rb
Last active August 29, 2015 14:14
Show Gist options
  • Save igorshubovych/1df07bf6989cb97b0cdf to your computer and use it in GitHub Desktop.
Save igorshubovych/1df07bf6989cb97b0cdf to your computer and use it in GitHub Desktop.
# encoding: utf-8
# Capistrano 2
before "deploy", "friday:good_luck"
namespace :friday do
friday_jumper = %{
┓┏┓┏┓┃
┛┗┛┗┛┃⟍ ○⟋
┓┏┓┏┓┃ ∕ Friday
┛┗┛┗┛┃ノ)
┓┏┓┏┓┃ deploy,
┛┗┛┗┛┃
┓┏┓┏┓┃ good
┛┗┛┗┛┃
┓┏┓┏┓┃ luck!
┃┃┃┃┃┃
┻┻┻┻┻┻
}.strip!
task :good_luck do
if Time.now.friday?
warn(friday_jumper)
end
end
end
# encoding: utf-8
# Capistrano 3
before "deploy:starting", "friday:good_luck"
namespace :friday do
friday_jumper = %{
┓┏┓┏┓┃
┛┗┛┗┛┃⟍ ○⟋
┓┏┓┏┓┃ ∕ Friday
┛┗┛┗┛┃ノ)
┓┏┓┏┓┃ deploy,
┛┗┛┗┛┃
┓┏┓┏┓┃ good
┛┗┛┗┛┃
┓┏┓┏┓┃ luck!
┃┃┃┃┃┃
┻┻┻┻┻┻
}.strip!
task :good_luck do
if Time.now.friday?
warn(friday_jumper.yellow)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment