Sha256: fbff451129f5bd4488e9ca11ab35a0a2227830ce45d9a7fb9f9c0c379cf39695

Contents?: true

Size: 926 Bytes

Versions: 7

Compression:

Stored size: 926 Bytes

Contents

#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

begin
  require 'docker'

  # Override API_VERSION constant in docker-api gem to use version 1.24 of the Docker API
  # This override is for the docker-api gem to communicate to the Docker engine on Windows
  module Docker
    VERSION = '0.0.0'
    API_VERSION = '1.24'
  end
rescue LoadError => e
  logger.debug("[Docker] docker-api gem not found for InSpec verifier. #{e}")
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
kitchen-docker-2.15.0 lib/docker/version.rb
kitchen-docker-3.0.0 lib/docker/version.rb
kitchen-docker-2.14.0 lib/docker/version.rb
kitchen-docker-2.13.0 lib/docker/version.rb
kitchen-docker-2.12.0 lib/docker/version.rb
kitchen-docker-2.11.0 lib/docker/version.rb
kitchen-docker-2.10.0 lib/docker/version.rb