kpm 0.12.0 → 0.12.2
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/lib/kpm/version.rb +1 -1
- data/packaging/kpm.sh +1 -1
- data/pom.xml +13 -16
- data/tasks/package.rake +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bef23d0aadea698b8f5213b1b64a5f8e535e93289b003607e260af6afdfc73a7
|
4
|
+
data.tar.gz: 884aa289507490215fbf6e5c2f3db273329d0c920ce653ff4808b4d13356be49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf092b062375afa1ff0d7a07e5e7cee0991e1db4b9a6cdff35e62916ee5ca47cf861f616d8a5c9bc0c2a1112ec452d1fdf2a1010644fa0e356bc4d33602363b4
|
7
|
+
data.tar.gz: d4bf661c93f6cbec38068fd311052816ae3225816b4f96144ed0b19b629df0c689249dbff1be4833d0c44f94811545a2500c43d73415e6be9afa8cfca9ab3152
|
data/lib/kpm/version.rb
CHANGED
data/packaging/kpm.sh
CHANGED
@@ -11,4 +11,4 @@ unset BUNDLE_IGNORE_CONFIG
|
|
11
11
|
|
12
12
|
# Run the actual app using the bundled Ruby interpreter, with Bundler activated.
|
13
13
|
# See https://github.com/phusion/traveling-ruby/issues/58
|
14
|
-
exec "$SELFDIR/lib/ruby/bin/ruby" -rbundler/setup -rreadline $SELFDIR/lib/vendor/*ruby/
|
14
|
+
exec "$SELFDIR/lib/ruby/bin/ruby" -rbundler/setup -rreadline $SELFDIR/lib/vendor/*ruby/3.*/bin/kpm $@
|
data/pom.xml
CHANGED
@@ -22,7 +22,7 @@
|
|
22
22
|
<modelVersion>4.0.0</modelVersion>
|
23
23
|
<groupId>org.kill-bill.billing.installer</groupId>
|
24
24
|
<artifactId>kpm</artifactId>
|
25
|
-
<version>0.12.
|
25
|
+
<version>0.12.2</version>
|
26
26
|
<packaging>pom</packaging>
|
27
27
|
<name>KPM</name>
|
28
28
|
<description>KPM: the Kill Bill Package Manager</description>
|
@@ -77,12 +77,12 @@
|
|
77
77
|
</snapshotRepository>
|
78
78
|
</distributionManagement>
|
79
79
|
<properties>
|
80
|
-
<repository.release.id>
|
81
|
-
<repository.release.name>
|
82
|
-
<repository.release.url>https://
|
83
|
-
<repository.snapshot.id>
|
84
|
-
<repository.snapshot.name>
|
85
|
-
<repository.snapshot.url>https://
|
80
|
+
<repository.release.id>central</repository.release.id>
|
81
|
+
<repository.release.name>Central Release Repository</repository.release.name>
|
82
|
+
<repository.release.url>https://central.sonatype.com/service/local/staging/deploy/maven2/</repository.release.url>
|
83
|
+
<repository.snapshot.id>central</repository.snapshot.id>
|
84
|
+
<repository.snapshot.name>Central Snapshots Repository</repository.snapshot.name>
|
85
|
+
<repository.snapshot.url>https://central.sonatype.com/repository/maven-snapshots/</repository.snapshot.url>
|
86
86
|
</properties>
|
87
87
|
<build>
|
88
88
|
<pluginManagement>
|
@@ -201,17 +201,14 @@
|
|
201
201
|
</executions>
|
202
202
|
</plugin>
|
203
203
|
<plugin>
|
204
|
-
<groupId>org.sonatype.
|
205
|
-
<artifactId>
|
206
|
-
<version>
|
204
|
+
<groupId>org.sonatype.central</groupId>
|
205
|
+
<artifactId>central-publishing-maven-plugin</artifactId>
|
206
|
+
<version>0.7.0</version>
|
207
207
|
<extensions>true</extensions>
|
208
208
|
<configuration>
|
209
|
-
<
|
210
|
-
<
|
211
|
-
<
|
212
|
-
<keepStagingRepositoryOnCloseRuleFailure>true</keepStagingRepositoryOnCloseRuleFailure>
|
213
|
-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
214
|
-
<stagingProgressTimeoutMinutes>10</stagingProgressTimeoutMinutes>
|
209
|
+
<autoPublish>true</autoPublish>
|
210
|
+
<publishingServerId>central</publishingServerId>
|
211
|
+
<waitUntil>published</waitUntil>
|
215
212
|
</configuration>
|
216
213
|
</plugin>
|
217
214
|
</plugins>
|
data/tasks/package.rake
CHANGED
@@ -156,7 +156,7 @@ def gem_exists?
|
|
156
156
|
response = `gem specification 'kpm' -r -v #{VERSION} 2>&1`
|
157
157
|
return false if response.nil?
|
158
158
|
|
159
|
-
specification = YAML.
|
159
|
+
specification = YAML.safe_load(response, permitted_classes: [Gem::Dependency, Gem::Requirement, Gem::Specification, Gem::Version, Symbol, Time])
|
160
160
|
specification.instance_of?(Gem::Specification)
|
161
161
|
end
|
162
162
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kpm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.12.
|
4
|
+
version: 0.12.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kill Bill core team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: highline
|