comap 1.0.0.pre.a
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 +7 -0
- data/.gitignore +14 -0
- data/.gitlab-ci.yml +56 -0
- data/.kitchen.yml +125 -0
- data/.rspec +3 -0
- data/.ruby-version +1 -0
- data/.travis.yml +5 -0
- data/Berksfile +8 -0
- data/CONTRIBUTING.md +62 -0
- data/Dockerfile +15 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +327 -0
- data/LICENSE +202 -0
- data/README.md +65 -0
- data/Rakefile +32 -0
- data/bin/console +30 -0
- data/bin/setup +23 -0
- data/comap.gemspec +53 -0
- data/exe/comap +28 -0
- data/lib/comap.rb +100 -0
- data/lib/comap/app.rb +142 -0
- data/lib/comap/docker_client.rb +42 -0
- data/lib/comap/version.rb +21 -0
- data/metadata.rb +17 -0
- data/recipes/build_comap.rb +35 -0
- data/recipes/launch_comap.rb +66 -0
- metadata +183 -0
    
        checksums.yaml
    ADDED
    
    | @@ -0,0 +1,7 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            SHA256:
         | 
| 3 | 
            +
              metadata.gz: 345671b15e5f677976017cfce2b49e64656e615ef7e322c93c379910e1e5f2a3
         | 
| 4 | 
            +
              data.tar.gz: e68376648d58e13b9c2853cb84988b2239d74ad061e6a93f466c0f092b37eb11
         | 
| 5 | 
            +
            SHA512:
         | 
| 6 | 
            +
              metadata.gz: eaf027710fde4a00a1a90ad69baae5d3cbd75f3213bd43200c7767c709aa9d823a5cbcd29ac7013530287709d4b9404d1d607aad7a9bdf888415232805f76aac
         | 
| 7 | 
            +
              data.tar.gz: '05980b38c30f048e76775eb6367dd018ca8774b68705c57e6dcc6f42e0753e7f7eddf70d4ed01e1dd44be2544c910dc46f27e748c2b1ff93958e0c8782b60903'
         | 
    
        data/.gitignore
    ADDED
    
    
    
        data/.gitlab-ci.yml
    ADDED
    
    | @@ -0,0 +1,56 @@ | |
| 1 | 
            +
            # Template chef 20180209
         | 
| 2 | 
            +
            image: sbernard/arch-kitchen-docker
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            before_script:
         | 
| 5 | 
            +
              - bundle install
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            variables:
         | 
| 8 | 
            +
              CHECKS_REPO: https://gitlab.com/samuel.bernard/checks/raw/master
         | 
| 9 | 
            +
             | 
| 10 | 
            +
            foodcritic:
         | 
| 11 | 
            +
              script:
         | 
| 12 | 
            +
                - bundle exec foodcritic -f any .
         | 
| 13 | 
            +
             | 
| 14 | 
            +
            rubocop:
         | 
| 15 | 
            +
              script:
         | 
| 16 | 
            +
                - bundle exec rubocop
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            lines_length:
         | 
| 19 | 
            +
              script:
         | 
| 20 | 
            +
                - curl -s $CHECKS_REPO/check_lines_length.sh | bash
         | 
| 21 | 
            +
             | 
| 22 | 
            +
            git_history:
         | 
| 23 | 
            +
              script:
         | 
| 24 | 
            +
                - curl -s $CHECKS_REPO/check_git_history.sh | bash
         | 
| 25 | 
            +
             | 
| 26 | 
            +
            rspec:
         | 
| 27 | 
            +
              script:
         | 
| 28 | 
            +
                - bundle exec rspec
         | 
| 29 | 
            +
             | 
| 30 | 
            +
            kitchen:
         | 
| 31 | 
            +
              retry: 2
         | 
| 32 | 
            +
              tags:
         | 
| 33 | 
            +
                - docker
         | 
| 34 | 
            +
              before_script:
         | 
| 35 | 
            +
                - >
         | 
| 36 | 
            +
                  curl -s $CHECKS_REPO/Gemfile_patches | while read line; do
         | 
| 37 | 
            +
                    if ! cat Gemfile | grep "$line"; then
         | 
| 38 | 
            +
                      echo "$line" >> Gemfile
         | 
| 39 | 
            +
                    fi
         | 
| 40 | 
            +
                  done
         | 
| 41 | 
            +
                - bundle install
         | 
| 42 | 
            +
                  # Mount host kernel modules which may be needed by docker
         | 
| 43 | 
            +
                - mkdir -p /mnt/host
         | 
| 44 | 
            +
                - mount /dev/dm-0 /mnt/host
         | 
| 45 | 
            +
                - ln -s /mnt/host/lib/modules /lib/modules
         | 
| 46 | 
            +
                - if [ ! -e /var/run/docker.sock ]; then DOCKER_DRIVER=vfs dockerd & fi
         | 
| 47 | 
            +
                  # On shared runner running coreos, we need to add privileged in driver
         | 
| 48 | 
            +
                  # for centos and debian images. This may change in the future
         | 
| 49 | 
            +
                - 'if uname -r | grep "coreos" > /dev/null; then
         | 
| 50 | 
            +
                   sed -i "/^driver:/a\\ \\ privileged: true" .kitchen.yml; fi'
         | 
| 51 | 
            +
              script:
         | 
| 52 | 
            +
                - >
         | 
