capistrano_multiconfig_parallel 2.0.0.rc7 → 2.0.0
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/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e671ffb5b25e82a157ff5daba3de38b84902228c
|
4
|
+
data.tar.gz: ae97811db72349e8377dfbd54adf2a56c4385d59
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22e2d3da34a9824010707e04e5a8a5d7dd0ee712bd73e904d8161da10568e4eaaa2eb2af2cc29734e56d07c27c8b731556d8b06061788b661f776ccf85e2696b
|
7
|
+
data.tar.gz: 9714d4b0b21ac6fcee820f591ff650299b22fb1afc3733934f4b14c18d46f0c35eb4c78ee9df1066cf97d9853c9a26dba1fb5be290942d7e37f6b79d6aad72db
|
data/README.md
CHANGED
@@ -17,8 +17,8 @@ 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 started in version 2.0.0.alpha ( currently gem is in
|
21
|
-
|
20
|
+
NEW Improvements started in version 2.0.0.alpha ( currently gem is in stable version)
|
21
|
+
-------------------------------------------------------------------------------------
|
22
22
|
|
23
23
|
- Code for handling websocket events when a task is invoked was moved to a new gem [capistrano_sentinel](https://github.com/bogdanRada/capistrano_sentinel)
|
24
24
|
- You can now deploy applications from anywhere on your computer without having to add this gem to the Gemfile, however you need to add the [capistrano_sentinel](https://github.com/bogdanRada/capistrano_sentinel) gem to your Gemfile, if you want to use this .
|
@@ -77,7 +77,7 @@ Add the following to your Capfile after requiring **capistrano** and **capistran
|
|
77
77
|
Install locally on your system the capistrano_multiconfig_parallel gem using this command :
|
78
78
|
|
79
79
|
```ruby
|
80
|
-
gem install capistrano_multiconfig_parallel -v 2.0.0
|
80
|
+
gem install capistrano_multiconfig_parallel -v 2.0.0
|
81
81
|
```
|
82
82
|
|
83
83
|
Please read [Release Details](https://github.com/bogdanRada/capistrano_multiconfig_parallel/releases) if you are upgrading. We break backward compatibility between large ticks but you can expect it to be specified at release notes.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano_multiconfig_parallel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.0
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- bogdanRada
|
@@ -546,9 +546,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
546
546
|
version: '0'
|
547
547
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
548
548
|
requirements:
|
549
|
-
- - "
|
549
|
+
- - ">="
|
550
550
|
- !ruby/object:Gem::Version
|
551
|
-
version:
|
551
|
+
version: '0'
|
552
552
|
requirements: []
|
553
553
|
rubyforge_project:
|
554
554
|
rubygems_version: 2.5.1
|