vcloud-net_launcher 2.0.0 → 2.1.0
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 +4 -2
- data/CHANGELOG.md +7 -0
- data/CONTRIBUTING.md +2 -6
- data/Jenkinsfile +40 -0
- data/README.md +1 -1
- data/lib/vcloud/net_launcher/version.rb +1 -1
- data/rbenv_version.sh +1 -1
- data/spec/vcloud/net_launcher/net_launch_schema_spec.rb +6 -6
- data/vcloud-net_launcher.gemspec +8 -9
- metadata +49 -34
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 739863d3e62e98affe880c20599c211b48599ce4
         | 
| 4 | 
            +
              data.tar.gz: daf3ded7f790d846d3a42c955e91ca1c5c45407e
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: eb3a54353bb68580354565c4bae966564aa5e0f5f256c1744a2d23215d4d1ceb04b0f12455be4bbb4092f7345cbb438f8ae3e7649975029ae1a7c8c188ed5cb9
         | 
| 7 | 
            +
              data.tar.gz: 43cd70904825cde67410350c205c4dfd81870ba10ac4833b835c99047052dc2edb15a12e53d7ec903bbce0035b040085ee65af2efb3b183e69c4ab75ce89e771
         | 
    
        data/.travis.yml
    CHANGED
    
    
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,3 +1,10 @@ | |
| 1 | 
            +
            ## 2.1.0 (2017-06-23)
         | 
| 2 | 
            +
             | 
| 3 | 
            +
              - Removed support for Ruby older than 2.2.2
         | 
| 4 | 
            +
              - Added support for Ruby 2.3.0 and 2.4.0
         | 
| 5 | 
            +
              - Updated dependency on new version of vCloud Core
         | 
| 6 | 
            +
              - Various bug fixes
         | 
| 7 | 
            +
             | 
| 1 8 | 
             
            ## 2.0.0 (2015-10-20)
         | 
| 2 9 |  | 
| 3 10 | 
             
              - Remove support for Ruby 1.9.3, which is now end-of-life.
         | 
    
        data/CONTRIBUTING.md
    CHANGED
    
    | @@ -1,6 +1,6 @@ | |
| 1 1 | 
             
            # Contributing to vCloud Net Launcher
         | 
| 2 2 |  | 
| 3 | 
            -
            We  | 
| 3 | 
            +
            We now consider vCloud Tools feature complete for our purposes. We'd be happy to consider pull requests for new features but please discuss them with us in the issues first so we can let you know if it's something we'd be likely to merge. We will continue to make maintenance and bug fixes.
         | 
| 4 4 |  | 
| 5 5 | 
             
            ## A quick guide on how to contribute
         | 
| 6 6 |  | 
| @@ -36,11 +36,7 @@ We really welcome contributions. | |
| 36 36 |  | 
| 37 37 | 
             
            ## How soon will we respond?
         | 
| 38 38 |  | 
| 39 | 
            -
            We will comment on your  | 
| 40 | 
            -
             | 
| 41 | 
            -
            We may come back to you with comments and suggestions, and if we would like you to make changes, we will close the pull request as well as adding details of the changes we'd like you to make.
         | 
| 42 | 
            -
             | 
| 43 | 
            -
            If you feel your pull request has been outstanding too long, please feel free to bump it by making a comment on it.
         | 
