Sha256: 148ff0427b0336ab3dfa93802f92a4a30c44615b948a6c3c1e606959ed8b030f

Contents?: true

Size: 1.25 KB

Versions: 1

Compression:

Stored size: 1.25 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.license          = 'Apache License, v2.0'

  s.files            = `git ls-files`.split("\n")
  s.add_dependency "chef", ">= 0.10.10"
  s.require_paths    = ["lib"]

  s.bindir           = "bin"
  s.executables      = %w( chef-vault )
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
chef-vault-1.2.3 chef-vault.gemspec