klogger 1.6.5 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (9) hide show
  1. checksums.yaml +4 -4
  2. data/Jarfile +5 -5
  3. data/NEWS +4 -0
  4. data/README.md +2 -2
  5. data/VERSION +1 -1
  6. data/klogger.gemspec +5 -3
  7. data/pom.xml +2 -2
  8. data/release.sh +1 -1
  9. metadata +11 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: abb2216a43a49dee3c09eb556172e4b50ae42880
4
- data.tar.gz: f75cd6c09f4979a993738305c6573a2560190575
3
+ metadata.gz: 0700da90894071658bc94f54991b6d7609edcf61
4
+ data.tar.gz: f4413d2732673f71d5d72828490004a4a0cdd391
5
5
  SHA512:
6
- metadata.gz: 558d663334014e789cbe695754272259a98f712d6071b44675c44db23dc68184b82cfca9a433cc5f6cb77d478cb52d5147f03e9ff1fd5136fbb13e905e2d2e5b
7
- data.tar.gz: 5878597ef43f7aa4be6e4a593f20f482cad3ba4f6cb0fb50705f4d23946b855c8d98e177f60203ee8539f89e8b37b22b6fe08d85ffd4a6db2cdf7692390e5f70
6
+ metadata.gz: e057e421d8fb3d843b967358b27282dcdaceab23c761bb76af5967fff3396f521185a9b2698449f814dc54e58a9decea0c65b4adbbe0617dddcfa3bb365c59bf
7
+ data.tar.gz: 34eda518dc262b43f175a40869ddcb84ab22199a7db73158fc472abcc3b6582eba3972ebdd7db4060a544a8efa476362ea8778b4bcdddc113db91e2f59f96399
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.7.0
2
+ Update to latest killbill
3
+ Change groupId to org.kill-bill.billing.plugin.ruby
4
+
1
5
  1.6.5
2
6
  Add jruby-openssl dependency
3
7
 
data/README.md CHANGED
@@ -6,7 +6,7 @@ killbill-logging-plugin
6
6
 
7
7
  Plugin to log Kill Bill events to Syslog, IRC, emails, ...
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%22logging-plugin%22) with coordinates `com.ning.killbill.ruby:logging-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%22logging-plugin%22) with coordinates `org.kill-bill.billing.plugin.ruby:logging-plugin`.
10
10
 
11
11
  Configuration
12
12
  -------------
@@ -42,4 +42,4 @@ email:
42
42
  ```
43
43
 
44
44
  By default, the plugin will look at the plugin directory root (where `killbill.properties` is located) to find this file.
45
- Alternatively, set the Kill Bill system property `-Dcom.ning.billing.osgi.bundles.jruby.conf.dir=/my/directory` to specify another location.
45
+ Alternatively, set the Kill Bill system property `-Dorg.killbill.billing.osgi.bundles.jruby.conf.dir=/my/directory` to specify another location.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.5
1
+ 1.7.0
@@ -22,11 +22,13 @@ 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 'cinch', '~> 2.0.3'
27
- # Required to avoid errors like java.lang.NoClassDefFoundError: org/bouncycastle/asn1/DERBoolean
28
- s.add_dependency 'jruby-openssl', '~> 0.9.4'
29
27
  s.add_dependency 'mail', '~> 2.5.3'
28
+ if defined?(JRUBY_VERSION)
29
+ # Required to avoid errors like java.lang.NoClassDefFoundError: org/bouncycastle/asn1/DERBoolean
30
+ s.add_dependency 'jruby-openssl', '~> 0.9.4'
31
+ end
30
32
 
31
33
  s.add_development_dependency 'jbundler', '~> 0.4.1'
32
34
  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>logging-plugin</artifactId>
27
27
  <packaging>pom</packaging>
28
- <version>1.6.5</version>
28
+ <version>1.7.0</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
@@ -31,7 +31,7 @@ rake killbill:package
31
31
  ARTIFACT="$PWD/pkg/klogger-$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=logging-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: klogger
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.5
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-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
@@ -39,31 +39,31 @@ dependencies:
39
39
  prerelease: false
40
40
  type: :runtime
41
41
  - !ruby/object:Gem::Dependency
42
- name: jruby-openssl
42
+ name: mail
43
43
  version_requirements: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - ~>
46
46
  - !ruby/object:Gem::Version
47
- version: 0.9.4
47
+ version: 2.5.3
48
48
  requirement: !ruby/object:Gem::Requirement
49
49
  requirements:
50
50
  - - ~>
51
51
  - !ruby/object:Gem::Version
52
- version: 0.9.4
52
+ version: 2.5.3
53
53
  prerelease: false
54
54
  type: :runtime
55
55
  - !ruby/object:Gem::Dependency
56
- name: mail
56
+ name: jruby-openssl
57
57
  version_requirements: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - ~>
60
60
  - !ruby/object:Gem::Version
61
- version: 2.5.3
61
+ version: 0.9.4
62
62
  requirement: !ruby/object:Gem::Requirement
63
63
  requirements:
64
64
  - - ~>
65
65
  - !ruby/object:Gem::Version
66
- version: 2.5.3
66
+ version: 0.9.4
67
67
  prerelease: false
68
68
  type: :runtime
69
69
  - !ruby/object:Gem::Dependency
@@ -169,7 +169,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
169
169
  version: '0'
170
170
  requirements: []
171
171
  rubyforge_project:
172
- rubygems_version: 2.2.0
172
+ rubygems_version: 2.1.9
173
173
  signing_key:
174
174
  specification_version: 4
175
175
  summary: Plugin to log Kill Bill events.