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 +4 -4
- data/CHANGELOG.md +8 -1
- data/Gemfile +2 -1
- data/lib/capistrano/application.rb +1 -1
- data/lib/capistrano/version.rb +1 -1
- data/spec/lib/capistrano/application_spec.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: 69ec5d772357af1d69b41f723ae4e21cdd4da62f
         | 
| 4 | 
            +
              data.tar.gz: c5fbbbc5d594f7959d836144fa31cfbf671df610
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: ab6ff6ef7b481d3268b44b0b5e63c683888501471bd4b1bd45a9881067bcb0c606245b3eeb8522ec184b632179811ad5507e3a82eecf51634251a23596e7d9fe
         | 
| 7 | 
            +
              data.tar.gz: 85907284c746b0e35478d6cd725faea3d9b1c3724821ea2d3159979c1d09a46bbcd7a7e917667a4fa79411e73147f54e45c06e692686d1f7a2b1e78a6370b390
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -4,7 +4,14 @@ Reverse Chronological Order: | |
| 4 4 |  | 
| 5 5 | 
             
            ## master
         | 
| 6 6 |  | 
| 7 | 
            -
            https://github.com/capistrano/capistrano/compare/v3.4. | 
| 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
    
    
| @@ -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: #{ | 
| 105 | 
            +
                     puts "Capistrano Version: #{Capistrano::VERSION} (Rake Version: #{Rake::VERSION})"
         | 
| 106 106 | 
             
                     exit
         | 
| 107 107 | 
             
                   }
         | 
| 108 108 | 
             
                  ]
         | 
    
        data/lib/capistrano/version.rb
    CHANGED
    
    
| @@ -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#{ | 
| 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. | 
| 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:  | 
| 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. | 
| 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
         |