| 39 | 
            +
            We will comment on your issue as soon as we can. If you feel your issue is important, please feel free to bump it by making a comment on it or raise your issue on the [mailing list](https://groups.google.com/a/digital.cabinet-office.gov.uk/forum/#!forum/vcloud-tools).
         | 
| 44 40 |  | 
| 45 41 | 
             
            ## Guidelines for making a pull request
         | 
| 46 42 |  | 
    
        data/Jenkinsfile
    ADDED
    
    | @@ -0,0 +1,40 @@ | |
| 1 | 
            +
            #!/usr/bin/env groovy
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            repoName = JOB_NAME.split('/')[0]
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            node {
         | 
| 6 | 
            +
              def govuk = load '/var/lib/jenkins/groovy_scripts/govuk_jenkinslib.groovy'
         | 
| 7 | 
            +
             | 
| 8 | 
            +
              try {
         | 
| 9 | 
            +
                stage("Checkout") {
         | 
| 10 | 
            +
                  govuk.checkoutFromGitHubWithSSH(repoName)
         | 
| 11 | 
            +
                }
         | 
| 12 | 
            +
             | 
| 13 | 
            +
                stage("Clean up workspace") {
         | 
| 14 | 
            +
                  govuk.cleanupGit()
         | 
| 15 | 
            +
                }
         | 
| 16 | 
            +
             | 
| 17 | 
            +
                stage("bundle install") {
         | 
| 18 | 
            +
                  govuk.setEnvar("RBENV_VERSION", "2.2.2")
         | 
| 19 | 
            +
                  govuk.bundleGem()
         | 
| 20 | 
            +
                }
         | 
| 21 | 
            +
             | 
| 22 | 
            +
                stage("Run tests") {
         | 
| 23 | 
            +
                  govuk.runTests()
         | 
| 24 | 
            +
                }
         | 
| 25 | 
            +
             | 
| 26 | 
            +
                if (env.BRANCH_NAME == "master") {
         | 
| 27 | 
            +
                  stage("Publish gem") {
         | 
| 28 | 
            +
                    govuk.publishGem(repoName, env.BRANCH_NAME)
         | 
| 29 | 
            +
                  }
         | 
| 30 | 
            +
                }
         | 
| 31 | 
            +
              } catch (e) {
         | 
| 32 | 
            +
                currentBuild.result = "FAILED"
         | 
| 33 | 
            +
                step([$class: 'Mailer',
         | 
| 34 | 
            +
                      notifyEveryUnstableBuild: true,
         | 
| 35 | 
            +
                      recipients: 'govuk-ci-notifications@digital.cabinet-office.gov.uk',
         | 
| 36 | 
            +
                      sendToIndividuals: true])
         | 
| 37 | 
            +
                throw e
         | 
| 38 | 
            +
              }
         | 
| 39 | 
            +
            }
         | 
| 40 | 
            +
             | 
    
        data/README.md
    CHANGED
    
    
    
        data/rbenv_version.sh
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            export RBENV_VERSION="2. | 
| 1 | 
            +
            export RBENV_VERSION="2.2.2"
         | 
| @@ -11,7 +11,7 @@ describe Vcloud::NetLauncher do | |
| 11 11 | 
             
                  }
         | 
| 12 12 |  | 
| 13 13 | 
             
                  validator = Vcloud::Core::ConfigValidator.validate(:base, test_config, Vcloud::NetLauncher::Schema::NET_LAUNCH)
         | 
| 14 | 
            -
                  expect(validator.valid?).to  | 
| 14 | 
            +
                  expect(validator.valid?).to be true
         | 
| 15 15 | 
             
                  expect(validator.errors).to be_empty
         | 
| 16 16 | 
             
                end
         | 
| 17 17 |  | 
| @@ -32,7 +32,7 @@ describe Vcloud::NetLauncher do | |
| 32 32 | 
             
                  }
         | 
| 33 33 |  | 
| 34 34 | 
             
                  validator = Vcloud::Core::ConfigValidator.validate(:base, test_config, Vcloud::NetLauncher::Schema::NET_LAUNCH)
         | 
| 35 | 
            -
                  expect(validator.valid?).to  | 
| 35 | 
            +
                  expect(validator.valid?).to be true
         | 
| 36 36 | 
             
                  expect(validator.errors).to be_empty
         | 
| 37 37 | 
             
                end
         | 
| 38 38 |  | 
| @@ -44,7 +44,7 @@ describe Vcloud::NetLauncher do | |
| 44 44 | 
             
                  }
         | 
| 45 45 |  | 
| 46 46 | 
             
                  validator = Vcloud::Core::ConfigValidator.validate(:base, test_config, Vcloud::NetLauncher::Schema::NET_LAUNCH)
         | 
| 47 | 
            -
                  expect(validator.valid?).to  | 
| 47 | 
            +
                  expect(validator.valid?).to be false
         | 
| 48 48 | 
             
                  expect(validator.errors).to eq(["base: parameter 'no_networks_here' is invalid", "base: missing 'org_vdc_networks' parameter"])
         | 
| 49 49 | 
             
                end
         | 
| 50 50 |  | 
| @@ -59,7 +59,7 @@ describe Vcloud::NetLauncher do | |
| 59 59 | 
             
                    ]
         | 
| 60 60 | 
             
                  }
         | 
| 61 61 | 
             
                  validator = Vcloud::Core::ConfigValidator.validate(:base, test_config, Vcloud::NetLauncher::Schema::NET_LAUNCH)
         | 
