Sha256: a0f968ebbc8566425d2dc84d84d7af887e656e1e6142bea0f2454c1f982a31ce
Contents?: true
Size: 1.55 KB
Versions: 66
Compression:
Stored size: 1.55 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").append("VERSION") 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", "~> 2.0" spec.add_dependency "conjur-cli" , "~> 6" spec.add_dependency "conjur-api", "~> 5.3" spec.add_development_dependency "bundler", ">= 2.4.14" spec.add_development_dependency "fakefs", "~> 2.5.0" spec.add_development_dependency "rake", "~> 13.0" # 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", '~> 7.1' spec.add_development_dependency "aruba", "~> 2.1" spec.add_development_dependency 'rspec', '~> 3.12' spec.add_development_dependency 'ci_reporter_rspec', '~> 1.0' end
Version data entries
66 entries across 66 versions & 1 rubygems