| 53 | 
            +
                  imgs="$(bundle exec kitchen diagnose | grep '^      image:' | \
         | 
| 54 | 
            +
                        cut -d':' -f2 | uniq)";
         | 
| 55 | 
            +
                  for image in $imgs; do docker pull $image; done
         | 
| 56 | 
            +
                - bundle exec kitchen test -c -d always
         | 
    
        data/.kitchen.yml
    ADDED
    
    | @@ -0,0 +1,125 @@ | |
| 1 | 
            +
            #
         | 
| 2 | 
            +
            # Copyright (c) 2018 Make.org
         | 
| 3 | 
            +
            #
         | 
| 4 | 
            +
            # Licensed under the Apache License, Version 2.0 (the "License");
         | 
| 5 | 
            +
            # you may not use this file except in compliance with the License.
         | 
| 6 | 
            +
            # You may obtain a copy of the License at
         | 
| 7 | 
            +
            #
         | 
| 8 | 
            +
            #     http://www.apache.org/licenses/LICENSE-2.0
         | 
| 9 | 
            +
            #
         | 
| 10 | 
            +
            # Unless required by applicable law or agreed to in writing, software
         | 
| 11 | 
            +
            # distributed under the License is distributed on an "AS IS" BASIS,
         | 
| 12 | 
            +
            # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
         | 
| 13 | 
            +
            # See the License for the specific language governing permissions and
         | 
| 14 | 
            +
            # limitations under the License.
         | 
| 15 | 
            +
            #
         | 
| 16 | 
            +
            ---
         | 
| 17 | 
            +
            # Customize Kitchen with some monkey patching:
         | 
| 18 | 
            +
            # - Suites scheduler
         | 
| 19 | 
            +
            #   <% load "#{File.dirname(__FILE__)}/test/kitchen_command.rb" %>
         | 
| 20 | 
            +
            # - Interpreting ruby files as data bag
         | 
| 21 | 
            +
            #   <% load "#{File.dirname(__FILE__)}/test/kitchen_sandbox_databag.rb" %>
         | 
| 22 | 
            +
            # - Create kitchen network if missing
         | 
| 23 | 
            +
            #   <% net_test = '! docker network ls | grep "kitchen" >/dev/null 2>&1' %>
         | 
| 24 | 
            +
            #   <% net_create = 'docker network create --driver bridge kitchen' %>
         | 
| 25 | 
            +
            #   <% `if #{net_test}; then #{net_create}; fi` %>
         | 
| 26 | 
            +
            # - Prepare files directory (build gem and put it with Dockerfile in files)
         | 
| 27 | 
            +
            #   <% `rake kitchen` %>
         | 
| 28 | 
            +
             | 
| 29 | 
            +
            driver:
         | 
| 30 | 
            +
              name: docker_cli
         | 
| 31 | 
            +
              http_proxy:
         | 
| 32 | 
            +
              volume:
         | 
| 33 | 
            +
                - /sys/fs/cgroup:/sys/fs/cgroup:ro
         | 
| 34 | 
            +
              command: /sbin/init
         | 
| 35 | 
            +
              network: kitchen
         | 
| 36 | 
            +
              security_opt: seccomp=unconfined
         | 
| 37 | 
            +
              skip_preparation: true
         | 
| 38 | 
            +
              instance_host_name: true
         | 
| 39 | 
            +
              instance_container_name: true
         | 
| 40 | 
            +
              build_pull: true
         | 
| 41 | 
            +
             | 
| 42 | 
            +
            transport:
         | 
| 43 | 
            +
              name: docker_cli
         | 
| 44 | 
            +
             | 
| 45 | 
            +
            provisioner:
         | 
| 46 | 
            +
              name: chef_zero
         | 
| 47 | 
            +
              always_update_cookbooks: true
         | 
| 48 | 
            +
              data_bags_path: test/integration/data_bags
         | 
| 49 | 
            +
              encrypted_data_bag_secret_key_path: test/integration/secret_key
         | 
| 50 | 
            +
              no_proxy: localhost
         | 
| 51 | 
            +
             | 
| 52 | 
            +
            platforms:
         | 
| 53 | 
            +
              - name: centos-7
         | 
| 54 | 
            +
                driver:
         | 
| 55 | 
            +
                  image: sbernard/centos-systemd-kitchen
         | 
| 56 | 
            +
             | 
| 57 | 
            +
            suites:
         | 
| 58 | 
            +
              # Install a stand-alone consul
         | 
| 59 | 
            +
              - name: comap-consul
         | 
| 60 | 
            +
                run_list:
         | 
| 61 | 
            +
                  - recipe[consul-platform]
         | 
| 62 | 
            +
                attributes:
         | 
| 63 | 
            +
                  consul-platform:
         | 
| 64 | 
            +
                    hosts: comap-consul-centos-7
         | 
| 65 | 
            +
                    config:
         | 
| 66 | 
            +
                      consul.json:
         | 
| 67 | 
            +
                        bind_addr: '0.0.0.0'
         | 
| 68 | 
            +
                        client_addr: '0.0.0.0'
         | 
| 69 | 
            +
                        disable_host_node_id: true
         | 
| 70 | 
            +
                    package_retries: 1
         | 
| 71 | 
            +
             | 
| 72 | 
            +
              - name: comap-swarm-manager
         | 
| 73 | 
            +
                driver:
         | 
