capistrano-butts 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/butts.png +0 -0
- data/capistrano-butts.gemspec +19 -0
- data/lib/capistrano/butts/version.rb +5 -0
- data/lib/capistrano/butts.mp3 +0 -0
- data/lib/capistrano/butts.rb +2 -0
- data/lib/capistrano/tasks/butts.rake +13 -0
- metadata +77 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 410ebbb66d8ea8b2a69706c96917bf0b4bfcaac4
|
4
|
+
data.tar.gz: 5437498de2f7ae0574d52b5dd0567b2ef9d407b3
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 59caeaa7c95d183f41a97760e91bba469143103993de9a91235c8b03806be3e8e42e53740ef8078481c170b4469db5028f9914751e8e3fb16217e5d2671db3fe
|
7
|
+
data.tar.gz: 0326ca5db8c26b4c800cb28d27fc16e76319bb23f559d8ac064d6d2746780caf96ec236583d30e26f011bb513858ebc648f2fc6caa2afc9cd53e063a7f82ef7f
|
data/butts.png
ADDED
Binary file
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'capistrano/butts/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'capistrano-butts'
|
8
|
+
spec.version = Capistrano::Butts::VERSION
|
9
|
+
spec.authors = ['Alex Ford']
|
10
|
+
spec.email = ['alexford87@me.com']
|
11
|
+
|
12
|
+
spec.summary = 'Reminds you to hold on to your butts before production deploys'
|
13
|
+
|
14
|
+
spec.files = `git ls-files -z`.split("\x0")
|
15
|
+
spec.require_paths = ['lib']
|
16
|
+
|
17
|
+
spec.add_development_dependency 'bundler', '~> 1.10.6'
|
18
|
+
spec.add_development_dependency 'pry'
|
19
|
+
end
|
Binary file
|
@@ -0,0 +1,13 @@
|
|
1
|
+
namespace :deploy do
|
2
|
+
before :starting, :butts do
|
3
|
+
return unless [:production, :prod].include? fetch(:stage)
|
4
|
+
run_locally do
|
5
|
+
info 'Hold on to your butts...'
|
6
|
+
begin
|
7
|
+
`afplay #{File.expand_path('../../butts.mp3', __FILE__)}`
|
8
|
+
rescue
|
9
|
+
# welp
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: capistrano-butts
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Alex Ford
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-06-29 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 1.10.6
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 1.10.6
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: pry
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description:
|
42
|
+
email:
|
43
|
+
- alexford87@me.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- butts.png
|
49
|
+
- capistrano-butts.gemspec
|
50
|
+
- lib/capistrano/butts.mp3
|
51
|
+
- lib/capistrano/butts.rb
|
52
|
+
- lib/capistrano/butts/version.rb
|
53
|
+
- lib/capistrano/tasks/butts.rake
|
54
|
+
homepage:
|
55
|
+
licenses: []
|
56
|
+
metadata: {}
|
57
|
+
post_install_message:
|
58
|
+
rdoc_options: []
|
59
|
+
require_paths:
|
60
|
+
- lib
|
61
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
62
|
+
requirements:
|
63
|
+
- - '>='
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: '0'
|
66
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - '>='
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '0'
|
71
|
+
requirements: []
|
72
|
+
rubyforge_project:
|
73
|
+
rubygems_version: 2.0.14.1
|
74
|
+
signing_key:
|
75
|
+
specification_version: 4
|
76
|
+
summary: Reminds you to hold on to your butts before production deploys
|
77
|
+
test_files: []
|