shaddox 0.0.28 → 0.0.29
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/Doxfile +3 -1
- data/lib/shaddox/shadow.rb +3 -1
- data/lib/shaddox/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: 6f78ab4e745b69fe2265b3a1214f2dda3179a253
|
|
4
|
+
data.tar.gz: dee8c3eba659eaa0d75b775aeb0ec270016db42c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 744ab53e7b03a218f3468dfe08cf7383c758dc6f17ba499cb06dcab831c52af57b850b3064adcbf7df1c71d87ed62e0b323845abdb7a7b7c16a5cadfbd65b8b1
|
|
7
|
+
data.tar.gz: d0d3a7d661c1186791a1ac827e12829d4e7ee31ebe96ad2b99c2e50d72f6270dc3e0a92e90dd9efbdbd792740ea53b22672e593a7dde357683ae9c771f86fce1
|
data/Doxfile
CHANGED
data/lib/shaddox/shadow.rb
CHANGED
|
@@ -78,7 +78,7 @@ module Shaddox
|
|
|
78
78
|
end
|
|
79
79
|
end
|
|
80
80
|
|
|
81
|
-
def repo_deploy(repo_key, deploy_path, opts ={})
|
|
81
|
+
def repo_deploy(repo_key, deploy_path, opts ={}, &in_deploy_path_block)
|
|
82
82
|
keep_releases = opts[:keep_releases] || 5
|
|
83
83
|
repo = @repos[repo_key]
|
|
84
84
|
|
|
@@ -122,6 +122,8 @@ module Shaddox
|
|
|
122
122
|
info 'Linking current to latest release', 1 if @debug
|
|
123
123
|
ln_s release_path, './current'
|
|
124
124
|
end
|
|
125
|
+
|
|
126
|
+
cd deploy_path, &in_deploy_path_block if block_given?
|
|
125
127
|
end
|
|
126
128
|
|
|
127
129
|
def install(package)
|
data/lib/shaddox/version.rb
CHANGED