capistrano_multiconfig_parallel 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/capistrano_multiconfig_parallel/classes/job_command.rb +0 -1
- data/lib/capistrano_multiconfig_parallel/classes/output_stream.rb +1 -1
- data/lib/capistrano_multiconfig_parallel/helpers/capistrano_helper.rb +1 -1
- data/lib/capistrano_multiconfig_parallel/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: 174070f0e36a324bb314f18e1972979f8374f86c
|
4
|
+
data.tar.gz: c86a2e800e4877a6c54df3166952767ea5bdee20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 759f77792880ab77d30b8ae65bd1f7c1814a72f0996712c0154d9626e9bdca669db20eeea6a0c2f455521ea8a951cb588cd03d6db0f235df5e3ea9b549d087bf
|
7
|
+
data.tar.gz: 09e448c0f926b15f5748e480d6d9e84c9d0479c9296d82028f6ebc8026ddfd853601ec6ed845a869f4125d858207a0aebe8f3fca15e21cde277d88d0c6506877
|
data/README.md
CHANGED
@@ -17,12 +17,12 @@ IMPORTANT! The whole reason for this gem was for using [Caphub](https://github.c
|
|
17
17
|
|
18
18
|
CAUTION!! PLEASE READ CAREFULLY!! Capistrano is not thread-safe. However in order to work around this problem, each of the task is executing inside a thread that spawns a new process in order to run capistrano tasks The thread monitors the process. This works well, however if the tasks you are executing is working with files, you might get into deadlocks because multiple proceses try to access same resource. Instead of using files , please consider using StringIO instead.
|
19
19
|
|
20
|
-
NEW Improvements in version 1.0.
|
20
|
+
NEW Improvements in version 1.0.2
|
21
21
|
---------------------------------
|
22
22
|
|
23
|
-
- added support for Capistrano version 2
|
23
|
+
- added support for Capistrano version 2 (Capistrano 3 was already supported)
|
24
24
|
- a lot of refactoring and bug fixes
|
25
|
-
- removed
|
25
|
+
- removed BRANCH variable ( this needs to be passed when asked for additional env options for each job!!!) ( for Capistrano 2 should be **-S branch=<branch_name>**, for Capistrano 3 should be **BRANCH=<branch_name>**, or could be something else depending on your configuration).
|
26
26
|
|
27
27
|
Requirements
|
28
28
|
------------
|