| 74 | 
            +
                  privileged: true
         | 
| 75 | 
            +
                  volume:
         | 
| 76 | 
            +
                    - /sys/fs/cgroup:/sys/fs/cgroup:ro
         | 
| 77 | 
            +
                    - /lib/modules:/lib/modules:ro
         | 
| 78 | 
            +
                run_list:
         | 
| 79 | 
            +
                  - recipe[docker-platform]
         | 
| 80 | 
            +
                  - recipe[comap-test::build_comap]
         | 
| 81 | 
            +
                  - recipe[comap-test::launch_comap]
         | 
| 82 | 
            +
                attributes:
         | 
| 83 | 
            +
                  docker-platform:
         | 
| 84 | 
            +
                    config:
         | 
| 85 | 
            +
                      storage-driver: vfs
         | 
| 86 | 
            +
                    data_bag:
         | 
| 87 | 
            +
                      item: docker-platform-kitchen
         | 
| 88 | 
            +
                    swarm:
         | 
| 89 | 
            +
                      enabled?: true
         | 
| 90 | 
            +
                      hosts: comap-swarm-manager-centos-7
         | 
| 91 | 
            +
                      consul:
         | 
| 92 | 
            +
                        hosts: comap-consul-centos-7
         | 
| 93 | 
            +
                      join_opts:
         | 
| 94 | 
            +
                        listen_addr: '0.0.0.0:2377'
         | 
| 95 | 
            +
                        availability: 'drain'
         | 
| 96 | 
            +
                    docker_network:
         | 
| 97 | 
            +
                      kitchen:
         | 
| 98 | 
            +
                        driver: overlay
         | 
| 99 | 
            +
                        action: create
         | 
| 100 | 
            +
                    package_retries: 1
         | 
| 101 | 
            +
             | 
| 102 | 
            +
              - name: comap-swarm-worker
         | 
| 103 | 
            +
                driver:
         | 
| 104 | 
            +
                  privileged: true
         | 
| 105 | 
            +
                  volume:
         | 
| 106 | 
            +
                    - /sys/fs/cgroup:/sys/fs/cgroup:ro
         | 
| 107 | 
            +
                    - /lib/modules:/lib/modules:ro
         | 
| 108 | 
            +
                run_list:
         | 
| 109 | 
            +
                  - recipe[docker-platform]
         | 
| 110 | 
            +
                  - recipe[comap-test::build_comap]
         | 
| 111 | 
            +
                attributes:
         | 
| 112 | 
            +
                  docker-platform:
         | 
| 113 | 
            +
                    config:
         | 
| 114 | 
            +
                      storage-driver: vfs
         | 
| 115 | 
            +
                    data_bag:
         | 
| 116 | 
            +
                      item: docker-platform-kitchen
         | 
| 117 | 
            +
                    swarm:
         | 
| 118 | 
            +
                      enabled?: true
         | 
| 119 | 
            +
                      hosts: comap-swarm-manager-centos-7
         | 
| 120 | 
            +
                      consul:
         | 
| 121 | 
            +
                        hosts: comap-consul-centos-7
         | 
| 122 | 
            +
                      join_opts:
         | 
| 123 | 
            +
                        listen_addr: '0.0.0.0:2377'
         | 
| 124 | 
            +
                        availability: 'active'
         | 
| 125 | 
            +
                    package_retries: 1
         | 
    
        data/.rspec
    ADDED
    
    
    
        data/.ruby-version
    ADDED
    
    | @@ -0,0 +1 @@ | |
| 1 | 
            +
            2.5
         | 
    
        data/.travis.yml
    ADDED
    
    
    
        data/Berksfile
    ADDED
    
    
    
        data/CONTRIBUTING.md
    ADDED
    
    | @@ -0,0 +1,62 @@ | |
| 1 | 
            +
            Contributing
         | 
| 2 | 
            +
            ------------
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            You are more than welcome to submit issues and merge requests to this project.
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            ### Foodcritic, Rubocop and Tests
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            Your commits must not break any tests, foodcritic nor rubocop.
         | 
| 9 | 
            +
             | 
| 10 | 
            +
            ### Commits format
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            Your commits must pass `git log --check` and messages should be formatted
         | 
