conjur-api 5.3.8.pre.8 → 5.3.8.pre.194

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (143) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +10 -0
  3. data/.dockerignore +1 -0
  4. data/.github/CODEOWNERS +10 -0
  5. data/.gitignore +32 -0
  6. data/.gitleaks.toml +219 -0
  7. data/.overcommit.yml +16 -0
  8. data/.project +18 -0
  9. data/.rubocop.yml +3 -0
  10. data/.rubocop_settings.yml +86 -0
  11. data/.rubocop_todo.yml +709 -0
  12. data/.yardopts +1 -0
  13. data/CHANGELOG.md +435 -0
  14. data/CONTRIBUTING.md +141 -0
  15. data/Dockerfile +16 -0
  16. data/Gemfile +7 -0
  17. data/Jenkinsfile +168 -0
  18. data/LICENSE +202 -0
  19. data/README.md +162 -0
  20. data/Rakefile +47 -0
  21. data/SECURITY.md +42 -0
  22. data/VERSION +1 -1
  23. data/bin/parse-changelog.sh +12 -0
  24. data/ci/configure_v4.sh +12 -0
  25. data/ci/configure_v5.sh +14 -0
  26. data/ci/submit-coverage +36 -0
  27. data/conjur-api.gemspec +40 -0
  28. data/dev/Dockerfile.dev +12 -0
  29. data/dev/docker-compose.yml +56 -0
  30. data/dev/start +22 -0
  31. data/dev/stop +5 -0
  32. data/docker-compose.yml +76 -0
  33. data/example/demo_v4.rb +49 -0
  34. data/example/demo_v5.rb +57 -0
  35. data/features/authenticators.feature +33 -0
  36. data/features/authn_local.feature +32 -0
  37. data/features/exists.feature +37 -0
  38. data/features/group.feature +11 -0
  39. data/features/host.feature +50 -0
  40. data/features/host_factory_create_host.feature +28 -0
  41. data/features/host_factory_token.feature +63 -0
  42. data/features/load_policy.feature +61 -0
  43. data/features/members.feature +51 -0
  44. data/features/new_api.feature +36 -0
  45. data/features/permitted.feature +70 -0
  46. data/features/permitted_roles.feature +30 -0
  47. data/features/public_keys.feature +11 -0
  48. data/features/resource_fields.feature +53 -0
  49. data/features/role_fields.feature +15 -0
  50. data/features/rotate_api_key.feature +13 -0
  51. data/features/step_definitions/api_steps.rb +18 -0
  52. data/features/step_definitions/policy_steps.rb +75 -0
  53. data/features/step_definitions/result_steps.rb +7 -0
  54. data/features/support/env.rb +18 -0
  55. data/features/support/hooks.rb +3 -0
  56. data/features/support/world.rb +12 -0
  57. data/features/update_password.feature +14 -0
  58. data/features/user.feature +58 -0
  59. data/features/variable_fields.feature +20 -0
  60. data/features/variable_value.feature +60 -0
  61. data/features_v4/authn_local.feature +27 -0
  62. data/features_v4/exists.feature +29 -0
  63. data/features_v4/host.feature +18 -0
  64. data/features_v4/host_factory_token.feature +49 -0
  65. data/features_v4/members.feature +39 -0
  66. data/features_v4/permitted.feature +15 -0
  67. data/features_v4/permitted_roles.feature +8 -0
  68. data/features_v4/resource_fields.feature +47 -0
  69. data/features_v4/rotate_api_key.feature +13 -0
  70. data/features_v4/step_definitions/api_steps.rb +17 -0
  71. data/features_v4/step_definitions/result_steps.rb +3 -0
  72. data/features_v4/support/env.rb +23 -0
  73. data/features_v4/support/policy.yml +34 -0
  74. data/features_v4/support/world.rb +12 -0
  75. data/features_v4/variable_fields.feature +11 -0
  76. data/features_v4/variable_value.feature +54 -0
  77. data/lib/conjur/acts_as_resource.rb +123 -0
  78. data/lib/conjur/acts_as_role.rb +142 -0
  79. data/lib/conjur/acts_as_rolsource.rb +32 -0
  80. data/lib/conjur/acts_as_user.rb +68 -0
  81. data/lib/conjur/api/authenticators.rb +35 -0
  82. data/lib/conjur/api/authn.rb +125 -0
  83. data/lib/conjur/api/host_factories.rb +71 -0
  84. data/lib/conjur/api/ldap_sync.rb +38 -0
  85. data/lib/conjur/api/policies.rb +56 -0
  86. data/lib/conjur/api/pubkeys.rb +53 -0
  87. data/lib/conjur/api/resources.rb +109 -0
  88. data/lib/conjur/api/roles.rb +98 -0
  89. data/lib/conjur/api/router/v4.rb +206 -0
  90. data/lib/conjur/api/router/v5.rb +248 -0
  91. data/lib/conjur/api/variables.rb +59 -0
  92. data/lib/conjur/api.rb +105 -0
  93. data/lib/conjur/base.rb +355 -0
  94. data/lib/conjur/base_object.rb +57 -0
  95. data/lib/conjur/build_object.rb +47 -0
  96. data/lib/conjur/cache.rb +26 -0
  97. data/lib/conjur/cert_utils.rb +63 -0
  98. data/lib/conjur/cidr.rb +71 -0
  99. data/lib/conjur/configuration.rb +460 -0
  100. data/lib/conjur/escape.rb +129 -0
  101. data/lib/conjur/exceptions.rb +4 -0
  102. data/lib/conjur/group.rb +41 -0
  103. data/lib/conjur/has_attributes.rb +98 -0
  104. data/lib/conjur/host.rb +27 -0
  105. data/lib/conjur/host_factory.rb +75 -0
  106. data/lib/conjur/host_factory_token.rb +78 -0
  107. data/lib/conjur/id.rb +71 -0
  108. data/lib/conjur/layer.rb +9 -0
  109. data/lib/conjur/log.rb +72 -0
  110. data/lib/conjur/log_source.rb +60 -0
  111. data/lib/conjur/policy.rb +34 -0
  112. data/lib/conjur/policy_load_result.rb +61 -0
  113. data/lib/conjur/query_string.rb +12 -0
  114. data/lib/conjur/resource.rb +29 -0
  115. data/lib/conjur/role.rb +29 -0
  116. data/lib/conjur/role_grant.rb +85 -0
  117. data/lib/conjur/routing.rb +29 -0
  118. data/lib/conjur/user.rb +40 -0
  119. data/lib/conjur/variable.rb +208 -0
  120. data/lib/conjur/webservice.rb +30 -0
  121. data/lib/conjur-api/version.rb +24 -0
  122. data/lib/conjur-api.rb +2 -0
  123. data/publish.sh +5 -0
  124. data/spec/api/host_factories_spec.rb +34 -0
  125. data/spec/api_spec.rb +254 -0
  126. data/spec/base_object_spec.rb +13 -0
  127. data/spec/cert_utils_spec.rb +173 -0
  128. data/spec/cidr_spec.rb +34 -0
  129. data/spec/configuration_spec.rb +330 -0
  130. data/spec/has_attributes_spec.rb +63 -0
  131. data/spec/helpers/errors_matcher.rb +34 -0
  132. data/spec/helpers/request_helpers.rb +10 -0
  133. data/spec/id_spec.rb +29 -0
  134. data/spec/ldap_sync_spec.rb +21 -0
  135. data/spec/log_source_spec.rb +13 -0
  136. data/spec/log_spec.rb +42 -0
  137. data/spec/roles_spec.rb +24 -0
  138. data/spec/spec_helper.rb +113 -0
  139. data/spec/ssl_spec.rb +109 -0
  140. data/spec/uri_escape_spec.rb +21 -0
  141. data/test.sh +73 -0
  142. data/tmp/.keep +0 -0
  143. metadata +191 -21
