pushwagner 0.0.1.11 → 0.0.1.12
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 +4 -4
- data/bin/pw +6 -3
- data/lib/pushwagner/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 467839b2fe9c8143c2ef51679c3404ba6f2c1d44
|
|
4
|
+
data.tar.gz: e7a0cd2c8c061beb4d2d32432826b40cf1476b74
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7ba20f9b4fb588d9155081f26fc5b58f872118f8421f9c40b629daf948cb7884f3dbcb636e13d08a5d67c885b505a99182cadac181b8435bb19d3147469a7c37
|
|
7
|
+
data.tar.gz: e308ce447d7bb1b37ac39559b3195de076c76834b61a8361d862d8c59ecfd058969e8e17bb4257a53ba4d84ff2bd887afcf924dbeaa97c2dc3af7609191befe4
|
data/bin/pw
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
3
|
require 'pushwagner'
|
|
4
|
+
require 'pushwagner/version'
|
|
4
5
|
|
|
5
6
|
def get_version
|
|
6
7
|
Pushwagner.info "You must specify which version you wish to deploy"
|
|
@@ -14,15 +15,17 @@ env = ARGV[1] || ENV['PW_ENV'] || 'default'
|
|
|
14
15
|
|
|
15
16
|
main = Pushwagner::Main.new(:config_file => 'config/deploy.yml', :version => version, :environment => env)
|
|
16
17
|
|
|
17
|
-
puts
|
|
18
|
+
puts (
|
|
19
|
+
%q{
|
|
18
20
|
_
|
|
19
21
|
_ __ _ _ ___| |____ ____ _ __ _ _ __ ___ _ __
|
|
20
22
|
| '_ \| | | / __| '_ \ \ /\ / / _` |/ _` | '_ \ / _ \ '__|
|
|
21
23
|
| |_) | |_| \__ \ | | \ V V / (_| | (_| | | | | __/ | _
|
|
22
24
|
| .__/ \__,_|___/_| |_|\_/\_/ \__,_|\__, |_| |_|\___|_|(oc)
|
|
23
|
-
|_| |___/
|
|
25
|
+
|_| |___/ }.colorize(color: :blue, mode: :bold) +
|
|
26
|
+
('(' + Pushwagner::VERSION + ')').colorize(color: :cyan))
|
|
27
|
+
puts
|
|
24
28
|
|
|
25
|
-
}.colorize(color: :blue, mode: :bold)
|
|
26
29
|
|
|
27
30
|
# TODO: detect cli from config
|
|
28
31
|
case ARGV[0]
|
data/lib/pushwagner/version.rb
CHANGED