| 62 | 
            -
                  expect(validator.valid?).to  | 
| 62 | 
            +
                  expect(validator.valid?).to be true
         | 
| 63 63 | 
             
                  expect(validator.errors).to be_empty
         | 
| 64 64 | 
             
                end
         | 
| 65 65 |  | 
| @@ -82,7 +82,7 @@ describe Vcloud::NetLauncher do | |
| 82 82 | 
             
                  }
         | 
| 83 83 |  | 
| 84 84 | 
             
                  validator = Vcloud::Core::ConfigValidator.validate(:base, test_config, Vcloud::NetLauncher::Schema::NET_LAUNCH)
         | 
| 85 | 
            -
                  expect(validator.valid?).to  | 
| 85 | 
            +
                  expect(validator.valid?).to be true
         | 
| 86 86 | 
             
                  expect(validator.errors).to be_empty
         | 
| 87 87 | 
             
                end
         | 
| 88 88 |  | 
| @@ -100,7 +100,7 @@ describe Vcloud::NetLauncher do | |
| 100 100 | 
             
                  }
         | 
| 101 101 |  | 
| 102 102 | 
             
                  validator = Vcloud::Core::ConfigValidator.validate(:base, test_config, Vcloud::NetLauncher::Schema::NET_LAUNCH)
         | 
| 103 | 
            -
                  expect(validator.valid?).to  | 
| 103 | 
            +
                  expect(validator.valid?).to be false
         | 
| 104 104 | 
             
                  expect(validator.errors).to eq(["ip_ranges: missing 'end_address' parameter"])
         | 
| 105 105 | 
             
                end
         | 
| 106 106 | 
             
              end
         | 
    
        data/vcloud-net_launcher.gemspec
    CHANGED
    
    | @@ -20,17 +20,16 @@ Gem::Specification.new do |s| | |
| 20 20 | 
             
              s.test_files    = s.files.grep(%r{^(test|spec|features)/})
         | 
| 21 21 | 
             
              s.require_paths = ['lib']
         | 
| 22 22 |  | 
| 23 | 
            -
              s.required_ruby_version = '>=  | 
| 23 | 
            +
              s.required_ruby_version = '>= 2.2.2'
         | 
| 24 24 |  | 
| 25 | 
            -
              s.add_runtime_dependency 'vcloud-core', '~> 1. | 
| 25 | 
            +
              s.add_runtime_dependency 'vcloud-core', '~> 2.1.0'
         | 
| 26 | 
            +
              s.add_runtime_dependency 'nokogiri', '~> 1.6.8.1'
         | 
| 26 27 | 
             
              s.add_development_dependency 'gem_publisher', '1.2.0'
         | 
| 27 28 | 
             
              s.add_development_dependency 'pry'
         | 
| 28 | 
            -
              s.add_development_dependency 'rake'
         | 
| 29 | 
            -
              s.add_development_dependency 'rspec', ' | 
| 30 | 
            -
              s.add_development_dependency 'rubocop', '~> 0. | 
| 31 | 
            -
               | 
| 32 | 
            -
               | 
| 33 | 
            -
              s.add_development_dependency 'simplecov', '~> 0.7.1'
         | 
| 34 | 
            -
              s.add_development_dependency 'vcloud-tools-tester', '~> 1.0.0'
         | 
| 29 | 
            +
              s.add_development_dependency 'rake', '>= 12'
         | 
| 30 | 
            +
              s.add_development_dependency 'rspec', '>= 3.6'
         | 
| 31 | 
            +
              s.add_development_dependency 'rubocop', '~> 0.49.1'
         | 
| 32 | 
            +
              s.add_development_dependency 'simplecov', '~> 0.14.1'
         | 
| 33 | 
            +
              s.add_development_dependency 'vcloud-tools-tester', '~> 2.1.0'
         | 
| 35 34 | 
             
            end
         | 
| 36 35 |  | 
    
        metadata
    CHANGED
    
    | @@ -1,29 +1,43 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: vcloud-net_launcher
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 2. | 
| 4 | 
            +
              version: 2.1.0
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Anna Shipman
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date:  | 
| 11 | 
            +
            date: 2017-06-30 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: vcloud-core
         | 
| 15 15 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 16 16 | 
             
                requirements:
         | 
| 17 | 
            -
                - - ~>
         | 
