capistrano_multiconfig_parallel 0.23.0 → 0.23.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1ff612a175687d8fc42e5dd6043c7e5a25424d88
|
|
4
|
+
data.tar.gz: d1a7dcf21535303deee6743fc08d449cf1a14b2b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8a4cf9fcf55c2c2e87e162881d2f18635b6be934762846067a06bcf828af9b20310ba27e480ba10bcd4a4c5816e6b3f444cb061898cfe0216abc69b455c745aa
|
|
7
|
+
data.tar.gz: 43d03318d0b96e474fc123434c223cf38c247467a8bee012e980a83d83a9a5db41ba11d24e287114ec4530eae7d943d2613f06f0b82eb7595b61d9a9a6d5bb92
|
data/README.md
CHANGED
|
@@ -29,10 +29,11 @@ Requirements
|
|
|
29
29
|
7. [eventmachine >= 1.0.3](https://github.com/eventmachine/eventmachine)
|
|
30
30
|
8. [right_popen >= 1.1.3](https://github.com/rightscale/right_popen)
|
|
31
31
|
9. [capistrano >= 3.0](https://github.com/capistrano/capistrano/)
|
|
32
|
-
10. [
|
|
33
|
-
11. [
|
|
34
|
-
12. [
|
|
35
|
-
13. [
|
|
32
|
+
10. [capistrano-multiconfig >= 3.0.8](https://github.com/railsware/capistrano-multiconfig)
|
|
33
|
+
11. [configliere >= 0.4](https://github.com/infochimps-platform/configliere)
|
|
34
|
+
12. [inquirer >= 0.2](https://github.com/arlimus/inquirer.rb)
|
|
35
|
+
13. [devnull >= 0.1](https://github.com/arlimus/inquirer.rb)
|
|
36
|
+
14. [versionomy >= 0.4.4](https://github.com/dazuma/versionomy)
|
|
36
37
|
|
|
37
38
|
Compatibility
|
|
38
39
|
-------------
|
|
@@ -34,6 +34,7 @@ Gem.find_files('composable_state_machine/**/*.rb').each { |path| require path }
|
|
|
34
34
|
Gem.find_files('capistrano_multiconfig_parallel/classes/**/*.rb').each { |path| require path }
|
|
35
35
|
Gem.find_files('capistrano_multiconfig_parallel/helpers/**/*.rb').each { |path| require path }
|
|
36
36
|
Gem.find_files('capistrano_multiconfig_parallel/celluloid/**/*.rb').each { |path| require path }
|
|
37
|
+
Gem.find_files('capistrano_multiconfig_parallel/initializers/**/*.rb').each { |path| require path }
|
|
37
38
|
|
|
38
39
|
require_relative './version'
|
|
39
40
|
require_relative './base'
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
require_relative './all'
|
|
2
|
-
Gem.find_files('capistrano_multiconfig_parallel/initializers/**/*.rb').each { |path| require path }
|
|
3
2
|
module CapistranoMulticonfigParallel
|
|
4
3
|
# this is the class that will be invoked from terminal , and willl use the invoke task as the primary function.
|
|
5
4
|
class CLI
|