| 13 | 
            +
            like this (read
         | 
| 14 | 
            +
            [post](http://karma-runner.github.io/1.0/dev/git-commit-msg.html)
         | 
| 15 | 
            +
            for details):
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            ```
         | 
| 18 | 
            +
            type(scope): subject, all in 50 characters or less
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            body: Provide more detail after the first line. Leave one blank line
         | 
| 21 | 
            +
            below the summary and wrap all lines at 72 characters or less.
         | 
| 22 | 
            +
             | 
| 23 | 
            +
            Uses the imperative, present tense: “change” not “changed” nor
         | 
| 24 | 
            +
            "changes". Includes motivation for the change and contrasts with
         | 
| 25 | 
            +
            previous behavior.
         | 
| 26 | 
            +
             | 
| 27 | 
            +
            If the change fixes an issue, leave another blank line after the final
         | 
| 28 | 
            +
            paragraph and indicate which issue is fixed in the specific format
         | 
| 29 | 
            +
            below.
         | 
| 30 | 
            +
             | 
| 31 | 
            +
            Fix #42
         | 
| 32 | 
            +
            ```
         | 
| 33 | 
            +
             | 
| 34 | 
            +
            Allowed <type> values:
         | 
| 35 | 
            +
             | 
| 36 | 
            +
            - feat (new feature for the user, not a new feature for build script)
         | 
| 37 | 
            +
            - fix (bug fix for the user, not a fix to a build script)
         | 
| 38 | 
            +
            - docs (changes to the documentation)
         | 
| 39 | 
            +
            - style (formatting, missing semi colons, etc; no production code change)
         | 
| 40 | 
            +
            - refactor (refactoring production code, eg. renaming a variable)
         | 
| 41 | 
            +
            - test (adding missing tests, refactoring tests; no production code change)
         | 
| 42 | 
            +
            - chore (updating grunt tasks etc; no production code change)
         | 
| 43 | 
            +
             | 
| 44 | 
            +
            Example <scope> values:
         | 
| 45 | 
            +
             | 
| 46 | 
            +
            - recipe name (like config, install, etc.)
         | 
| 47 | 
            +
            - rubocop, foodcritic, kitchen (when dealing with specific tool)
         | 
| 48 | 
            +
            - etc.
         | 
| 49 | 
            +
             | 
| 50 | 
            +
            The <scope> can be empty (e.g. if the change is a global or difficult to assign
         | 
| 51 | 
            +
            to a single component), in which case the parentheses are omitted.
         | 
| 52 | 
            +
             | 
| 53 | 
            +
            Also do your best to factor commits appropriately, ie not too large with
         | 
| 54 | 
            +
            unrelated things in the same commit, and not too small with the same small
         | 
| 55 | 
            +
            change applied N times in N different commits. If there was some accidental
         | 
| 56 | 
            +
            reformatting or whitespace changes during the course of your commits, please
         | 
| 57 | 
            +
            rebase them away before submitting the MR.
         | 
| 58 | 
            +
             | 
| 59 | 
            +
            ### Files
         | 
| 60 | 
            +
             | 
| 61 | 
            +
            All files must be 80 columns width formatted (actually 79), exception only
         | 
| 62 | 
            +
            when it is really not possible.
         | 
    
        data/Dockerfile
    ADDED
    
    | @@ -0,0 +1,15 @@ | |
| 1 | 
            +
            FROM ruby:2.5.0-alpine
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            RUN apk update && \
         | 
| 4 | 
            +
                apk upgrade && \
         | 
| 5 | 
            +
                apk add build-base git && \
         | 
| 6 | 
            +
                rm -rf /var/cache/apk/*
         | 
| 7 | 
            +
             | 
| 8 | 
            +
            RUN mkdir /usr/app
         | 
| 9 | 
            +
            WORKDIR /usr/app
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            COPY ./pkg/comap*.gem /usr/app/comap.gem
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            RUN gem install comap.gem
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            ENTRYPOINT ["/usr/local/bundle/bin/comap"]
         | 
    
        data/Gemfile
    ADDED
    
    
    
        data/Gemfile.lock
    ADDED
    
    | @@ -0,0 +1,327 @@ | |
| 1 | 
            +
            PATH
         | 
| 2 | 
            +
              remote: .
         | 
| 3 | 
            +
              specs:
         | 
| 4 | 
            +
                comap (1.0.0.pre.pre)
         | 
| 5 | 
            +
                  faraday (~> 0.13)
         | 
| 6 | 
            +
                  json (~> 2.0)
         | 
| 7 | 
            +
                  thin (~> 1.7)
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            GEM
         | 
| 10 | 
            +
              remote: https://rubygems.org/
         | 
| 11 | 
            +
              specs:
         | 
| 12 | 
            +
                addressable (2.5.2)
         | 
| 13 | 
            +
                  public_suffix (>= 2.0.2, < 4.0)
         | 
| 14 | 
            +
                ast (2.4.0)
         | 
| 15 | 
            +
                backports (3.11.1)
         | 
| 16 | 
            +
                berkshelf (6.3.1)
         | 
| 17 | 
            +
                  buff-config (~> 2.0)
         | 
| 18 | 
            +
                  buff-extensions (~> 2.0)
         | 
| 19 | 
            +
                  chef (>= 12.7.2)
         | 
| 20 | 
            +
                  cleanroom (~> 1.0)
         | 
| 21 | 
            +
                  concurrent-ruby (~> 1.0)
         | 
| 22 | 
            +
                  faraday (~> 0.9)
         | 
| 23 | 
            +
                  httpclient (~> 2.7)
         | 
| 24 | 
            +
                  minitar (~> 0.5, >= 0.5.4)
         | 
| 25 | 
            +
                  mixlib-archive (~> 0.4)
         | 
| 26 | 
            +
                  mixlib-shellout (~> 2.0)
         | 
| 27 | 
            +
                  octokit (~> 4.0)
         | 
| 28 | 
            +
                  retryable (~> 2.0)
         | 
| 29 | 
            +
                  ridley (~> 5.0)
         | 
| 30 | 
            +
                  solve (~> 4.0)
         | 
| 31 | 
            +
                  thor (~> 0.19, < 0.19.2)
         | 
| 32 | 
            +
                buff-config (2.0.0)
         | 
| 33 | 
            +
                  buff-extensions (~> 2.0)
         | 
| 34 | 
            +
                  varia_model (~> 0.6)
         | 
| 35 | 
            +
                buff-extensions (2.0.0)
         | 
| 36 | 
            +
                buff-ignore (1.2.0)
         | 
| 37 | 
            +
                buff-ruby_engine (1.0.0)
         | 
| 38 | 
            +
                buff-shell_out (1.1.0)
         | 
| 39 | 
            +
                  buff-ruby_engine (~> 1.0)
         | 
| 40 | 
            +
                builder (3.2.3)
         | 
| 41 | 
            +
                celluloid (0.16.0)
         | 
| 42 | 
            +
                  timers (~> 4.0.0)
         | 
| 43 | 
            +
                celluloid-io (0.16.2)
         | 
| 44 | 
            +
                  celluloid (>= 0.16.0)
         | 
| 45 | 
            +
                  nio4r (>= 1.1.0)
         | 
| 46 | 
            +
                chef (13.7.16)
         | 
| 47 | 
            +
                  addressable
         | 
| 48 | 
            +
                  bundler (>= 1.10)
         | 
| 49 | 
            +
                  chef-config (= 13.7.16)
         | 
| 50 | 
            +
                  chef-zero (>= 13.0)
         | 
| 51 | 
            +
                  diff-lcs (~> 1.2, >= 1.2.4)
         | 
| 52 | 
            +
                  erubis (~> 2.7)
         | 
| 53 | 
            +
                  ffi-yajl (~> 2.2)
         | 
| 54 | 
            +
                  highline (~> 1.6, >= 1.6.9)
         | 
| 55 | 
            +
                  iniparse (~> 1.4)
         | 
| 56 | 
            +
                  iso8601 (~> 0.9.1)
         | 
| 57 | 
            +
                  mixlib-archive (~> 0.4)
         | 
| 58 | 
            +
                  mixlib-authentication (~> 1.4)
         | 
| 59 | 
            +
                  mixlib-cli (~> 1.7)
         | 
| 60 | 
            +
                  mixlib-log (~> 1.3)
         | 
| 61 | 
            +
                  mixlib-shellout (~> 2.0)
         | 
| 62 | 
            +
                  net-sftp (~> 2.1, >= 2.1.2)
         | 
| 63 | 
            +
                  net-ssh (>= 2.9, < 5.0)
         | 
| 64 | 
            +
                  net-ssh-multi (~> 1.2, >= 1.2.1)
         | 
| 65 | 
            +
                  ohai (~> 13.0)
         | 
| 66 | 
            +
                  plist (~> 3.2)
         | 
| 67 | 
            +
                  proxifier (~> 1.0)
         | 
| 68 | 
            +
                  rspec-core (~> 3.5)
         | 
| 69 | 
            +
                  rspec-expectations (~> 3.5)
         | 
| 70 | 
            +
                  rspec-mocks (~> 3.5)
         | 
| 71 | 
            +
                  rspec_junit_formatter (~> 0.2.0)
         | 
| 72 | 
            +
                  serverspec (~> 2.7)
         | 
| 73 | 
            +
                  specinfra (~> 2.10)
         | 
| 74 | 
            +
                  syslog-logger (~> 1.6)
         | 
| 75 | 
            +
                  uuidtools (~> 2.1.5)
         | 
| 76 | 
            +
                chef-config (13.7.16)
         | 
| 77 | 
            +
                  addressable
         | 
| 78 | 
            +
                  fuzzyurl
         | 
| 79 | 
            +
                  mixlib-config (~> 2.0)
         | 
| 80 | 
            +
                  mixlib-shellout (~> 2.0)
         | 
| 81 | 
            +
                  tomlrb (~> 1.2)
         | 
| 82 | 
            +
                chef-zero (13.1.0)
         | 
| 83 | 
            +
                  ffi-yajl (~> 2.2)
         | 
| 84 | 
            +
                  hashie (>= 2.0, < 4.0)
         | 
| 85 | 
            +
                  mixlib-log (~> 1.3)
         | 
| 86 | 
            +
                  rack (~> 2.0)
         | 
| 87 | 
            +
                  uuidtools (~> 2.1)
         | 
| 88 | 
            +
                cleanroom (1.0.0)
         | 
| 89 | 
            +
                concurrent-ruby (1.0.5)
         | 
| 90 | 
            +
                crack (0.4.3)
         | 
| 91 | 
            +
                  safe_yaml (~> 1.0.0)
         | 
| 92 | 
            +
                cucumber-core (3.1.0)
         | 
| 93 | 
            +
                  backports (>= 3.8.0)
         | 
| 94 | 
            +
                  cucumber-tag_expressions (~> 1.1.0)
         | 
| 95 | 
            +
                  gherkin (>= 5.0.0)
         | 
| 96 | 
            +
                cucumber-tag_expressions (1.1.1)
         | 
| 97 | 
            +
                daemons (1.2.6)
         | 
| 98 | 
            +
                diff-lcs (1.3)
         | 
| 99 | 
            +
                erubis (2.7.0)
         | 
| 100 | 
            +
                eventmachine (1.2.5)
         | 
| 101 | 
            +
                faraday (0.14.0)
         | 
| 102 | 
            +
                  multipart-post (>= 1.2, < 3)
         | 
| 103 | 
            +
                ffi (1.9.18)
         | 
| 104 | 
            +
                ffi-yajl (2.3.1)
         | 
| 105 | 
            +
                  libyajl2 (~> 1.2)
         | 
| 106 | 
            +
                foodcritic (12.3.0)
         | 
| 107 | 
            +
                  cucumber-core (>= 1.3)
         | 
| 108 | 
            +
                  erubis
         | 
| 109 | 
            +
                  ffi-yajl (~> 2.0)
         | 
| 110 | 
            +
                  nokogiri (>= 1.5, < 2.0)
         | 
| 111 | 
            +
                  rake
         | 
| 112 | 
            +
                  rufus-lru (~> 1.0)
         | 
| 113 | 
            +
                  treetop (~> 1.4)
         | 
| 114 | 
            +
                fuzzyurl (0.9.0)
         | 
| 115 | 
            +
                gherkin (5.0.0)
         | 
| 116 | 
            +
                gssapi (1.2.0)
         | 
| 117 | 
            +
                  ffi (>= 1.0.1)
         | 
| 118 | 
            +
                gyoku (1.3.1)
         | 
| 119 | 
            +
                  builder (>= 2.1.2)
         | 
| 120 | 
            +
                hashdiff (0.3.7)
         | 
| 121 | 
            +
                hashie (3.5.7)
         | 
| 122 | 
            +
                highline (1.7.10)
         | 
| 123 | 
            +
                hitimes (1.2.6)
         | 
| 124 | 
            +
                httpclient (2.8.3)
         | 
| 125 | 
            +
                iniparse (1.4.4)
         | 
| 126 | 
            +
                ipaddress (0.8.3)
         | 
| 127 | 
            +
                iso8601 (0.9.1)
         | 
| 128 | 
            +
                json (2.1.0)
         | 
| 129 | 
            +
                kitchen-docker_cli (0.18.0)
         | 
| 130 | 
            +
                  test-kitchen (>= 1.3)
         | 
| 131 | 
            +
                libyajl2 (1.2.0)
         | 
| 132 | 
            +
                little-plugger (1.1.4)
         | 
| 133 | 
            +
                logging (2.2.2)
         | 
| 134 | 
            +
                  little-plugger (~> 1.1)
         | 
| 135 | 
            +
                  multi_json (~> 1.10)
         | 
| 136 | 
            +
                mini_portile2 (2.3.0)
         | 
| 137 | 
            +
                minitar (0.6.1)
         | 
| 138 | 
            +
                mixlib-archive (0.4.1)
         | 
| 139 | 
            +
                  mixlib-log
         | 
| 140 | 
            +
                mixlib-authentication (1.4.2)
         | 
| 141 | 
            +
                mixlib-cli (1.7.0)
         | 
| 142 | 
            +
                mixlib-config (2.2.4)
         | 
| 143 | 
            +
                mixlib-install (3.9.0)
         | 
| 144 | 
            +
                  mixlib-shellout
         | 
| 145 | 
            +
                  mixlib-versioning
         | 
| 146 | 
            +
                  thor
         | 
| 147 | 
            +
                mixlib-log (1.7.1)
         | 
| 148 | 
            +
                mixlib-shellout (2.3.2)
         | 
| 149 | 
            +
                mixlib-versioning (1.2.2)
         | 
| 150 | 
            +
                molinillo (0.6.4)
         | 
| 151 | 
            +
                multi_json (1.13.1)
         | 
| 152 | 
            +
                multipart-post (2.0.0)
         | 
| 153 | 
            +
                net-scp (1.2.1)
         | 
| 154 | 
            +
                  net-ssh (>= 2.6.5)
         | 
| 155 | 
            +
                net-sftp (2.1.2)
         | 
| 156 | 
            +
                  net-ssh (>= 2.6.5)
         | 
| 157 | 
            +
                net-ssh (4.2.0)
         | 
| 158 | 
            +
                net-ssh-gateway (1.3.0)
         | 
| 159 | 
            +
                  net-ssh (>= 2.6.5)
         | 
| 160 | 
            +
                net-ssh-multi (1.2.1)
         | 
| 161 | 
            +
                  net-ssh (>= 2.6.5)
         | 
| 162 | 
            +
                  net-ssh-gateway (>= 1.2.0)
         | 
| 163 | 
            +
                net-telnet (0.1.1)
         | 
| 164 | 
            +
                nio4r (2.2.0)
         | 
| 165 | 
            +
                nokogiri (1.8.2)
         | 
| 166 | 
            +
                  mini_portile2 (~> 2.3.0)
         | 
| 167 | 
            +
                nori (2.6.0)
         | 
| 168 | 
            +
                octokit (4.8.0)
         | 
| 169 | 
            +
                  sawyer (~> 0.8.0, >= 0.5.3)
         | 
| 170 | 
            +
                ohai (13.7.1)
         | 
| 171 | 
            +
                  chef-config (>= 12.5.0.alpha.1, < 14)
         | 
| 172 | 
            +
                  ffi (~> 1.9)
         | 
| 173 | 
            +
                  ffi-yajl (~> 2.2)
         | 
| 174 | 
            +
                  ipaddress
         | 
| 175 | 
            +
                  mixlib-cli
         | 
| 176 | 
            +
                  mixlib-config (~> 2.0)
         | 
| 177 | 
            +
                  mixlib-log (>= 1.7.1, < 2.0)
         | 
| 178 | 
            +
                  mixlib-shellout (~> 2.0)
         | 
| 179 | 
            +
                  plist (~> 3.1)
         | 
| 180 | 
            +
                  systemu (~> 2.6.4)
         | 
| 181 | 
            +
                  wmi-lite (~> 1.0)
         | 
| 182 | 
            +
                parallel (1.12.1)
         | 
| 183 | 
            +
                parser (2.4.0.2)
         | 
| 184 | 
            +
                  ast (~> 2.3)
         | 
| 185 | 
            +
                plist (3.4.0)
         | 
| 186 | 
            +
                polyglot (0.3.5)
         | 
| 187 | 
            +
                powerpack (0.1.1)
         | 
| 188 | 
            +
                proxifier (1.0.3)
         | 
| 189 | 
            +
                public_suffix (3.0.1)
         | 
| 190 | 
            +
                rack (2.0.3)
         | 
| 191 | 
            +
                rainbow (3.0.0)
         | 
| 192 | 
            +
                rake (12.3.0)
         | 
| 193 | 
            +
                retryable (2.0.4)
         | 
| 194 | 
            +
                ridley (5.1.1)
         | 
| 195 | 
            +
                  addressable
         | 
| 196 | 
            +
                  buff-config (~> 2.0)
         | 
| 197 | 
            +
                  buff-extensions (~> 2.0)
         | 
| 198 | 
            +
                  buff-ignore (~> 1.2)
         | 
| 199 | 
            +
                  buff-shell_out (~> 1.0)
         | 
| 200 | 
            +
                  celluloid (~> 0.16.0)
         | 
| 201 | 
            +
                  celluloid-io (~> 0.16.1)
         | 
| 202 | 
            +
                  chef-config (>= 12.5.0)
         | 
| 203 | 
            +
                  erubis
         | 
| 204 | 
            +
                  faraday (~> 0.9)
         | 
| 205 | 
            +
                  hashie (>= 2.0.2, < 4.0.0)
         | 
| 206 | 
            +
                  httpclient (~> 2.7)
         | 
| 207 | 
            +
                  json (>= 1.7.7)
         | 
| 208 | 
            +
                  mixlib-authentication (>= 1.3.0)
         | 
| 209 | 
            +
                  retryable (~> 2.0)
         | 
| 210 | 
            +
                  semverse (~> 2.0)
         | 
| 211 | 
            +
                  varia_model (~> 0.6)
         | 
| 212 | 
            +
                rspec (3.7.0)
         | 
| 213 | 
            +
                  rspec-core (~> 3.7.0)
         | 
| 214 | 
            +
                  rspec-expectations (~> 3.7.0)
         | 
| 215 | 
            +
                  rspec-mocks (~> 3.7.0)
         | 
| 216 | 
            +
                rspec-core (3.7.1)
         | 
| 217 | 
            +
                  rspec-support (~> 3.7.0)
         | 
| 218 | 
            +
                rspec-expectations (3.7.0)
         | 
| 219 | 
            +
                  diff-lcs (>= 1.2.0, < 2.0)
         | 
| 220 | 
            +
                  rspec-support (~> 3.7.0)
         | 
| 221 | 
            +
                rspec-its (1.2.0)
         | 
| 222 | 
            +
                  rspec-core (>= 3.0.0)
         | 
| 223 | 
            +
                  rspec-expectations (>= 3.0.0)
         | 
| 224 | 
            +
                rspec-mocks (3.7.0)
         | 
| 225 | 
            +
                  diff-lcs (>= 1.2.0, < 2.0)
         | 
| 226 | 
            +
                  rspec-support (~> 3.7.0)
         | 
| 227 | 
            +
                rspec-support (3.7.0)
         | 
| 228 | 
            +
                rspec_junit_formatter (0.2.3)
         | 
| 229 | 
            +
                  builder (< 4)
         | 
| 230 | 
            +
                  rspec-core (>= 2, < 4, != 2.12.0)
         | 
| 231 | 
            +
                rubocop (0.52.1)
         | 
| 232 | 
            +
                  parallel (~> 1.10)
         | 
| 233 | 
            +
                  parser (>= 2.4.0.2, < 3.0)
         | 
| 234 | 
            +
                  powerpack (~> 0.1)
         | 
| 235 | 
            +
                  rainbow (>= 2.2.2, < 4.0)
         | 
| 236 | 
            +
                  ruby-progressbar (~> 1.7)
         | 
| 237 | 
            +
                  unicode-display_width (~> 1.0, >= 1.0.1)
         | 
| 238 | 
            +
                ruby-progressbar (1.9.0)
         | 
| 239 | 
            +
                rubyntlm (0.6.2)
         | 
| 240 | 
            +
                rubyzip (1.2.1)
         | 
| 241 | 
            +
                rufus-lru (1.1.0)
         | 
| 242 | 
            +
                safe_yaml (1.0.4)
         | 
| 243 | 
            +
                sawyer (0.8.1)
         | 
| 244 | 
            +
                  addressable (>= 2.3.5, < 2.6)
         | 
| 245 | 
            +
                  faraday (~> 0.8, < 1.0)
         | 
| 246 | 
            +
                semverse (2.0.0)
         | 
| 247 | 
            +
                serverspec (2.41.3)
         | 
| 248 | 
            +
                  multi_json
         | 
| 249 | 
            +
                  rspec (~> 3.0)
         | 
| 250 | 
            +
                  rspec-its
         | 
| 251 | 
            +
                  specinfra (~> 2.72)
         | 
| 252 | 
            +
                sfl (2.3)
         | 
| 253 | 
            +
                solve (4.0.0)
         | 
| 254 | 
            +
                  molinillo (~> 0.6)
         | 
| 255 | 
            +
                  semverse (>= 1.1, < 3.0)
         | 
| 256 | 
            +
                specinfra (2.73.1)
         | 
| 257 | 
            +
                  net-scp
         | 
| 258 | 
            +
                  net-ssh (>= 2.7, < 5.0)
         | 
| 259 | 
            +
                  net-telnet
         | 
| 260 | 
            +
                  sfl
         | 
| 261 | 
            +
                syslog-logger (1.6.8)
         | 
| 262 | 
            +
                systemu (2.6.5)
         | 
| 263 | 
            +
                test-kitchen (1.20.0)
         | 
| 264 | 
            +
                  mixlib-install (~> 3.6)
         | 
| 265 | 
            +
                  mixlib-shellout (>= 1.2, < 3.0)
         | 
| 266 | 
            +
                  net-scp (~> 1.1)
         | 
| 267 | 
            +
                  net-ssh (>= 2.9, < 5.0)
         | 
| 268 | 
            +
                  net-ssh-gateway (~> 1.2)
         | 
| 269 | 
            +
                  thor (~> 0.19, < 0.19.2)
         | 
| 270 | 
            +
                  winrm (~> 2.0)
         | 
| 271 | 
            +
                  winrm-elevated (~> 1.0)
         | 
| 272 | 
            +
                  winrm-fs (~> 1.1.0)
         | 
| 273 | 
            +
                thin (1.7.2)
         | 
| 274 | 
            +
                  daemons (~> 1.0, >= 1.0.9)
         | 
| 275 | 
            +
                  eventmachine (~> 1.0, >= 1.0.4)
         | 
| 276 | 
            +
                  rack (>= 1, < 3)
         | 
| 277 | 
            +
                thor (0.19.1)
         | 
| 278 | 
            +
                timers (4.0.4)
         | 
| 279 | 
            +
                  hitimes
         | 
| 280 | 
            +
                tomlrb (1.2.6)
         | 
| 281 | 
            +
                treetop (1.6.9)
         | 
| 282 | 
            +
                  polyglot (~> 0.3)
         | 
| 283 | 
            +
                unicode-display_width (1.3.0)
         | 
| 284 | 
            +
                uuidtools (2.1.5)
         | 
| 285 | 
            +
                varia_model (0.6.0)
         | 
| 286 | 
            +
                  buff-extensions (~> 2.0)
         | 
| 287 | 
            +
                  hashie (>= 2.0.2, < 4.0.0)
         | 
| 288 | 
            +
                webmock (2.3.2)
         | 
| 289 | 
            +
                  addressable (>= 2.3.6)
         | 
| 290 | 
            +
                  crack (>= 0.3.2)
         | 
| 291 | 
            +
                  hashdiff
         | 
| 292 | 
            +
                winrm (2.2.3)
         | 
| 293 | 
            +
                  builder (>= 2.1.2)
         | 
| 294 | 
            +
                  erubis (~> 2.7)
         | 
| 295 | 
            +
                  gssapi (~> 1.2)
         | 
| 296 | 
            +
                  gyoku (~> 1.0)
         | 
| 297 | 
            +
                  httpclient (~> 2.2, >= 2.2.0.2)
         | 
| 298 | 
            +
                  logging (>= 1.6.1, < 3.0)
         | 
| 299 | 
            +
                  nori (~> 2.0)
         | 
| 300 | 
            +
                  rubyntlm (~> 0.6.0, >= 0.6.1)
         | 
| 301 | 
            +
                winrm-elevated (1.1.0)
         | 
| 302 | 
            +
                  winrm (~> 2.0)
         | 
| 303 | 
            +
                  winrm-fs (~> 1.0)
         | 
| 304 | 
            +
                winrm-fs (1.1.1)
         | 
| 305 | 
            +
                  erubis (~> 2.7)
         | 
| 306 | 
            +
                  logging (>= 1.6.1, < 3.0)
         | 
| 307 | 
            +
                  rubyzip (~> 1.1)
         | 
| 308 | 
            +
                  winrm (~> 2.0)
         | 
| 309 | 
            +
                wmi-lite (1.0.0)
         | 
| 310 | 
            +
             | 
| 311 | 
            +
            PLATFORMS
         | 
| 312 | 
            +
              ruby
         | 
| 313 | 
            +
             | 
| 314 | 
            +
            DEPENDENCIES
         | 
| 315 | 
            +
              berkshelf
         | 
| 316 | 
            +
              bundler (~> 1.16)
         | 
| 317 | 
            +
              comap!
         | 
| 318 | 
            +
              foodcritic
         | 
| 319 | 
            +
              kitchen-docker_cli
         | 
| 320 | 
            +
              rake (~> 12.2)
         | 
| 321 | 
            +
              rspec (~> 3)
         | 
| 322 | 
            +
              rubocop (~> 0.51)
         | 
| 323 | 
            +
              test-kitchen
         | 
| 324 | 
            +
              webmock (~> 2.0)
         | 
| 325 | 
            +
             | 
| 326 | 
            +
            BUNDLED WITH
         | 
| 327 | 
            +
               1.16.1
         |