killbill-payment-test 1.6.3 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 55beed89503e52d8ce6ff2c73c4fa5d96c00190d
4
- data.tar.gz: 030fc8cb860b2184aa391f8c68f529563bd88606
3
+ metadata.gz: 3e017f57599b831bc7e79d5e460f316b88042b6c
4
+ data.tar.gz: bfe5e17ee61408d2cbaba36b6ec1e23857b0978c
5
5
  SHA512:
6
- metadata.gz: 85f350adefb357f9a69a48271a395c9647b79009a49a83650e85892b5e9333bfde41bf26fcd7b1dc38f81489bc8be7bb8ac8df1ffe20701dfd811418e2a2ae34
7
- data.tar.gz: b456f9f714cccec838c62890196f754d38a6d9c8b59af179aa8bbac82789172cfd2ae62691e113466dbb03fb57f0c2c8ff9fd268181f824e31b894e8df597696
6
+ metadata.gz: 17e7a7225d8b49977fea4b708c1c7ac131dd9a8fad9ab22302f0752875a11202889e1fbc78bd69aa961faf6f5ee0a41e0ce5dea1f9e58db3b82201fe57c35a45
7
+ data.tar.gz: f7e9d9694486ddeda617962b00d99ffe2c3fa7861ce46e056d6c6e691866bcddaf4d3152e89ac473b4b8200519cddf8060d0353e0ba7e023a37bb828f30e7f33
data/Jarfile CHANGED
@@ -1,6 +1,6 @@
1
- jar 'com.ning.billing:killbill-api', '0.8.0'
2
- jar 'com.ning.billing.plugin:killbill-plugin-api-notification', '0.6.3'
3
- jar 'com.ning.billing.plugin:killbill-plugin-api-payment', '0.6.3'
4
- jar 'com.ning.billing.plugin:killbill-plugin-api-currency', '0.6.3'
5
- jar 'com.ning.billing:killbill-util:tests', '0.8.8'
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%22com.ning.killbill.ruby%22%20AND%20a%3A%22payment-test-plugin%22) with coordinates `com.ning.killbill.ruby:payment-test-plugin`.
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.6.3
1
+ 1.7.0
@@ -22,7 +22,8 @@ Gem::Specification.new do |s|
22
22
 
23
23
  s.rdoc_options << '--exclude' << '.'
24
24
 
25
- s.add_dependency 'killbill', '~> 2.0.0'
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>com.ning.killbill.ruby</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.6.3</version>
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=com.ning.killbill.ruby \
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.6.3
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-01-16 00:00:00.000000000 Z
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: 2.0.0
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: 2.0.0
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.0
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.