Sha256: 69c28e3e2816190fa5fd35269464aeb4840a0528388126406aa4d8c51521f7a2

Contents?: true

Size: 933 Bytes

Versions: 1

Compression:

Stored size: 933 Bytes

Contents

lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "chef-bin/version"

Gem::Specification.new do |spec|
  spec.name          = "chef-bin"
  spec.version       = ChefBin::VERSION
  spec.authors       = ["Adam Jacob"]
  spec.email         = ["adam@chef.io"]

  spec.summary       = %q{Chef-branded binstubs for chef-client}
  spec.homepage      = "https://github.com/chef/chef"
  spec.license       = "Apache-2.0"

  spec.require_paths = ["lib"]

  spec.add_dependency "chef", "= #{ChefBin::VERSION}"
  spec.add_development_dependency "rake"

  spec.files = %w{Gemfile Rakefile LICENSE} + Dir.glob("*.gemspec") +
    Dir.glob("{lib}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }

  spec.bindir = "bin"
  spec.executables = %w{ chef-apply chef-client chef-resource-inspector chef-service-manager chef-shell chef-solo chef-windows-service }
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
chef-bin-18.0.172 chef-bin.gemspec