killbill-litle 1.9.9 → 1.10.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3884580690cd5864161f7944d1759f4d279d0c35
4
- data.tar.gz: cfd52660c5ac3817866ec1a959e036616576bc92
3
+ metadata.gz: e868fee4f8e301652a6a6f23129476c08470fc6d
4
+ data.tar.gz: f823499c92742205e9a935b1e5fd9721dc0c36f2
5
5
  SHA512:
6
- metadata.gz: 23a151b509d1f6cb7716eaa2bf37a664fef1065554d038a9547efa5196a8146e5d6a8713b18a31c6b68646f2dc3ded6630f5a9759b7f8e83eb7fa2f9071e14b1
7
- data.tar.gz: 21af60fe808860cc9bca80cc19cc9fed8321cb597fe96e6bb0be686e44630e79f0df78ce32ebb83279fbdf6f1b958a8a60925e5dcb38a8aeb285b83037a892f9
6
+ metadata.gz: 441ec672ebab77af0f52806a3f1b604d71c8e4f6e58f97858b4b987f93f1d93c2f3a7e4b0cdc9cd07b5a43e4b400df71b7da012eb3a336ef428f8cc900bf4ee9
7
+ data.tar.gz: 9ef4e84596f0650b600f6bbacdcfba4fd01ec82cbbf2d30e5c0650d742572dea45f62dbe5765894509173012a0410beb75a8530a2ab12b87c1fc8adaa9e00501
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/NEWS CHANGED
@@ -1,3 +1,7 @@
1
+ 1.10.0
2
+ Update to latest killbill
3
+ Change groupId to org.kill-bill.billing.plugin.ruby
4
+
1
5
  1.9.9
2
6
  Add jruby-openssl dependency
3
7
 
data/README.md CHANGED
@@ -6,7 +6,7 @@ killbill-litle-plugin
6
6
 
7
7
  Plugin to use Litle & Co. as a gateway.
8
8
 
9
- Release builds are available on [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.ning.killbill.ruby%22%20AND%20a%3A%22litle-plugin%22) with coordinates `com.ning.killbill.ruby:litle-plugin`.
9
+ 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%22litle-plugin%22) with coordinates `org.kill-bill.billing.plugin.ruby:litle-plugin`.
10
10
 
11
11
  Requirements
12
12
  ------------
@@ -121,5 +121,5 @@ The plugin expects a `litle.yml` configuration file containing the following:
121
121
  ```
122
122
 
123
123
  By default, the plugin will look at the plugin directory root (where `killbill.properties` is located) to find this file.
124
- Alternatively, set the Kill Bill system property `-Dcom.ning.billing.osgi.bundles.jruby.conf.dir=/my/directory` to specify another location.
124
+ Alternatively, set the Kill Bill system property `-Dorg.killbill.billing.osgi.bundles.jruby.conf.dir=/my/directory` to specify another location.
125
125
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.9.9
1
+ 1.10.0
@@ -22,11 +22,9 @@ Gem::Specification.new do |s|
22
22
 
23
23
  s.rdoc_options << '--exclude' << '.'
24
24
 
25
- s.add_dependency 'killbill', '~> 2.0.0'
25
+ s.add_dependency 'killbill', '~> 3.0.0'
26
26
  s.add_dependency 'activemerchant', '~> 1.36.0'
27
27
  s.add_dependency 'activerecord', '~> 3.2.1'
28
- # Required to avoid errors like java.lang.NoClassDefFoundError: org/bouncycastle/asn1/DERBoolean
29
- s.add_dependency 'jruby-openssl', '~> 0.9.4'
30
28
  s.add_dependency 'money', '~> 6.0.0'
31
29
  s.add_dependency 'sinatra', '~> 1.3.4'
32
30
  # LitleOnline gem dependencies
@@ -35,6 +33,8 @@ Gem::Specification.new do |s|
35
33
  s.add_dependency 'xml-object', '~> 0.9.93'
36
34
  if defined?(JRUBY_VERSION)
37
35
  s.add_dependency 'activerecord-jdbcmysql-adapter', '~> 1.2.9'
36
+ # Required to avoid errors like java.lang.NoClassDefFoundError: org/bouncycastle/asn1/DERBoolean
37
+ s.add_dependency 'jruby-openssl', '~> 0.9.4'
38
38
  end
39
39
 
40
40
  s.add_development_dependency 'jbundler', '~> 0.4.1'
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>litle-plugin</artifactId>
27
27
  <packaging>pom</packaging>
28
- <version>1.9.9</version>
28
+ <version>1.10.0</version>
29
29
  <name>litle-plugin</name>
30
30
  <url>http://github.com/killbill/killbill-litle-plugin</url>
31
31
  <description>Plugin for accessing Litle as a payment gateway</description>
data/release.sh CHANGED
@@ -31,7 +31,7 @@ rake killbill:package
31
31
  ARTIFACT="$PWD/pkg/killbill-litle-$VERSION.tar.gz"
32
32
  echo "Pushing $ARTIFACT to Maven Central"
33
33
  mvn gpg:sign-and-deploy-file \
34
- -DgroupId=com.ning.killbill.ruby \
34
+ -DgroupId=org.kill-bill.billing.plugin.ruby \
35
35
  -DartifactId=litle-plugin \
36
36
  -Dversion=$VERSION \
37
37
  -Dpackaging=tar.gz \
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: killbill-litle
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.9
4
+ version: 1.10.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-23 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
@@ -52,20 +52,6 @@ dependencies:
52
52
  version: 3.2.1
53
53
  prerelease: false
54
54
  type: :runtime
55
- - !ruby/object:Gem::Dependency
56
- name: jruby-openssl
57
- version_requirements: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - ~>
60
- - !ruby/object:Gem::Version
61
- version: 0.9.4
62
- requirement: !ruby/object:Gem::Requirement
63
- requirements:
64
- - - ~>
65
- - !ruby/object:Gem::Version
66
- version: 0.9.4
67
- prerelease: false
68
- type: :runtime
69
55
  - !ruby/object:Gem::Dependency
70
56
  name: money
71
57
  version_requirements: !ruby/object:Gem::Requirement
@@ -150,6 +136,20 @@ dependencies:
150
136
  version: 1.2.9
151
137
  prerelease: false
152
138
  type: :runtime
139
+ - !ruby/object:Gem::Dependency
140
+ name: jruby-openssl
141
+ version_requirements: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ~>
144
+ - !ruby/object:Gem::Version
145
+ version: 0.9.4
146
+ requirement: !ruby/object:Gem::Requirement
147
+ requirements:
148
+ - - ~>
149
+ - !ruby/object:Gem::Version
150
+ version: 0.9.4
151
+ prerelease: false
152
+ type: :runtime
153
153
  - !ruby/object:Gem::Dependency
154
154
  name: jbundler
155
155
  version_requirements: !ruby/object:Gem::Requirement
@@ -269,7 +269,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
269
269
  version: '0'
270
270
  requirements: []
271
271
  rubyforge_project:
272
- rubygems_version: 2.2.0
272
+ rubygems_version: 2.1.9
273
273
  signing_key:
274
274
  specification_version: 4
275
275
  summary: Plugin to use Litle & Co. as a gateway.