Sha256: 4d7d85a1a6a33a9c941b3b185cfc713d866363bff85dfa5612d8103e2ad6a657

Contents?: true

Size: 1.67 KB

Versions: 1

Compression:

Stored size: 1.67 KB

Contents

#
# Copyright 2016, Noah Kantrowitz
#
# 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.
#

$:.unshift(File.dirname(__FILE__) + '/lib')
require 'knife-count/version'

Gem::Specification.new do |spec|
  spec.name = 'knife-count'
  spec.version = KnifeCount::VERSION
  spec.authors = ['Noah Kantrowitz']
  spec.email = %w{noah@coderanger.net}
  spec.description = 'A knife plugin to quickly display the number of nodes in a Chef search query.'
  spec.summary = spec.description
  spec.homepage = 'https://github.com/coderanger/knife-count'
  spec.license = 'Apache 2.0'

  spec.files = `git ls-files`.split($/)
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = %w{lib}

  spec.add_dependency 'chef', '>= 12.0'
  spec.add_dependency 'addressable' # No version because we use whatever Chef gives.

  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'rspec', '~> 3.5'
  spec.add_development_dependency 'rspec-its', '~> 1.2'
  spec.add_development_dependency 'rspec-command', '~> 1.0'
  spec.add_development_dependency 'chef-zero', '>= 4.0'
  spec.add_development_dependency 'fuubar', '~> 2.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
knife-count-1.0.0 knife-count.gemspec