capistrano 3.4.0 → 3.4.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: 55a3a0f0c912740b1871ed0152eec9b013ab4274
4
- data.tar.gz: 826d603280078a95e759d5620b94308f7a3937ab
3
+ metadata.gz: 69ec5d772357af1d69b41f723ae4e21cdd4da62f
4
+ data.tar.gz: c5fbbbc5d594f7959d836144fa31cfbf671df610
5
5
  SHA512:
6
- metadata.gz: 5ccedfa13ac44999dca4ab7f510259ef276123be707edc647b09b270bed65228b64e7c06f4fd771aab441b89c9aad1cf431156ec56d54ad582fffa7f3645a601
7
- data.tar.gz: aa2fb629595143fbcc4e64e914028d54039e6602bbc570c01b49196c1a67d2b4f127597c66f2310bd31cdd4fd81f3f0cd36e4da016fd5d2cba1685f9d9f735df
6
+ metadata.gz: ab6ff6ef7b481d3268b44b0b5e63c683888501471bd4b1bd45a9881067bcb0c606245b3eeb8522ec184b632179811ad5507e3a82eecf51634251a23596e7d9fe
7
+ data.tar.gz: 85907284c746b0e35478d6cd725faea3d9b1c3724821ea2d3159979c1d09a46bbcd7a7e917667a4fa79411e73147f54e45c06e692686d1f7a2b1e78a6370b390
@@ -4,7 +4,14 @@ Reverse Chronological Order:
4
4
 
5
5
  ## master
6
6
 
7
- https://github.com/capistrano/capistrano/compare/v3.4.0...HEAD
7
+ https://github.com/capistrano/capistrano/compare/v3.4.1...HEAD
8
+
9
+ ## `3.4.1`
10
+
11
+ https://github.com/capistrano/capistrano/compare/v3.4.0...v3.4.1
12
+
13
+ * Fix compatibility with Rake 11.0 (backported from
14
+ https://github.com/capistrano/capistrano/pull/1631) (@leehambley)
8
15
 
9
16
  ## `3.4.0`
10
17
 
data/Gemfile CHANGED
@@ -5,5 +5,6 @@ gemspec
5
5
 
6
6
  group :cucumber do
7
7
  gem 'cucumber'
8
- gem 'rspec', '~> 3.0.0'
8
+ gem "rspec"
9
+ gem "rspec-core", "~> 3.4.4"
9
10
  end
@@ -102,7 +102,7 @@ module Capistrano
102
102
  ['--version', '-V',
103
103
  "Display the program version.",
104
104
  lambda { |value|
105
- puts "Capistrano Version: #{Capistrano::VERSION} (Rake Version: #{RAKEVERSION})"
105
+ puts "Capistrano Version: #{Capistrano::VERSION} (Rake Version: #{Rake::VERSION})"
106
106
  exit
107
107
  }
108
108
  ]
@@ -1,3 +1,3 @@
1
1
  module Capistrano
2
- VERSION = "3.4.0"
2
+ VERSION = "3.4.1"
3
3
  end
@@ -30,7 +30,7 @@ describe Capistrano::Application do
30
30
  expect(out).to match(/\bCapistrano Version\b/)
31
31
  expect(out).to match(/\b#{Capistrano::VERSION}\b/)
32
32
  expect(out).to match(/\bRake Version\b/)
33
- expect(out).to match(/\b#{RAKEVERSION}\b/)
33
+ expect(out).to match(/\b#{Rake::VERSION}\b/)
34
34
  end
35
35
 
36
36
  it "overrides the rake method, and sets the sshkit_backend to SSHKit::Backend::Printer" do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.0
4
+ version: 3.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Clements
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-03-02 00:00:00.000000000 Z
12
+ date: 2016-04-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sshkit
@@ -206,7 +206,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
206
206
  version: '0'
207
207
  requirements: []
208
208
  rubyforge_project:
209
- rubygems_version: 2.4.3
209
+ rubygems_version: 2.6.3
210
210
  signing_key:
211
211
  specification_version: 4
212
212
  summary: Capistrano - Welcome to easy deployment with Ruby over SSH