data/spec/ssl_spec.rb ADDED
@@ -0,0 +1,109 @@
1
+ require 'active_support'
2
+ require 'spec_helper'
3
+
4
+ require 'helpers/errors_matcher'
5
+
6
+ require 'webrick'
7
+ require 'webrick/https'
8
+
9
+ describe 'SSL connection' do
10
+ context 'with an untrusted certificate' do
11
+ it 'fails' do
12
+ expect { Conjur::API.login 'foo', 'bar', account: "the-account" }.to \
13
+ raise_one_of(RestClient::SSLCertificateNotVerified, OpenSSL::SSL::SSLError)
14
+ end
15
+ end
16
+
17
+ context 'with certificate added to the default OpenSSL cert store' do
18
+ before do
19
+ cert_store.add_cert(cert)
20
+ end
21
+
22
+ it 'works' do
23
+ expect { Conjur::API.login 'foo', 'bar', account: "the-account" }.to raise_error RestClient::ResourceNotFound
24
+ end
25
+ end
26
+
27
+ let(:server) do
28
+ server = WEBrick::HTTPServer.new \
29
+ Port: 0, SSLEnable: true,
30
+ AccessLog: [], Logger: Logger.new('/dev/null'), # shut up, WEBrick
31
+ SSLCertificate: cert, SSLPrivateKey: key
32
+ end
33
+ let(:port) { server.config[:Port] }
34
+ let(:cert_store) { OpenSSL::X509::Store.new }
35
+
36
+ before do
37
+ # Reset configuration to allow each test to use its own stub
38
+ # of OpenSSL::SSL::SSLContext::DEFAULT_CERT_STORE.
39
+ Conjur.configuration = nil
40
+ stub_const 'OpenSSL::SSL::SSLContext::DEFAULT_CERT_STORE', cert_store
41
+
42
+ allow(Conjur.configuration).to receive(:authn_url).and_return "https://localhost:#{port}"
43
+ end
44
+
45
+ around do |example|
46
+ server_thread = Thread.new do
47
+ server.start
48
+ end
49
+ example.run
50
+ server.shutdown
51
+ server_thread.join
52
+ end
53
+
54
+ let(:cert) do
55
+ OpenSSL::X509::Certificate.new """
56
+ -----BEGIN CERTIFICATE-----
57
+ MIIDCzCCAfOgAwIBAgIUaApjB95cJZlMTwDg4EBk4Mf1y4swDQYJKoZIhvcNAQEL
58
+ BQAwFDESMBAGA1UEAwwJbG9jYWxob3N0MCAXDTIxMDQyODIxNTA1OFoYDzQ3NTkw
59
+ MzI1MjE1MDU4WjAUMRIwEAYDVQQDDAlsb2NhbGhvc3QwggEiMA0GCSqGSIb3DQEB
60
+ AQUAA4IBDwAwggEKAoIBAQC+MIx1LCzBeAl7kHfI21wYmA6W8luyq14+DecaQPMd
61
+ bW7fMlHSMJC/nlFDQyqmfYfKlVCiJRV/QTdUtA9hCytPlEKjlVmm4WIYLKfjj8Sp
62
+ A+X9VURk75Fz+Z7UsF8u2J3pF9wFfhBzznwePlFdcWYyQMIRtghoHk/WSsbJVXVQ
63
+ so7+0BLFyMYB3otfCyK+H/iyoXWLZll2irYZJedVm/lyTlnc9dT1XDAWWI8kSeUV
64
+ lCkEulqOf8qZyU7wNUafRkzBuYkR7ddp1Qdkq+QYw7blmfZXyJbAYSt4gEMyDMk8
65
+ ArScP8j+Efz5D54wS7fZFwmQp41+iP5WTxGsSU3dh44fAgMBAAGjUzBRMB0GA1Ud
66
+ DgQWBBS4ZJDxXOs8rK3+SyfLopDFqK0IWDAfBgNVHSMEGDAWgBS4ZJDxXOs8rK3+
67
+ SyfLopDFqK0IWDAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQAE
68
+ WuzjqQ/gyho/pluX31hq7EMAFgqqz7ECN6DqmvpqabMD6s1kQ662KTo7gCBEcNtA
69
+ nC7QycFp4v/Cr8+aUEa1W3+q2MqbmshORonUrLE/vxejK+NUvhSCWnmrM8v60zhR
70
+ pn9lSSgQCBKWDgaU0VQVn0I9MuexeAj64Qv2uUHnZK3QUx+Gk3uurTmhKEN5FI+D
71
+ sC7xO0qquTZ1Vv1EkLEso4dnFVW84EjdfmfeiW6JmHO7z1p1ebGsRwoQead/qTKw
72
+ ze+Y1A1w3GzuhDo55aHlWE/Wvnou0aM3O9gUd++a2j+XJ2P7qaTB/L7SJk4qZ9RA
73
+ t2PbKVP+tyZjXKtXmgzp
74
+ -----END CERTIFICATE-----
75
+ """.lines.map(&:strip).join("\n")
76
+ end
77
+
78
+ let(:key) do
79
+ OpenSSL::PKey.read """
80
+ -----BEGIN RSA PRIVATE KEY-----
81
+ MIIEowIBAAKCAQEAvjCMdSwswXgJe5B3yNtcGJgOlvJbsqtePg3nGkDzHW1u3zJR
82
+ 0jCQv55RQ0Mqpn2HypVQoiUVf0E3VLQPYQsrT5RCo5VZpuFiGCyn44/EqQPl/VVE
83
+ ZO+Rc/me1LBfLtid6RfcBX4Qc858Hj5RXXFmMkDCEbYIaB5P1krGyVV1ULKO/tAS
84
+ xcjGAd6LXwsivh/4sqF1i2ZZdoq2GSXnVZv5ck5Z3PXU9VwwFliPJEnlFZQpBLpa
85
+ jn/KmclO8DVGn0ZMwbmJEe3XadUHZKvkGMO25Zn2V8iWwGEreIBDMgzJPAK0nD/I
86
+ /hH8+Q+eMEu32RcJkKeNfoj+Vk8RrElN3YeOHwIDAQABAoIBAQCnW0ctkDqt3/fQ
87
+ MHcHWue2iI9GCmvgU+WxC0DSHFcSDQrkAn53S98DjseJPaBZMtr7y9pRY/p/qR6M
88
+ PYnO5iotc5QUKEbkjy1nglwV5Zuy8kg+XPq7Kwg+GmjGVZDcQybpRuKIPr8xeIBF
89
+ iKbGaBP6ontjZGAPZqTwN4qm/bkm0QRQkMEVQLpBaOlXjl0BCknhCMgyNA1F0jGc
90
+ HLqJpFO46qvWDkDaKriMY/ezrkGYxlvV8xGJ2lzoaNWBsQeMXtcDJXuFMJO3lZl4
91
+ VUjeNbyPprUzL6/kLZGMVFdRWhzKAluJEy3B6zybY4xxmgmifqn8/OxIaT172IXN
92
+ KACuEorpAoGBAOYZEfuON+73dcstpjq3062+XUOxAAc77aFcGFQ2pqDTUtvoR05R
93
+ o0uXrSuQqt0/FJVdZqdDx1and6idI7j/LfkOwvmPPg2dJIwKV73T2HdR7BpJaYlI
94
+ KS6Bgl0AiW2ibjZJbBFJMiINb2tRGeYcOPfWlis309D2DXxl1f1TJTKTAoGBANOZ
95
+ aDH1VJXh7rdAHrwNonTjoCeYKG7oAh0WTfqmCqcBjAkXsVc7dBd/98XKGS5LPRtl
96
+ dIaJdYngeYyH5Ey5O2l/63tk0d4sqE8l+GVy+OHFn2AZMuaVXS0JXIQspn4s/U7F
97
+ CuawmFszE8fv41WgVNhF00ijheoRz/X19yu0ULHFAoGAYmJZ1AutUtowXZ25M+Yh
98
+ 9motCqKF9pHjO1lbdbagbKevCCQ7SPuTLOE/xB7pUAyGyo7TM7XBaAXXHhuCiLlj
99
+ eNic+YQL7lpApDhP5/TK28oFf//fxjk6ko4Bpa5zFJOdOE0QjhuT+gdwmpxkzIVI
100
+ vn/cWcJXKUPr5ELOyrBgeU0CgYBWqIUbsLWrjJQPSJtNuOfHp1F35cDpausyrmfR
101
+ Nx81tlR7hNCEQT0SQr5eqp4Vb4rfJXXLg5A3n08oVp8RLOtAEbuHFYs9ylxDzfEk
102
+ 2ylCjYTv/mHyPUmjoCnbl8237wTutZP5VmmPMCPxxjT8ZGVbDX2ySgYWDqV0vf80
103
+ TuydYQKBgG24Wpes1CJmKiuWGnPi5I/+iIKZRfpEGidpjnsktkr3O+VZSZNQtDfC
104
+ uWp/NgMxzxXxYdmmaQTwektB5axrsPUnxxiHmb8KkVU1IcMpYvUulFYiKVvFx+JJ
105
+ bx/fkItCZ4AP3CG2Onz8xZdosg+c+MEdIlCrg94dA1EmHewCt2Hv
106
+ -----END RSA PRIVATE KEY-----
107
+ """.lines.map(&:strip).join("\n")
108
+ end
109
+ end
@@ -0,0 +1,21 @@
1
+ require 'spec_helper'
2
+ require 'conjur/id'
3
+ require 'conjur/api/router/v5'
4
+
5
+ describe 'url escaping' do
6
+ it 'Id to path is escaped' do
7
+ id = Conjur::Id.new('cucumber:variable:one two/three')
8
+ expect(id.to_url_path).to eq('cucumber/variable/one%20two%2Fthree')
9
+ end
10
+
11
+ it 'Resources path is escaped' do
12
+ request = Conjur::API::Router::V5.resources(nil, 'cucumber/two', 'extended variable', {})
13
+ expect(request.url).to eq('http://localhost:5000/resources/cucumber%2Ftwo/extended%20variable/')
14
+ end
15
+
16
+ it 'Resource path is escaped' do
17
+ resource = Conjur::Id.new('cucumber:variable:one two/three')
18
+ request = Conjur::API::Router::V5.resources_resource(nil, resource)
19
+ expect(request.url).to eq('http://localhost:5000/resources/cucumber/variable/one%20two%2Fthree')
20
+ end
21
+ end
data/test.sh ADDED
@@ -0,0 +1,73 @@
1
+ #!/bin/bash -e
2
+
3
+ : "${RUBY_VERSION=3.0}"
4
+ # My local RUBY_VERSION is set to ruby-#.#.# so this allows running locally.
5
+ RUBY_VERSION="$(cut -d '-' -f 2 <<< "$RUBY_VERSION")"
6
+
7
+
8
+ function finish {
9
+ echo 'Removing test environment'
10
+ echo '---'
11
+ docker-compose down --rmi 'local' --volumes
12
+ }
13
+
14
+ trap finish EXIT
15
+
16
+ # Set up VERSION file for local development
17
+ if [ ! -f "../VERSION" ]; then
18
+ echo -n "0.0.dev" > ../VERSION
19
+ fi
20
+
21
+ function main() {
22
+ if ! docker info >/dev/null 2>&1; then
23
+ echo "Docker does not seem to be running, run it first and retry"
24
+ exit 1
25
+ fi
26
+ # Generate reports folders locally
27
+ mkdir -p spec/reports features/reports features_v4/reports
28
+
29
+ startConjur
30
+ runTests_5
31
+ runTests_4
32
+ }
33
+
34
+ function startConjur() {
35
+ echo 'Starting Conjur environment'
36
+ echo '-----'
37
+
38
+ # We want to pull to make sure we're testing against the newest release;
39
+ # failing to ensure that has caused many mysterious failures in CI.
40
+ # However, unconditionally pulling prevents working offline even
41
+ # with a warm cache. So try to pull, but ignore failures.
42
+ docker-compose pull --ignore-pull-failures
43
+ docker-compose build --build-arg RUBY_VERSION="$RUBY_VERSION"
44
+ docker-compose up -d pg conjur_4 conjur_5
45
+ }
46
+
47
+ function runTests_5() {
48
+ echo 'Waiting for Conjur v5 to come up, and configuring it...'
49
+ ./ci/configure_v5.sh
50
+
51
+ local api_key=$(docker-compose exec -T conjur_5 rake 'role:retrieve-key[cucumber:user:admin]')
52
+
53
+ echo 'Running tests'
54
+ echo '-----'
55
+ docker-compose run --rm \
56
+ -e CONJUR_AUTHN_API_KEY="$api_key" \
57
+ tester_5 rake jenkins_init jenkins_spec jenkins_cucumber_v5
58
+ }
59
+
60
+ function runTests_4() {
61
+ echo 'Waiting for Conjur v4 to come up, and configuring it...'
62
+ ./ci/configure_v4.sh
63
+
64
+ local api_key=$(docker-compose exec -T conjur_4 su conjur -c "conjur-plugin-service authn env RAILS_ENV=appliance rails r \"puts User['admin'].api_key\" 2>/dev/null")
65
+
66
+ echo 'Running tests'
67
+ echo '-----'
68
+ docker-compose run --rm \
69
+ -e CONJUR_AUTHN_API_KEY="$api_key" \
70
+ tester_4 rake jenkins_cucumber_v4
71
+ }
72
+
73
+ main
data/tmp/.keep ADDED
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: conjur-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.3.8.pre.8
4
+ version: 5.3.8.pre.194
5
5
  platform: ruby