| 17 | 
            +
                - - "~>"
         | 
| 18 18 | 
             
                  - !ruby/object:Gem::Version
         | 
| 19 | 
            -
                    version:  | 
| 19 | 
            +
                    version: 2.1.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 | 
            -
                    version:  | 
| 26 | 
            +
                    version: 2.1.0
         | 
| 27 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 28 | 
            +
              name: nokogiri
         | 
| 29 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 30 | 
            +
                requirements:
         | 
| 31 | 
            +
                - - "~>"
         | 
| 32 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 33 | 
            +
                    version: 1.6.8.1
         | 
| 34 | 
            +
              type: :runtime
         | 
| 35 | 
            +
              prerelease: false
         | 
| 36 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 37 | 
            +
                requirements:
         | 
| 38 | 
            +
                - - "~>"
         | 
| 39 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 40 | 
            +
                    version: 1.6.8.1
         | 
| 27 41 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 28 42 | 
             
              name: gem_publisher
         | 
| 29 43 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| @@ -42,86 +56,86 @@ dependencies: | |
| 42 56 | 
             
              name: pry
         | 
| 43 57 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 44 58 | 
             
                requirements:
         | 
| 45 | 
            -
                - -  | 
| 59 | 
            +
                - - ">="
         | 
| 46 60 | 
             
                  - !ruby/object:Gem::Version
         | 
| 47 61 | 
             
                    version: '0'
         | 
| 48 62 | 
             
              type: :development
         | 
| 49 63 | 
             
              prerelease: false
         | 
| 50 64 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 51 65 | 
             
                requirements:
         | 
| 52 | 
            -
                - -  | 
| 66 | 
            +
                - - ">="
         | 
| 53 67 | 
             
                  - !ruby/object:Gem::Version
         | 
| 54 68 | 
             
                    version: '0'
         | 
| 55 69 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 56 70 | 
             
              name: rake
         | 
| 57 71 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 58 72 | 
             
                requirements:
         | 
| 59 | 
            -
                - -  | 
| 73 | 
            +
                - - ">="
         | 
| 60 74 | 
             
                  - !ruby/object:Gem::Version
         | 
| 61 | 
            -
                    version: ' | 
| 75 | 
            +
                    version: '12'
         | 
| 62 76 | 
             
              type: :development
         | 
| 63 77 | 
             
              prerelease: false
         | 
| 64 78 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 65 79 | 
             
                requirements:
         | 
| 66 | 
            -
                - -  | 
| 80 | 
            +
                - - ">="
         | 
| 67 81 | 
             
                  - !ruby/object:Gem::Version
         | 
| 68 | 
            -
                    version: ' | 
| 82 | 
            +
                    version: '12'
         | 
| 69 83 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 70 84 | 
             
              name: rspec
         | 
| 71 85 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 72 86 | 
             
                requirements:
         | 
| 73 | 
            -
                - -  | 
| 87 | 
            +
                - - ">="
         | 
| 74 88 | 
             
                  - !ruby/object:Gem::Version
         | 
| 75 | 
            -
                    version:  | 
| 89 | 
            +
                    version: '3.6'
         | 
| 76 90 | 
             
              type: :development
         | 
| 77 91 | 
             
              prerelease: false
         | 
| 78 92 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 79 93 | 
             
                requirements:
         | 
| 80 | 
            -
                - -  | 
| 94 | 
            +
                - - ">="
         | 
| 81 95 | 
             
                  - !ruby/object:Gem::Version
         | 
| 82 | 
            -
                    version:  | 
| 96 | 
            +
                    version: '3.6'
         | 
| 83 97 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 84 98 | 
             
              name: rubocop
         | 
| 85 99 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 86 100 | 
             
                requirements:
         | 
| 87 | 
            -
                - - ~>
         | 
| 101 | 
            +
                - - "~>"
         | 
| 88 102 | 
             
                  - !ruby/object:Gem::Version
         | 
| 89 | 
            -
                    version: 0. | 
| 103 | 
            +
                    version: 0.49.1
         | 
| 90 104 | 
             
              type: :development
         | 
| 91 105 | 
             
              prerelease: false
         | 
| 92 106 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 93 107 | 
             
                requirements:
         | 
| 94 | 
            -
                - - ~>
         | 
| 108 | 
            +
                - - "~>"
         | 
| 95 109 | 
             
                  - !ruby/object:Gem::Version
         | 
