klogger 1.6.3 → 1.6.4
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/NEWS +3 -0
- data/VERSION +1 -1
- data/pom.xml +1 -1
- data/release.sh +13 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ee00a1cb8d6e27407a452d8d358820774aeeb717
|
|
4
|
+
data.tar.gz: e67790586986ab7a9f4eb067d82f4eb8f582df43
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17cec2d93e8fdb9ff6da9f2bf8e873a1e4cd7692d913e375c986d0da9b3e6fb549102369bcbec6b7bcfb85b234e1a328c8bd16b7bee4ccc292ee639525d1a2f3
|
|
7
|
+
data.tar.gz: 4035f7e606234b52556c085ed8be0c74a8e90b4a408d4c327e34d83a94fcc3da5d195bfbf5505941c38888c64b743cc30340fb6d7f373cd8be81dceab4c98ffb
|
data/NEWS
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.6.
|
|
1
|
+
1.6.4
|
data/pom.xml
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<groupId>com.ning.killbill.ruby</groupId>
|
|
26
26
|
<artifactId>logging-plugin</artifactId>
|
|
27
27
|
<packaging>pom</packaging>
|
|
28
|
-
<version>1.6.
|
|
28
|
+
<version>1.6.4</version>
|
|
29
29
|
<name>logging-plugin</name>
|
|
30
30
|
<url>http://github.com/killbill/killbill-logging-plugin</url>
|
|
31
31
|
<description>Plugin to log Kill Bill events</description>
|
data/release.sh
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
set -e
|
|
2
2
|
|
|
3
|
+
if [ "GNU" != "$(tar --help | grep GNU | head -1 | awk '{print $1}')" ]; then
|
|
4
|
+
echo "Unable to release: make sure to use GNU tar"
|
|
5
|
+
exit 1
|
|
6
|
+
fi
|
|
7
|
+
|
|
8
|
+
if $(ruby -e'require "java"'); then
|
|
9
|
+
# Good
|
|
10
|
+
echo "Detected JRuby"
|
|
11
|
+
else
|
|
12
|
+
echo "Unable to release: make sure to use JRuby"
|
|
13
|
+
exit 1
|
|
14
|
+
fi
|
|
15
|
+
|
|
3
16
|
VERSION=`grep -E '<version>([0-9]+\.[0-9]+\.[0-9]+)</version>' pom.xml | sed 's/[\t \n]*<version>\(.*\)<\/version>[\t \n]*/\1/'`
|
|
4
17
|
if [ "$VERSION" != "$(cat $PWD/VERSION)" ]; then
|
|
5
18
|
echo "Unable to release: make sure the versions in pom.xml and VERSION match"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: klogger
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.4
|
|
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: 2014-01-
|
|
11
|
+
date: 2014-01-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: killbill
|