6
6
  authors:
7
7
  - CyberArk Maintainers
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-19 00:00:00.000000000 Z
11
+ date: 2022-01-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
@@ -226,20 +226,6 @@ dependencies:
226
226
  - - ">="
227
227
  - !ruby/object:Gem::Version
228
228
  version: '0'
229
- - !ruby/object:Gem::Dependency
230
- name: nokogiri
231
- requirement: !ruby/object:Gem::Requirement
232
- requirements:
233
- - - ">="
234
- - !ruby/object:Gem::Version
235
- version: '0'
236
- type: :development
237
- prerelease: false
238
- version_requirements: !ruby/object:Gem::Requirement
239
- requirements:
240
- - - ">="
241
- - !ruby/object:Gem::Version
242
- version: '0'
243
229
  description: Conjur API
244
230
  email:
245
231
  - conj_maintainers@cyberark.com
@@ -247,12 +233,152 @@ executables: []
247
233
  extensions: []
248
234
  extra_rdoc_files: []
249
235
  files:
236
+ - ".codeclimate.yml"
237
+ - ".dockerignore"
238
+ - ".github/CODEOWNERS"
239
+ - ".gitignore"
240
+ - ".gitleaks.toml"
241
+ - ".overcommit.yml"
242
+ - ".project"
243
+ - ".rubocop.yml"
244
+ - ".rubocop_settings.yml"
245
+ - ".rubocop_todo.yml"
246
+ - ".yardopts"
247
+ - CHANGELOG.md
248
+ - CONTRIBUTING.md
249
+ - Dockerfile
250
+ - Gemfile
251
+ - Jenkinsfile
252
+ - LICENSE
253
+ - README.md
254
+ - Rakefile
255
+ - SECURITY.md
250
256
  - VERSION