| 96 | 
            -
                    version: 0. | 
| 110 | 
            +
                    version: 0.49.1
         | 
| 97 111 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 98 112 | 
             
              name: simplecov
         | 
| 99 113 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 100 114 | 
             
                requirements:
         | 
| 101 | 
            -
                - - ~>
         | 
| 115 | 
            +
                - - "~>"
         | 
| 102 116 | 
             
                  - !ruby/object:Gem::Version
         | 
| 103 | 
            -
                    version: 0. | 
| 117 | 
            +
                    version: 0.14.1
         | 
| 104 118 | 
             
              type: :development
         | 
| 105 119 | 
             
              prerelease: false
         | 
| 106 120 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 107 121 | 
             
                requirements:
         | 
| 108 | 
            -
                - - ~>
         | 
| 122 | 
            +
                - - "~>"
         | 
| 109 123 | 
             
                  - !ruby/object:Gem::Version
         | 
| 110 | 
            -
                    version: 0. | 
| 124 | 
            +
                    version: 0.14.1
         | 
| 111 125 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 112 126 | 
             
              name: vcloud-tools-tester
         | 
| 113 127 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 114 128 | 
             
                requirements:
         | 
| 115 | 
            -
                - - ~>
         | 
| 129 | 
            +
                - - "~>"
         | 
| 116 130 | 
             
                  - !ruby/object:Gem::Version
         | 
| 117 | 
            -
                    version: 1.0 | 
| 131 | 
            +
                    version: 2.1.0
         | 
| 118 132 | 
             
              type: :development
         | 
| 119 133 | 
             
              prerelease: false
         | 
| 120 134 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 121 135 | 
             
                requirements:
         | 
| 122 | 
            -
                - - ~>
         | 
| 136 | 
            +
                - - "~>"
         | 
| 123 137 | 
             
                  - !ruby/object:Gem::Version
         | 
| 124 | 
            -
                    version: 1.0 | 
| 138 | 
            +
                    version: 2.1.0
         | 
| 125 139 | 
             
            description: Tool to launch and configure vCloud networks. Uses vcloud-core.
         | 
| 126 140 | 
             
            email:
         | 
| 127 141 | 
             
            - anna.shipman@digital.cabinet-office.gov.uk
         | 
| @@ -130,11 +144,12 @@ executables: | |
| 130 144 | 
             
            extensions: []
         | 
| 131 145 | 
             
            extra_rdoc_files: []
         | 
| 132 146 | 
             
            files:
         | 
| 133 | 
            -
            - .gitignore
         | 
| 134 | 
            -
            - .travis.yml
         | 
| 147 | 
            +
            - ".gitignore"
         | 
| 148 | 
            +
            - ".travis.yml"
         | 
| 135 149 | 
             
            - CHANGELOG.md
         | 
| 136 150 | 
             
            - CONTRIBUTING.md
         | 
| 137 151 | 
             
            - Gemfile
         | 
| 152 | 
            +
            - Jenkinsfile
         | 
| 138 153 | 
             
            - LICENSE.txt
         | 
| 139 154 | 
             
            - README.md
         | 
| 140 155 | 
             
            - Rakefile
         | 
| @@ -169,17 +184,17 @@ require_paths: | |
| 169 184 | 
             
            - lib
         | 
| 170 185 | 
             
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 171 186 | 
             
              requirements:
         | 
| 172 | 
            -
              - -  | 
| 187 | 
            +
              - - ">="
         | 
| 173 188 | 
             
                - !ruby/object:Gem::Version
         | 
| 174 | 
            -
                  version:  | 
| 189 | 
            +
                  version: 2.2.2
         | 
| 175 190 | 
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 176 191 | 
             
              requirements:
         | 
| 177 | 
            -
              - -  | 
| 192 | 
            +
              - - ">="
         | 
| 178 193 | 
             
                - !ruby/object:Gem::Version
         | 
| 179 194 | 
             
                  version: '0'
         | 
| 180 195 | 
             
            requirements: []
         | 
| 181 196 | 
             
            rubyforge_project: 
         | 
| 182 | 
            -
            rubygems_version: 2. | 
| 197 | 
            +
            rubygems_version: 2.4.5
         | 
| 183 198 | 
             
            signing_key: 
         | 
| 184 199 | 
             
            specification_version: 4
         | 
| 185 200 | 
             
            summary: Tool to launch and configure vCloud networks
         |