negroku 2.5.0 → 2.5.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 +4 -4
- data/lib/negroku/modes/app.rb +5 -0
- data/lib/negroku/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: 6dc5dd63e8d9925a128b800cfe17a86d5c5d006b
|
|
4
|
+
data.tar.gz: 9f14187bce74d00feaf4a08539eb4fcb0b3291a5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 76609f1f056cc6ea9963907a99ec65f8867ea37dd549bcd312edf06eb3dad825aa3e54993e59075c391885a613ee17e44816704476540576c15b13bc6fdf5602
|
|
7
|
+
data.tar.gz: 2427d7c4dcef375ebaf3549274e8622ad8a609f1914d71a61f41f7f70def2f51183f669cbb76a4c4de104395924ad2ae9f0977120ce501fb630821846ca7c4a0
|
data/lib/negroku/modes/app.rb
CHANGED
|
@@ -15,6 +15,7 @@ module Negroku::Modes
|
|
|
15
15
|
ask_features
|
|
16
16
|
|
|
17
17
|
custom_capify data
|
|
18
|
+
install_binstubs
|
|
18
19
|
|
|
19
20
|
end
|
|
20
21
|
|
|
@@ -37,6 +38,10 @@ module Negroku::Modes
|
|
|
37
38
|
|
|
38
39
|
end
|
|
39
40
|
|
|
41
|
+
def install_binstubs
|
|
42
|
+
`bundle binstub capistrano negroku`
|
|
43
|
+
end
|
|
44
|
+
|
|
40
45
|
# This code was exatracted from capistrano to be used with our own templates
|
|
41
46
|
# https://github.com/capistrano/capistrano/blob/68e7632c5f16823a09c324d556a208e096abee62/lib/capistrano/tasks/install.rake
|
|
42
47
|
def custom_capify(data={}, config=nil)
|
data/lib/negroku/version.rb
CHANGED