257
+ - bin/parse-changelog.sh
258
+ - ci/configure_v4.sh
259
+ - ci/configure_v5.sh
260
+ - ci/submit-coverage
261
+ - conjur-api.gemspec
262
+ - dev/Dockerfile.dev
263
+ - dev/docker-compose.yml
264
+ - dev/start
265
+ - dev/stop
266
+ - docker-compose.yml
267
+ - example/demo_v4.rb
268
+ - example/demo_v5.rb
269
+ - features/authenticators.feature
270
+ - features/authn_local.feature
271
+ - features/exists.feature
272
+ - features/group.feature
273
+ - features/host.feature
274
+ - features/host_factory_create_host.feature
275
+ - features/host_factory_token.feature
276
+ - features/load_policy.feature
277
+ - features/members.feature
278
+ - features/new_api.feature
279
+ - features/permitted.feature
280
+ - features/permitted_roles.feature
281
+ - features/public_keys.feature
282
+ - features/resource_fields.feature
283
+ - features/role_fields.feature
284
+ - features/rotate_api_key.feature
285
+ - features/step_definitions/api_steps.rb
286
+ - features/step_definitions/policy_steps.rb
287
+ - features/step_definitions/result_steps.rb
288
+ - features/support/env.rb
289
+ - features/support/hooks.rb
290
+ - features/support/world.rb
291
+ - features/update_password.feature
292
+ - features/user.feature
293
+ - features/variable_fields.feature
294
+ - features/variable_value.feature
295
+ - features_v4/authn_local.feature
296
+ - features_v4/exists.feature
297
+ - features_v4/host.feature
298
+ - features_v4/host_factory_token.feature
299
+ - features_v4/members.feature
300
+ - features_v4/permitted.feature
301
+ - features_v4/permitted_roles.feature
302
+ - features_v4/resource_fields.feature
303
+ - features_v4/rotate_api_key.feature
304
+ - features_v4/step_definitions/api_steps.rb
305
+ - features_v4/step_definitions/result_steps.rb
306
+ - features_v4/support/env.rb
307
+ - features_v4/support/policy.yml
308
+ - features_v4/support/world.rb
309
+ - features_v4/variable_fields.feature
310
+ - features_v4/variable_value.feature
311
+ - lib/conjur-api.rb
312
+ - lib/conjur-api/version.rb
313
+ - lib/conjur/acts_as_resource.rb
314
+ - lib/conjur/acts_as_role.rb
315
+ - lib/conjur/acts_as_rolsource.rb
316
+ - lib/conjur/acts_as_user.rb
317
+ - lib/conjur/api.rb
318
+ - lib/conjur/api/authenticators.rb
319
+ - lib/conjur/api/authn.rb
320
+ - lib/conjur/api/host_factories.rb
321
+ - lib/conjur/api/ldap_sync.rb
322
+ - lib/conjur/api/policies.rb
323
+ - lib/conjur/api/pubkeys.rb
324
+ - lib/conjur/api/resources.rb
325
+ - lib/conjur/api/roles.rb
326
+ - lib/conjur/api/router/v4.rb
327
+ - lib/conjur/api/router/v5.rb
328
+ - lib/conjur/api/variables.rb
329
+ - lib/conjur/base.rb
330
+ - lib/conjur/base_object.rb
331
+ - lib/conjur/build_object.rb
332
+ - lib/conjur/cache.rb
333
+ - lib/conjur/cert_utils.rb
334
+ - lib/conjur/cidr.rb
335
+ - lib/conjur/configuration.rb
336
+ - lib/conjur/escape.rb
337
+ - lib/conjur/exceptions.rb
338
+ - lib/conjur/group.rb
339
+ - lib/conjur/has_attributes.rb
340
+ - lib/conjur/host.rb
341
+ - lib/conjur/host_factory.rb
342
+ - lib/conjur/host_factory_token.rb
343
+ - lib/conjur/id.rb
344
+ - lib/conjur/layer.rb
345
+ - lib/conjur/log.rb
346
+ - lib/conjur/log_source.rb
347
+ - lib/conjur/policy.rb
348
+ - lib/conjur/policy_load_result.rb
349
+ - lib/conjur/query_string.rb
350
+ - lib/conjur/resource.rb
351
+ - lib/conjur/role.rb
352
+ - lib/conjur/role_grant.rb
353
+ - lib/conjur/routing.rb
354
+ - lib/conjur/user.rb
355
+ - lib/conjur/variable.rb
356
+ - lib/conjur/webservice.rb
357
+ - publish.sh
358
+ - spec/api/host_factories_spec.rb
359
+ - spec/api_spec.rb
360
+ - spec/base_object_spec.rb
361
+ - spec/cert_utils_spec.rb
362
+ - spec/cidr_spec.rb
363
+ - spec/configuration_spec.rb
364
+ - spec/has_attributes_spec.rb
365
+ - spec/helpers/errors_matcher.rb
366
+ - spec/helpers/request_helpers.rb
367
+ - spec/id_spec.rb
368
+ - spec/ldap_sync_spec.rb
369
+ - spec/log_source_spec.rb
370
+ - spec/log_spec.rb
371
+ - spec/roles_spec.rb
372
+ - spec/spec_helper.rb
373
+ - spec/ssl_spec.rb
374
+ - spec/uri_escape_spec.rb
375
+ - test.sh
376
+ - tmp/.keep
251
377
  homepage: https://github.com/cyberark/conjur-api-ruby/
