-
Notifications
You must be signed in to change notification settings - Fork 0
/
debify.gemspec
36 lines (32 loc) · 1.55 KB
/
debify.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# 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 = ["[email protected]"]
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