Sha256: 2c6916efd8282da9e30e04206cda2be53286c8448da7f2abed9dca1f5af5c877

Contents?: true

Size: 1.53 KB

Versions: 2

Compression:

Stored size: 1.53 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'conjur/debify/version'

Gem::Specification.new do |spec|
  spec.name          = "conjur-debify"
  spec.version       = Conjur::Debify::VERSION
  spec.authors       = ["CyberArk Software, Inc."]
  spec.email         = ["conj_maintainers@cyberark.com"]
  spec.summary       = %q{Utility commands to build and package Conjur services as Debian packages}
  spec.homepage      = "https://github.com/conjurinc/debify"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]
  
  spec.add_dependency "gli"
  spec.add_dependency "docker-api", "~> 1.33"
  spec.add_dependency "conjur-cli" , "~> 6"
  spec.add_dependency "conjur-api", "~> 5"

  spec.add_development_dependency "bundler", "~> 1.7"
  spec.add_development_dependency "fakefs", "~> 0"
  spec.add_development_dependency "rake", "~> 12.3.3"
  
  # Pin to cucumbe v2. cucumber v3 changes (breaks) the behavior of
  # unmatched capture groups with \(d+). In v3, the value of such a
  # group is 0 instead of nil, which breaks aruba's "I successfully
  # run...." steps.
  spec.add_development_dependency "cucumber", '~> 2'
  spec.add_development_dependency "aruba", "~> 0.14"
  spec.add_development_dependency 'rspec', '~> 3'
  spec.add_development_dependency 'ci_reporter_rspec', '~> 1.0'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
conjur-debify-2.0.0 debify.gemspec
conjur-debify-1.12.0 debify.gemspec