capistrano-multiconfig 3.0.8 → 3.0.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3f547696f37449532e2c786a2f5c1992624b0943
4
- data.tar.gz: 7c294f17db04edf6859d381311f5d54ef158abc0
3
+ metadata.gz: f6baafec3d61346d5f0973482c558a6c1416a0ca
4
+ data.tar.gz: d9e2f88814ad758896ee0b8e6e46bf72cb0f7373
5
5
  SHA512:
6
- metadata.gz: 5006febe55e441a0de09db5bdc708fbed546af1cfbb5dda3fa29fad344c4ab471f8c20314593a77a8639f5f1b4266e17cb69ec92a9ed0437a05b2a3c94bb9446
7
- data.tar.gz: ad4000cbcaffaa0c0d4fd962a79a18cc81e5f4e6c978d4ad0bc82e9a3bdb2a7a7b5a266f06d996ef1f361df569f7880478de0dbde48dc7b00f1df76c6142b629
6
+ metadata.gz: ebac9ad769cf6a7c0f719eb9575dee3a9ff8cbf3af9960287f581802f1386e361cc4d75a7a9e08f787d9a5830f58392cd8c72ad09c7545b5aae5d938ff195de5
7
+ data.tar.gz: fa7c9d28e38cf5754a2c54d2bf41aff7b7b08cdc08f7505fc9fa94e04afc756200df81b8e47d2da55adf2c9c879337189a93e1ec4d207131421bba418ea1e213
data/.travis.yml CHANGED
@@ -1,7 +1,8 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 1.9.3
4
- - 2.1.0
3
+ - 2.1.10
4
+ - 2.2.5
5
+ - 2.3.1
5
6
  cache: bundler
6
7
  script:
7
8
  - bundle exec rspec
data/Gemfile CHANGED
@@ -2,7 +2,7 @@ source "http://rubygems.org"
2
2
 
3
3
  gemspec
4
4
 
5
- gem "capistrano", "3.0.0"
5
+ gem "capistrano", "3.5.0"
6
6
 
7
7
  group :test do
8
8
  gem "rspec", "2.14.1"
@@ -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.8"
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) extenstion.
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.8
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: 2014-02-05 00:00:00.000000000 Z
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
- extenstion.\nBut it's not only about 'stage' configurations. It's about any configuration
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.0.3
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