252
378
  licenses:
253
379
  - Apache-2.0
254
380
  metadata: {}
255
- post_install_message:
381
+ post_install_message:
256
382
  rdoc_options: []
257
383
  require_paths:
258
384
  - lib
@@ -267,8 +393,52 @@ required_rubygems_version: !ruby/object:Gem::Requirement
267
393
  - !ruby/object:Gem::Version
268
394
  version: 1.3.1
269
395
  requirements: []
270
- rubygems_version: 3.2.33
271
- signing_key:
396
+ rubyforge_project:
397
+ rubygems_version: 2.7.6.2
398
+ signing_key:
272
399
  specification_version: 4
273
400
  summary: Conjur API
274
- test_files: []
401
+ test_files:
402
+ - features/authenticators.feature
403
+ - features/authn_local.feature
404
+ - features/exists.feature
405
+ - features/group.feature
406
+ - features/host.feature
407
+ - features/host_factory_create_host.feature
408
+ - features/host_factory_token.feature
409
+ - features/load_policy.feature
410
+ - features/members.feature
411
+ - features/new_api.feature
412
+ - features/permitted.feature
413
+ - features/permitted_roles.feature
414
+ - features/public_keys.feature
415
+ - features/resource_fields.feature
416
+ - features/role_fields.feature
417
+ - features/rotate_api_key.feature
418
+ - features/step_definitions/api_steps.rb
419
+ - features/step_definitions/policy_steps.rb
420
+ - features/step_definitions/result_steps.rb
421
+ - features/support/env.rb
422
+ - features/support/hooks.rb
423
+ - features/support/world.rb
424
+ - features/update_password.feature
425
+ - features/user.feature
426
+ - features/variable_fields.feature
427
+ - features/variable_value.feature
428
+ - spec/api/host_factories_spec.rb
429
+ - spec/api_spec.rb
430
+ - spec/base_object_spec.rb
431
+ - spec/cert_utils_spec.rb
432
+ - spec/cidr_spec.rb
433
+ - spec/configuration_spec.rb
434
+ - spec/has_attributes_spec.rb
435
+ - spec/helpers/errors_matcher.rb
436
+ - spec/helpers/request_helpers.rb
437
+ - spec/id_spec.rb
438
+ - spec/ldap_sync_spec.rb
439
+ - spec/log_source_spec.rb
440
+ - spec/log_spec.rb
441
+ - spec/roles_spec.rb
442
+ - spec/spec_helper.rb
443
+ - spec/ssl_spec.rb
444
+ - spec/uri_escape_spec.rb