killbill-payment-test 1.6.3 → 1.7.0
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/Jarfile +5 -5
- data/README.md +1 -1
- data/VERSION +1 -1
- data/killbill-payment-test.gemspec +2 -1
- data/pom.xml +2 -2
- data/release.sh +14 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3e017f57599b831bc7e79d5e460f316b88042b6c
|
|
4
|
+
data.tar.gz: bfe5e17ee61408d2cbaba36b6ec1e23857b0978c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17e7a7225d8b49977fea4b708c1c7ac131dd9a8fad9ab22302f0752875a11202889e1fbc78bd69aa961faf6f5ee0a41e0ce5dea1f9e58db3b82201fe57c35a45
|
|
7
|
+
data.tar.gz: f7e9d9694486ddeda617962b00d99ffe2c3fa7861ce46e056d6c6e691866bcddaf4d3152e89ac473b4b8200519cddf8060d0353e0ba7e023a37bb828f30e7f33
|
data/Jarfile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
jar '
|
|
2
|
-
jar '
|
|
3
|
-
jar '
|
|
4
|
-
jar '
|
|
5
|
-
jar '
|
|
1
|
+
jar 'org.kill-bill.billing:killbill-api', '0.8.2'
|
|
2
|
+
jar 'org.kill-bill.billing.plugin:killbill-plugin-api-notification', '0.6.4'
|
|
3
|
+
jar 'org.kill-bill.billing.plugin:killbill-plugin-api-payment', '0.6.4'
|
|
4
|
+
jar 'org.kill-bill.billing.plugin:killbill-plugin-api-currency', '0.6.4'
|
|
5
|
+
jar 'org.kill-bill.billing:killbill-util:tests', '0.9.1'
|
|
6
6
|
jar 'javax.servlet:javax.servlet-api', '3.0.1'
|
data/README.md
CHANGED
|
@@ -3,4 +3,4 @@ killbill-payment-test-plugin
|
|
|
3
3
|
|
|
4
4
|
Plugin to test the Kill Bill PaymentPlugin API.
|
|
5
5
|
|
|
6
|
-
Release builds are available on [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%
|
|
6
|
+
Release builds are available on [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.kill-bill.billing.plugin.ruby%22%20AND%20a%3A%22payment-test-plugin%22) with coordinates `org.kill-bill.billing.plugin.ruby:payment-test-plugin`.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.7.0
|
|
@@ -22,7 +22,8 @@ Gem::Specification.new do |s|
|
|
|
22
22
|
|
|
23
23
|
s.rdoc_options << '--exclude' << '.'
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
|
|
26
|
+
s.add_dependency 'killbill', '~> 3.0.0'
|
|
26
27
|
|
|
27
28
|
s.add_development_dependency 'jbundler', '~> 0.4.1'
|
|
28
29
|
s.add_development_dependency 'rake', '>= 10.0.0'
|
data/pom.xml
CHANGED
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
<version>5</version>
|
|
23
23
|
</parent>
|
|
24
24
|
<modelVersion>4.0.0</modelVersion>
|
|
25
|
-
<groupId>
|
|
25
|
+
<groupId>org.kill-bill.billing.plugin.ruby</groupId>
|
|
26
26
|
<artifactId>payment-test-plugin</artifactId>
|
|
27
27
|
<packaging>pom</packaging>
|
|
28
|
-
<version>1.
|
|
28
|
+
<version>1.7.0</version>
|
|
29
29
|
<name>payment-test-plugin</name>
|
|
30
30
|
<description></description>
|
|
31
31
|
<scm>
|
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"
|
|
@@ -18,7 +31,7 @@ rake killbill:package
|
|
|
18
31
|
ARTIFACT="$PWD/pkg/killbill-payment-test-$VERSION.tar.gz"
|
|
19
32
|
echo "Pushing $ARTIFACT to Maven Central"
|
|
20
33
|
mvn gpg:sign-and-deploy-file \
|
|
21
|
-
-DgroupId=
|
|
34
|
+
-DgroupId=org.kill-bill.billing.plugin.ruby \
|
|
22
35
|
-DartifactId=payment-test-plugin \
|
|
23
36
|
-Dversion=$VERSION \
|
|
24
37
|
-Dpackaging=tar.gz \
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: killbill-payment-test
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.7.0
|
|
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-
|
|
11
|
+
date: 2014-03-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: killbill
|
|
@@ -16,12 +16,12 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ~>
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
19
|
+
version: 3.0.0
|
|
20
20
|
requirement: !ruby/object:Gem::Requirement
|
|
21
21
|
requirements:
|
|
22
22
|
- - ~>
|
|
23
23
|
- !ruby/object:Gem::Version
|
|
24
|
-
version:
|
|
24
|
+
version: 3.0.0
|
|
25
25
|
prerelease: false
|
|
26
26
|
type: :runtime
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
@@ -109,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
109
109
|
version: '0'
|
|
110
110
|
requirements: []
|
|
111
111
|
rubyforge_project:
|
|
112
|
-
rubygems_version: 2.2.
|
|
112
|
+
rubygems_version: 2.2.2
|
|
113
113
|
signing_key:
|
|
114
114
|
specification_version: 4
|
|
115
115
|
summary: Plugin to test the payment plugin api.
|