capistrano-multiconfig 3.0.8 → 3.0.9
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/.travis.yml +3 -2
- data/Gemfile +1 -1
- data/capistrano-multiconfig.gemspec +2 -2
- data/lib/capistrano/multiconfig.rb +9 -0
- metadata +10 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f6baafec3d61346d5f0973482c558a6c1416a0ca
|
|
4
|
+
data.tar.gz: d9e2f88814ad758896ee0b8e6e46bf72cb0f7373
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ebac9ad769cf6a7c0f719eb9575dee3a9ff8cbf3af9960287f581802f1386e361cc4d75a7a9e08f787d9a5830f58392cd8c72ad09c7545b5aae5d938ff195de5
|
|
7
|
+
data.tar.gz: fa7c9d28e38cf5754a2c54d2bf41aff7b7b08cdc08f7505fc9fa94e04afc756200df81b8e47d2da55adf2c9c879337189a93e1ec4d207131421bba418ea1e213
|
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
|
@@ -3,13 +3,13 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "capistrano-multiconfig"
|
|
6
|
-
s.version = "3.0.
|
|
6
|
+
s.version = "3.0.9"
|
|
7
7
|
s.authors = ["Andriy Yanko"]
|
|
8
8
|
s.email = ["andriy.yanko@gmail.com"]
|
|
9
9
|
s.homepage = "https://github.com/railsware/capistrano-multiconfig"
|
|
10
10
|
s.summary = %q{Capistrano extension that allows to use multiple configurations}
|
|
11
11
|
s.description = %q{
|
|
12
|
-
Multiconfig extension is similar to [multistage](https://github.com/capistrano/capistrano-ext)
|
|
12
|
+
Multiconfig extension is similar to [multistage](https://github.com/capistrano/capistrano-ext) extension.
|
|
13
13
|
But it's not only about 'stage' configurations. It's about any configuration that you may need.
|
|
14
14
|
Extension recursively builds configuration list from configuration root directory.
|
|
15
15
|
Each configuration loads recursively configuration from namespace files and own configuration file.
|
|
@@ -9,6 +9,15 @@ namespace :load do
|
|
|
9
9
|
end
|
|
10
10
|
end
|
|
11
11
|
|
|
12
|
+
if Gem::Version.new(Capistrano::VERSION) >= Gem::Version.new('3.5.0')
|
|
13
|
+
require "airbrussh/capistrano"
|
|
14
|
+
|
|
15
|
+
Airbrussh.configure do |airbrussh|
|
|
16
|
+
airbrussh.banner = false
|
|
17
|
+
airbrussh.command_output = true
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
|
|
12
21
|
stages.each do |stage|
|
|
13
22
|
Rake::Task.define_task(stage) do
|
|
14
23
|
|
metadata
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-multiconfig
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andriy Yanko
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-06-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: 3.0.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: 3.0.0
|
|
27
27
|
description: "\nMulticonfig extension is similar to [multistage](https://github.com/capistrano/capistrano-ext)
|
|
28
|
-
|
|
28
|
+
extension.\nBut it's not only about 'stage' configurations. It's about any configuration
|
|
29
29
|
that you may need.\nExtension recursively builds configuration list from configuration
|
|
30
30
|
root directory.\nEach configuration loads recursively configuration from namespace
|
|
31
31
|
files and own configuration file.\n "
|
|
@@ -35,8 +35,8 @@ executables: []
|
|
|
35
35
|
extensions: []
|
|
36
36
|
extra_rdoc_files: []
|
|
37
37
|
files:
|
|
38
|
-
- .gitignore
|
|
39
|
-
- .travis.yml
|
|
38
|
+
- ".gitignore"
|
|
39
|
+
- ".travis.yml"
|
|
40
40
|
- Gemfile
|
|
41
41
|
- LICENSE
|
|
42
42
|
- README.md
|
|
@@ -91,17 +91,17 @@ require_paths:
|
|
|
91
91
|
- lib
|
|
92
92
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
94
|
-
- -
|
|
94
|
+
- - ">="
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
96
|
version: '0'
|
|
97
97
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
98
98
|
requirements:
|
|
99
|
-
- -
|
|
99
|
+
- - ">="
|
|
100
100
|
- !ruby/object:Gem::Version
|
|
101
101
|
version: '0'
|
|
102
102
|
requirements: []
|
|
103
103
|
rubyforge_project:
|
|
104
|
-
rubygems_version: 2.
|
|
104
|
+
rubygems_version: 2.4.5.1
|
|
105
105
|
signing_key:
|
|
106
106
|
specification_version: 4
|
|
107
107
|
summary: Capistrano extension that allows to use multiple configurations
|