This repository has been archived by the owner on Dec 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
conjur-cli.gemspec
43 lines (38 loc) · 1.74 KB
/
conjur-cli.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
37
38
39
40
41
42
43
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/conjur/version', __FILE__)
require "English"
Gem::Specification.new do |gem|
gem.authors = ["Conjur Maintainers"]
gem.email = ["conj_maintainers@cyberark.com",]
gem.summary = %q{Conjur command line interface}
gem.homepage = "https://github.com/cyberark/conjur-cli"
gem.license = 'Apache 2.0'
gem.files = (`git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
.select { |x| x !~ /^Dockerfile/ }
) + Dir["build_number"]
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "conjur-cli"
gem.require_paths = ["lib"]
gem.version = Conjur::VERSION
# Filter out development only executables
gem.executables -= %w{parse-changelog.sh}
gem.add_dependency 'activesupport', '~> 6.0'
gem.add_dependency 'conjur-api', '~> 5.3'
gem.add_dependency 'deep_merge', '~> 1.0'
gem.add_dependency 'gli', '>=2.8.0'
gem.add_dependency 'highline', '~> 2.0'
gem.add_dependency 'netrc', '~> 0.10'
gem.add_dependency 'table_print', '~> 1.5'
gem.add_dependency 'xdg', '= 2.2.3'
gem.add_development_dependency 'addressable'
gem.add_development_dependency 'aruba', '~> 0.12'
gem.add_development_dependency 'ci_reporter_rspec', '~> 1.0'
gem.add_development_dependency 'cucumber-api'
gem.add_development_dependency 'io-grab', '~> 0.0'
gem.add_development_dependency 'json_spec'
gem.add_development_dependency 'pry-byebug'
gem.add_development_dependency 'rake', '~> 13.0'
gem.add_development_dependency 'rspec', '~> 3.0'
gem.add_development_dependency 'simplecov', '~> 0.17', '< 0.18'
end