conjur-debify 2.1.1.pre.959 → 2.1.1.pre.987
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.
- checksums.yaml +4 -4
- data/Jenkinsfile +1 -0
- data/VERSION +1 -1
- data/lib/conjur/debify.rb +1 -1
- data/publish-rubygem.sh +3 -5
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5ecf681af18c8af99f71185afd21f78f35209b9ee3e430a490e52ea29c319de6
|
4
|
+
data.tar.gz: 352f3336ccbea4d089451cb65895dc44bcaa3228908fcebf2b7b48ce45a82eb5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab800a6d574f900b7cbbc56f5b7e5980b309aaa69fea8b931f2558a695f2b342656489b4038116351b4dbaa6ccda050b687650c59368c2ebb6a838d8c268e8eb
|
7
|
+
data.tar.gz: a81b96dbac26f2b914a78f83efdc201c9fef777046d892e1afa850c9e0882ab03415333711fe112ec2ab8534058e9def7e4370b76ab5b325049949e20c4413a5
|
data/Jenkinsfile
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.1.1-
|
1
|
+
2.1.1-987
|
data/lib/conjur/debify.rb
CHANGED
@@ -91,7 +91,7 @@ def detect_version
|
|
91
91
|
end
|
92
92
|
|
93
93
|
def git_files
|
94
|
-
files = (`git ls-files -z`.split("\x0") + ['Gemfile.lock']).uniq
|
94
|
+
files = (`git ls-files -z`.split("\x0") + ['Gemfile.lock', 'VERSION']).uniq
|
95
95
|
# Since submodule directories are listed, but are not files, we remove them.
|
96
96
|
# Currently, `conjur-project-config` is the only submodule in Conjur, and it
|
97
97
|
# can safely be removed because it's a developer-only tool. If we add another
|
data/publish-rubygem.sh
CHANGED
@@ -1,6 +1,5 @@
|
|
1
|
-
#!/bin/bash
|
2
|
-
|
3
|
-
docker pull registry.tld/conjurinc/publish-rubygem
|
1
|
+
#!/usr/bin/env bash
|
2
|
+
set -e
|
4
3
|
|
5
4
|
docker run -i --rm -v $PWD:/src -w /src alpine/git clean -fxd \
|
6
5
|
-e VERSION \
|
@@ -8,5 +7,4 @@ docker run -i --rm -v $PWD:/src -w /src alpine/git clean -fxd \
|
|
8
7
|
-e release-assets/
|
9
8
|
|
10
9
|
summon --yaml "RUBYGEMS_API_KEY: !var rubygems/api-key" \
|
11
|
-
|
12
|
-
registry.tld/conjurinc/publish-rubygem debify
|
10
|
+
publish-rubygem debify
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: conjur-debify
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.1.pre.
|
4
|
+
version: 2.1.1.pre.987
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- CyberArk Software, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gli
|
@@ -250,7 +250,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
250
250
|
- !ruby/object:Gem::Version
|
251
251
|
version: 1.3.1
|
252
252
|
requirements: []
|
253
|
-
|
253
|
+
rubyforge_project:
|
254
|
+
rubygems_version: 2.7.6.2
|
254
255
|
signing_key:
|
255
256
|
specification_version: 4
|
256
257
|
summary: Utility commands to build and package Conjur services as Debian packages
|