Sha256: 55287fe79a94fc1bbd0813b38166e80480c6997463b14bf8b5c3a10153b69b36

Contents?: true

Size: 1.56 KB

Versions: 1

Compression:

Stored size: 1.56 KB

Contents

# -*- encoding: utf-8 -*-
# Chef-Vault Gemspec file
# Copyright 2013, Nordstrom, Inc.

# 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.

$:.push File.expand_path('../lib', __FILE__)
require 'chef-vault/version'

Gem::Specification.new do |s|
  s.name             = 'chef-vault'
  s.version          = ChefVault::VERSION
  s.has_rdoc         = true
  s.authors          = ['Kevin Moser']
  s.email            = ['kevin.moser@nordstrom.com']
  s.summary          = 'Data encryption support for Chef using data bags'
  s.description      = s.summary
  s.homepage         = 'https://github.com/Nordstrom/chef-vault'

  s.license          = 'Apache License, v2.0'

  s.files            = `git ls-files`.split("\n")
  s.require_paths    = ['lib']
  s.bindir           = 'bin'
  s.executables      = %w( chef-vault )

  s.add_development_dependency 'bundler', '~> 1.3'
  s.add_development_dependency 'rake'
  s.add_development_dependency 'rspec', '~> 2.14'
  s.add_development_dependency 'rspec-its', '~> 1.0'
  s.add_development_dependency 'aruba', '~> 0.6'
  s.add_development_dependency 'chef', '>= 0.10.10'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
chef-vault-2.3.0 chef-vault.gemspec