killbill-currency-plugin 1.3.1 → 2.0.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: 21afd615db84b37f240373c2192a8f71cdbf7ba5
4
- data.tar.gz: 1bf10d7285b6f9356f15f4b89d2d249be6c7085a
3
+ metadata.gz: 49b458ed5c0f8a753d98e70478c8cb415100f749
4
+ data.tar.gz: 7f86e2672de8c4ea09e426e2e290f1a02c4284bd
5
5
  SHA512:
6
- metadata.gz: 5eec4f7274d6813e76dd8b7d4aa3d36eb2aefa5607e51b76172f5809babbe9e4fef24985d0291319ef6b80a75610ebf39b3c433ca7512a398b00e58e380bd1f6
7
- data.tar.gz: 725081e4812ecbfbcc08ae1d2e27807d016543fdb0fef4ce36ef625730d47b3f9f0bf497b59c08e89467c52a5c5d67a8319fdae89b35ee71035b9bea3ce527d5
6
+ metadata.gz: a54606535344490ab2aa4a8be6db5f792e0bb217588aba8333c2dba70f55d496e60a5269f17f639d244742af7cf6595a64042ec926e8646ae93a934ddbb51e4e
7
+ data.tar.gz: 5be835cec5fb0212ed13339dc0fa1ddbb7262322c9bb0eb2a96409fc5de6d2a9600687157abee6e9679ad74a13ca9a4f9b69f54e11ef7b8fca99c0aa5b6881c5
data/.gitignore CHANGED
@@ -1,5 +1,6 @@
1
1
  *.gem
2
2
  *.rbc
3
+ *.swp
3
4
  .bundle
4
5
  .config
5
6
  coverage
@@ -11,16 +12,22 @@ spec/reports
11
12
  test/tmp
12
13
  test/version_tmp
13
14
  tmp
14
- build
15
- test.db
16
- killbill-currency-plugin*
15
+
17
16
  # YARD artifacts
18
17
  .yardoc
19
18
  _yardoc
20
19
  doc/
20
+
21
21
  .jbundler
22
- Jarfile.lock
23
- Gemfile.lock
24
- *.swp
25
- .idea
22
+
23
+ .DS_Store
24
+
25
+ # Testing database
26
+ test.db
27
+
28
+ target
26
29
  pom.xml.asc
30
+
31
+ .idea/
32
+
33
+ Gemfile.head.lock
data/.travis.yml CHANGED
@@ -1,19 +1,41 @@
1
1
  language: ruby
2
2
 
3
+ sudo: false
4
+ cache: bundler
5
+
6
+ before_script:
7
+ - bundle exec jbundle install
8
+
9
+ script: 'bundle exec rake spec'
10
+
3
11
  notifications:
4
12
  email:
5
13
  - kill-bill-commits@googlegroups.com
6
14
 
15
+ env:
16
+ global:
17
+ - JRUBY_OPTS='-J-Xmx1024M'
18
+
7
19
  rvm:
8
- - jruby-19mode
9
- - jruby-20mode
20
+ - jruby-1.7.20
21
+ - jruby-20mode # latest 1.7.x
10
22
  - jruby-head
11
23
 
24
+ gemfile:
25
+ - Gemfile
26
+ - Gemfile.head
27
+
12
28
  jdk:
13
- - openjdk6
14
29
  - openjdk7
15
30
  - oraclejdk7
31
+ - oraclejdk8
16
32
 
17
33
  matrix:
18
34
  allow_failures:
19
35
  - rvm: jruby-head
36
+ - jdk: oraclejdk8
37
+ - gemfile: Gemfile.head
38
+ fast_finish: true
39
+
40
+ after_success:
41
+ - '[ "${TRAVIS_PULL_REQUEST}" = "false" ] && echo "<settings><servers><server><id>sonatype-nexus-snapshots</id><username>\${env.OSSRH_USER}</username><password>\${env.OSSRH_PASS}</password></server></servers></settings>" > ~/settings.xml && MVN="mvn --settings $HOME/settings.xml" NO_RELEASE=1 travis_retry travis_wait bash release.sh | egrep -v "Download|Install|Upload" ; rm -f ~/settings.xml'
data/Gemfile CHANGED
@@ -1,5 +1,3 @@
1
- source "http://rubygems.org"
1
+ source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
-
5
- #gem 'killbill', :path => '../killbill-plugin-framework-ruby'
data/Gemfile.lock ADDED
@@ -0,0 +1,106 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ killbill-currency-plugin (2.0.0)
5
+ activerecord (~> 4.1.0)
6
+ activerecord-bogacs (~> 0.3)
7
+ activerecord-jdbc-adapter (~> 1.3)
8
+ killbill (~> 7.0)
9
+
10
+ GEM
11
+ remote: https://rubygems.org/
12
+ specs:
13
+ activemodel (4.1.14)
14
+ activesupport (= 4.1.14)
15
+ builder (~> 3.1)
16
+ activerecord (4.1.14)
17
+ activemodel (= 4.1.14)
18
+ activesupport (= 4.1.14)
19
+ arel (~> 5.0.0)
20
+ activerecord-bogacs (0.4.1)
21
+ activerecord-jdbc-adapter (1.3.19)
22
+ activerecord (>= 2.2)
23
+ activesupport (4.1.14)
24
+ i18n (~> 0.6, >= 0.6.9)
25
+ json (~> 1.7, >= 1.7.7)
26
+ minitest (~> 5.1)
27
+ thread_safe (~> 0.1)
28
+ tzinfo (~> 1.1)
29
+ arel (5.0.1.20140414130214)
30
+ axiom-types (0.1.1)
31
+ descendants_tracker (~> 0.0.4)
32
+ ice_nine (~> 0.11.0)
33
+ thread_safe (~> 0.3, >= 0.3.1)
34
+ builder (3.2.2)
35
+ coercible (1.0.0)
36
+ descendants_tracker (~> 0.0.1)
37
+ descendants_tracker (0.0.4)
38
+ thread_safe (~> 0.3, >= 0.3.1)
39
+ diff-lcs (1.1.3)
40
+ equalizer (0.0.11)
41
+ ethon (0.8.0)
42
+ ffi (>= 1.3.0)
43
+ ffi (1.9.10-java)
44
+ i18n (0.7.0)
45
+ ice_nine (0.11.1)
46
+ jar-dependencies (0.3.1)
47
+ jbundler (0.9.2)
48
+ bundler (~> 1.5)
49
+ jar-dependencies (~> 0.2)
50
+ maven-tools (~> 1.0.10)
51
+ ruby-maven (~> 3.3, >= 3.3.3)
52
+ jdbc-mariadb (1.2.3)
53
+ jdbc-sqlite3 (3.8.11.2)
54
+ json (1.8.3-java)
55
+ killbill (7.0.0)
56
+ rack (>= 1.5.2)
57
+ sinatra (~> 1.3.4)
58
+ typhoeus (~> 0.6.9)
59
+ tzinfo (~> 1.2.0)
60
+ maven-tools (1.0.13)
61
+ virtus (~> 1.0)
62
+ minitest (5.8.3)
63
+ rack (1.6.4)
64
+ rack-protection (1.5.3)
65
+ rack
66
+ rake (10.4.2)
67
+ rspec (2.12.0)
68
+ rspec-core (~> 2.12.0)
69
+ rspec-expectations (~> 2.12.0)
70
+ rspec-mocks (~> 2.12.0)
71
+ rspec-core (2.12.2)
72
+ rspec-expectations (2.12.1)
73
+ diff-lcs (~> 1.1.3)
74
+ rspec-mocks (2.12.2)
75
+ ruby-maven (3.3.8)
76
+ ruby-maven-libs (~> 3.3.1)
77
+ ruby-maven-libs (3.3.3)
78
+ sinatra (1.3.6)
79
+ rack (~> 1.4)
80
+ rack-protection (~> 1.3)
81
+ tilt (~> 1.3, >= 1.3.3)
82
+ thread_safe (0.3.5-java)
83
+ tilt (1.4.1)
84
+ typhoeus (0.6.9)
85
+ ethon (>= 0.7.1)
86
+ tzinfo (1.2.2)
87
+ thread_safe (~> 0.1)
88
+ virtus (1.0.5)
89
+ axiom-types (~> 0.1)
90
+ coercible (~> 1.0)
91
+ descendants_tracker (~> 0.0, >= 0.0.3)
92
+ equalizer (~> 0.0, >= 0.0.9)
93
+
94
+ PLATFORMS
95
+ java
96
+
97
+ DEPENDENCIES
98
+ jbundler (~> 0.9.2)
99
+ jdbc-mariadb (~> 1.1)
100
+ jdbc-sqlite3 (~> 3.7)
101
+ killbill-currency-plugin!
102
+ rake (>= 10.0.0)
103
+ rspec (~> 2.12.0)
104
+
105
+ BUNDLED WITH
106
+ 1.10.6
data/Jarfile CHANGED
@@ -1,6 +1,11 @@
1
- jar 'org.kill-bill.billing:killbill-api', '0.9.5'
2
- jar 'org.kill-bill.billing.plugin:killbill-plugin-api-notification', '0.7.2'
3
- jar 'org.kill-bill.billing.plugin:killbill-plugin-api-payment', '0.7.2'
4
- jar 'org.kill-bill.billing.plugin:killbill-plugin-api-currency', '0.7.2'
5
- jar 'org.kill-bill.billing:killbill-util:tests', '0.11.2'
6
- jar 'javax.servlet:javax.servlet-api', '3.0.1'
1
+ jar 'org.kill-bill.billing:killbill-api', '0.32'
2
+ jar 'org.kill-bill.billing.plugin:killbill-plugin-api-currency', '0.18'
3
+ jar 'org.kill-bill.billing.plugin:killbill-plugin-api-invoice', '0.18'
4
+ jar 'org.kill-bill.billing.plugin:killbill-plugin-api-notification', '0.18'
5
+ jar 'org.kill-bill.billing.plugin:killbill-plugin-api-payment', '0.18'
6
+ jar 'org.kill-bill.billing.plugin:killbill-plugin-api-control', '0.18'
7
+ jar 'org.kill-bill.billing.plugin:killbill-plugin-api-catalog', '0.18'
8
+ jar 'org.kill-bill.billing.plugin:killbill-plugin-api-entitlement', '0.18'
9
+ jar 'org.kill-bill.billing:killbill-util:tests', '0.15.10'
10
+ jar 'org.mockito:mockito-all', '1.10.19'
11
+ jar 'javax.servlet:javax.servlet-api', '3.1.0'
data/Jarfile.lock ADDED
@@ -0,0 +1,61 @@
1
+ ---
2
+ :runtime:
3
+ - io.dropwizard.metrics:metrics-core:jar:3.1.1
4
+ - org.kill-bill.billing.plugin:killbill-plugin-api-catalog:jar:0.18
5
+ - com.fasterxml.jackson.core:jackson-core:jar:2.4.3
6
+ - joda-time:joda-time:jar:2.3
7
+ - org.weakref:jmxutils:jar:1.18
8
+ - org.kill-bill.billing.plugin:killbill-plugin-api-notification:jar:0.18
9
+ - commons-beanutils:commons-beanutils:jar:1.8.3
10
+ - org.kill-bill.billing:killbill-internal-api:jar:0.15.10
11
+ - org.kill-bill.commons:killbill-xmlloader:jar:0.11
12
+ - org.kill-bill.billing.plugin:killbill-plugin-api-entitlement:jar:0.18
13
+ - com.google.inject:guice:jar:3.0
14
+ - org.osgi:org.osgi.core:jar:5.0.0
15
+ - org.slf4j:slf4j-api:jar:1.7.12
16
+ - com.samskivert:jmustache:jar:1.5
17
+ - org.kill-bill.billing:killbill-util:jar:tests:0.15.10
18
+ - org.kill-bill.billing.plugin:killbill-plugin-api-currency:jar:0.18
19
+ - org.bgee.log4jdbc-log4j2:log4jdbc-log4j2-jdbc4:jar:1.16
20
+ - com.h2database:h2:jar:1.4.186
21
+ - javax.activation:activation:jar:1.1
22
+ - org.skife.config:config-magic:jar:0.14
23
+ - com.fasterxml.jackson.dataformat:jackson-dataformat-csv:jar:2.4.3
24
+ - org.kill-bill.billing.plugin:killbill-plugin-api-control:jar:0.18
25
+ - org.apache.commons:commons-email:jar:1.2
26
+ - org.mockito:mockito-all:jar:1.10.19
27
+ - antlr:antlr:jar:2.7.7
28
+ - aopalliance:aopalliance:jar:1.0
29
+ - com.fasterxml.jackson.core:jackson-annotations:jar:2.4.3
30
+ - org.antlr:stringtemplate:jar:3.2.1
31
+ - org.kill-bill.commons:killbill-clock:jar:0.11
32
+ - javax.mail:mail:jar:1.4.1
33
+ - org.kill-bill.billing:killbill-platform-base:jar:0.15
34
+ - io.dropwizard.metrics:metrics-ehcache:jar:3.1.1
35
+ - org.slf4j:jcl-over-slf4j:jar:1.7.12
36
+ - org.jdbi:jdbi:jar:2.62
37
+ - org.kill-bill.billing:killbill-platform-api:jar:0.15
38
+ - org.kill-bill.billing:killbill-platform-osgi:jar:0.15
39
+ - org.apache.felix:org.apache.felix.framework:jar:4.4.1
40
+ - org.joda:joda-money:jar:0.9
41
+ - org.kill-bill.commons:killbill-jdbi:jar:0.11
42
+ - org.kill-bill.commons:killbill-embeddeddb-common:jar:0.11
43
+ - org.apache.shiro:shiro-core:jar:1.2.3
44
+ - org.kill-bill.billing:killbill-platform-osgi-api:jar:0.15
45
+ - org.kill-bill.billing.plugin:killbill-plugin-api-payment:jar:0.18
46
+ - com.fasterxml.jackson.core:jackson-databind:jar:2.4.3
47
+ - com.google.guava:guava:jar:r09
48
+ - org.kill-bill.commons:killbill-locker:jar:0.11
49
+ - org.osgi:org.osgi.compendium:jar:5.0.0
50
+ - org.kill-bill.commons:killbill-queue:jar:0.11
51
+ - org.kill-bill.commons:killbill-concurrent:jar:0.11
52
+ - javax.servlet:javax.servlet-api:jar:3.1.0
53
+ - org.apache.shiro:shiro-ehcache:jar:1.2.3
54
+ - javax.inject:javax.inject:jar:1
55
+ - com.fasterxml.jackson.datatype:jackson-datatype-joda:jar:2.4.3
56
+ - com.google.inject.extensions:guice-multibindings:jar:3.0
57
+ - net.sf.ehcache:ehcache:jar:2.9.1
58
+ - org.kill-bill.billing.plugin:killbill-plugin-api-invoice:jar:0.18
59
+ - org.kill-bill.billing:killbill-api:jar:0.32
60
+ - org.apache.shiro:shiro-guice:jar:1.2.3
61
+ - com.google.code.findbugs:annotations:jar:3.0.0
data/README.md CHANGED
@@ -4,3 +4,10 @@ killbill-currency-plugin
4
4
  A default currency plugin based on a set of static currency conversion tables.
5
5
 
6
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%22killbill-currency-plugin%22) with coordinates `org.kill-bill.billing.plugin.ruby:killbill-currency-plugin`.
7
+
8
+ Kill Bill compatibility
9
+ -----------------------
10
+
11
+ | Plugin version | Kill Bill version |
12
+ | -------------: | ----------------: |
13
+ | 2.0.0 | 0.16.z |
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.1
1
+ 2.0.0
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
12
12
 
13
13
  s.author = 'Kill Bill core team'
14
14
  s.email = 'killbilling-users@googlegroups.com'
15
- s.homepage = 'http://kill-bill.org'
15
+ s.homepage = 'http://killbill.io'
16
16
 
17
17
  s.files = `git ls-files`.split("\n")
18
18
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
@@ -22,17 +22,19 @@ Gem::Specification.new do |s|
22
22
 
23
23
  s.rdoc_options << '--exclude' << '.'
24
24
 
25
- s.add_dependency 'killbill', '~> 3.1.1'
25
+ s.add_dependency 'killbill', '~> 7.0'
26
26
  s.add_dependency 'activerecord', '~> 4.1.0'
27
27
  if defined?(JRUBY_VERSION)
28
- s.add_dependency 'activerecord-jdbcmysql-adapter', '~> 1.3.7'
28
+ s.add_dependency 'activerecord-bogacs', '~> 0.3'
29
+ s.add_dependency 'activerecord-jdbc-adapter', '~> 1.3'
29
30
  end
30
31
 
31
- s.add_development_dependency 'jbundler', '~> 0.4.1'
32
+ s.add_development_dependency 'jbundler', '~> 0.9.2'
32
33
  s.add_development_dependency 'rake', '>= 10.0.0'
33
34
  s.add_development_dependency 'rspec', '~> 2.12.0'
34
35
  if defined?(JRUBY_VERSION)
35
- s.add_development_dependency 'activerecord-jdbcsqlite3-adapter', '~> 1.3.7'
36
+ s.add_development_dependency 'jdbc-sqlite3', '~> 3.7'
37
+ s.add_development_dependency 'jdbc-mariadb', '~> 1.1'
36
38
  else
37
39
  s.add_development_dependency 'sqlite3', '~> 1.3.7'
38
40
  end
data/pom.xml CHANGED
@@ -1,8 +1,10 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <!--
3
3
  ~ Copyright 2010-2013 Ning, Inc.
4
+ ~ Copyright 2014-2015 Groupon, Inc
5
+ ~ Copyright 2014-2015 The Billing Project, LLC
4
6
  ~
5
- ~ Ning licenses this file to you under the Apache License, version 2.0
7
+ ~ The Billing Project licenses this file to you under the Apache License, version 2.0
6
8
  ~ (the "License"); you may not use this file except in compliance with the
7
9
  ~ License. You may obtain a copy of the License at:
8
10
  ~
@@ -25,7 +27,7 @@
25
27
  <groupId>org.kill-bill.billing.plugin.ruby</groupId>
26
28
  <artifactId>killbill-currency-plugin</artifactId>
27
29
  <packaging>pom</packaging>
28
- <version>1.3.1</version>
30
+ <version>2.0.0</version>
29
31
  <name>killbill-currency-plugin</name>
30
32
  <description></description>
31
33
  <scm>
data/release.sh CHANGED
@@ -1,41 +1,61 @@
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"
3
+ BUNDLE=${BUNDLE-"bundle exec"}
4
+ MVN=${MVN-"mvn"}
5
+
6
+ if [ 'GNU' != "$(tar --help | grep GNU | head -1 | awk '{print $1}')" ]; then
7
+ echo 'Unable to release: make sure to use GNU tar'
5
8
  exit 1
6
9
  fi
7
10
 
8
11
  if $(ruby -e'require "java"'); then
9
12
  # Good
10
- echo "Detected JRuby"
13
+ echo 'Detected JRuby'
11
14
  else
12
- echo "Unable to release: make sure to use JRuby"
15
+ echo 'Unable to release: make sure to use JRuby'
13
16
  exit 1
14
17
  fi
15
18
 
16
19
  VERSION=`grep -E '<version>([0-9]+\.[0-9]+\.[0-9]+)</version>' pom.xml | sed 's/[\t \n]*<version>\(.*\)<\/version>[\t \n]*/\1/'`
17
- if [ "$VERSION" != "$(cat $PWD/VERSION)" ]; then
18
- echo "Unable to release: make sure the versions in pom.xml and VERSION match"
20
+ if [[ -z "$NO_RELEASE" && "$VERSION" != "$(cat $PWD/VERSION)" ]]; then
21
+ echo 'Unable to release: make sure the versions in pom.xml and VERSION match'
19
22
  exit 1
20
23
  fi
21
24
 
22
- echo "Cleaning up"
23
- rake killbill:clean ; rake build
25
+ echo 'Cleaning up'
26
+ $BUNDLE rake killbill:clean
27
+
28
+ echo 'Building gem'
29
+ $BUNDLE rake build
24
30
 
25
- echo "Pushing the gem to Rubygems"
26
- rake release
31
+ if [[ -z "$NO_RELEASE" ]]; then
32
+ echo 'Pushing the gem to Rubygems'
33
+ $BUNDLE rake release
34
+ fi
27
35
 
28
- echo "Building artifact"
29
- rake killbill:package
36
+ echo 'Building artifact'
37
+ $BUNDLE rake killbill:package
30
38
 
31
39
  ARTIFACT="$PWD/pkg/killbill-currency-plugin-$VERSION.tar.gz"
32
40
  echo "Pushing $ARTIFACT to Maven Central"
33
- mvn gpg:sign-and-deploy-file \
34
- -DgroupId=org.kill-bill.billing.plugin.ruby \
35
- -DartifactId=killbill-currency-plugin \
36
- -Dversion=$VERSION \
37
- -Dpackaging=tar.gz \
38
- -DrepositoryId=ossrh-releases \
39
- -Durl=https://oss.sonatype.org/service/local/staging/deploy/maven2/ \
40
- -Dfile=$ARTIFACT \
41
- -DpomFile=pom.xml
41
+
42
+ if [[ -z "$NO_RELEASE" ]]; then
43
+ GOAL=gpg:sign-and-deploy-file
44
+ REPOSITORY_ID=ossrh-releases
45
+ URL=https://oss.sonatype.org/service/local/staging/deploy/maven2/
46
+ else
47
+ GOAL=deploy:deploy-file
48
+ REPOSITORY_ID=sonatype-nexus-snapshots
49
+ URL=https://oss.sonatype.org/content/repositories/snapshots/
50
+ VERSION="$VERSION-SNAPSHOT"
51
+ fi
52
+
53
+ $MVN $GOAL \
54
+ -DgroupId=org.kill-bill.billing.plugin.ruby \
55
+ -DartifactId=killbill-currency-plugin \
56
+ -Dversion=$VERSION \
57
+ -Dpackaging=tar.gz \
58
+ -DrepositoryId=$REPOSITORY_ID \
59
+ -Durl=$URL \
60
+ -Dfile=$ARTIFACT \
61
+ -DpomFile=pom.xml
@@ -38,7 +38,6 @@ describe Killbill::CurrencyPlugin::CurrencyUpdate do
38
38
  Killbill::CurrencyPlugin::CurrencyUpdate.create :base_currency => 'BRL',
39
39
  :conversion_date => d3
40
40
 
41
-
42
41
  eur_historical = Killbill::CurrencyPlugin::CurrencyUpdate.historical_base_currencies('EUR')
43
42
  eur_historical.size.should == 3
44
43
  Time.at(eur_historical[0].conversion_date).should == Time.at(d2)
@@ -51,7 +50,7 @@ describe Killbill::CurrencyPlugin::CurrencyUpdate do
51
50
  Time.at(eur_latest[0].conversion_date).should == Time.at(d2)
52
51
 
53
52
  distinct_base_currencies = Killbill::CurrencyPlugin::CurrencyUpdate.distinct_base_currencies
54
- distinct_base_currencies.size.should == 3
53
+ distinct_base_currencies.count.should == 3
55
54
  distinct_base_currencies.each_with_index do |c, i|
56
55
  c.base_currency.should == 'BRL' if i == 0
57
56
  c.base_currency.should == 'EUR' if i == 1
@@ -112,4 +111,4 @@ describe Killbill::CurrencyPlugin::CurrencyUpdate do
112
111
  latest_rates_for_usd[2].target_currency.should == 'GBP'
113
112
  latest_rates_for_usd[2].rate.should == 1.61660
114
113
  end
115
- end
114
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: killbill-currency-plugin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 2.0.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-04-28 00:00:00.000000000 Z
11
+ date: 2015-12-18 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: 3.1.1
19
+ version: '7.0'
20
20
  requirement: !ruby/object:Gem::Requirement
21
21
  requirements:
22
22
  - - ~>
23
23
  - !ruby/object:Gem::Version
24
- version: 3.1.1
24
+ version: '7.0'
25
25
  prerelease: false
26
26
  type: :runtime
27
27
  - !ruby/object:Gem::Dependency
@@ -39,17 +39,31 @@ dependencies:
39
39
  prerelease: false
40
40
  type: :runtime
41
41
  - !ruby/object:Gem::Dependency
42
- name: activerecord-jdbcmysql-adapter
42
+ name: activerecord-bogacs
43
43
  version_requirements: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - ~>
46
46
  - !ruby/object:Gem::Version
47
- version: 1.3.7
47
+ version: '0.3'
48
48
  requirement: !ruby/object:Gem::Requirement
49
49
  requirements:
50
50
  - - ~>
51
51
  - !ruby/object:Gem::Version
52
- version: 1.3.7
52
+ version: '0.3'
53
+ prerelease: false
54
+ type: :runtime
55
+ - !ruby/object:Gem::Dependency
56
+ name: activerecord-jdbc-adapter
57
+ version_requirements: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '1.3'
62
+ requirement: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ~>
65
+ - !ruby/object:Gem::Version
66
+ version: '1.3'
53
67
  prerelease: false
54
68
  type: :runtime
55
69
  - !ruby/object:Gem::Dependency
@@ -58,12 +72,12 @@ dependencies:
58
72
  requirements:
59
73
  - - ~>
60
74
  - !ruby/object:Gem::Version
61
- version: 0.4.1
75
+ version: 0.9.2
62
76
  requirement: !ruby/object:Gem::Requirement
63
77
  requirements:
64
78
  - - ~>
65
79
  - !ruby/object:Gem::Version
66
- version: 0.4.1
80
+ version: 0.9.2
67
81
  prerelease: false
68
82
  type: :development
69
83
  - !ruby/object:Gem::Dependency
@@ -95,17 +109,31 @@ dependencies:
95
109
  prerelease: false
96
110
  type: :development
97
111
  - !ruby/object:Gem::Dependency
98
- name: activerecord-jdbcsqlite3-adapter
112
+ name: jdbc-sqlite3
99
113
  version_requirements: !ruby/object:Gem::Requirement
100
114
  requirements:
101
115
  - - ~>
102
116
  - !ruby/object:Gem::Version
103
- version: 1.3.7
117
+ version: '3.7'
104
118
  requirement: !ruby/object:Gem::Requirement
105
119
  requirements:
106
120
  - - ~>
107
121
  - !ruby/object:Gem::Version
108
- version: 1.3.7
122
+ version: '3.7'
123
+ prerelease: false
124
+ type: :development
125
+ - !ruby/object:Gem::Dependency
126
+ name: jdbc-mariadb
127
+ version_requirements: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ~>
130
+ - !ruby/object:Gem::Version
131
+ version: '1.1'
132
+ requirement: !ruby/object:Gem::Requirement
133
+ requirements:
134
+ - - ~>
135
+ - !ruby/object:Gem::Version
136
+ version: '1.1'
109
137
  prerelease: false
110
138
  type: :development
111
139
  description: Currency Plugin based on a static currency table.
@@ -117,7 +145,9 @@ files:
117
145
  - .gitignore
118
146
  - .travis.yml
119
147
  - Gemfile
148
+ - Gemfile.lock
120
149
  - Jarfile
150
+ - Jarfile.lock
121
151
  - README.md
122
152
  - Rakefile
123
153
  - VERSION
@@ -135,7 +165,7 @@ files:
135
165
  - spec/currency_plugin/api_spec.rb
136
166
  - spec/currency_plugin/model_spec.rb
137
167
  - spec/spec_helper.rb
138
- homepage: http://kill-bill.org
168
+ homepage: http://killbill.io
139
169
  licenses:
140
170
  - Apache License (2.0)
141
171
  metadata: {}
@@ -157,11 +187,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
157
187
  version: '0'
158
188
  requirements: []
159
189
  rubyforge_project:
160
- rubygems_version: 2.2.2
190
+ rubygems_version: 2.1.9
161
191
  signing_key:
162
192
  specification_version: 4
163
193
  summary: Default Currency Plugin.
164
- test_files:
165
- - spec/currency_plugin/api_spec.rb
166
- - spec/currency_plugin/model_spec.rb
167
- - spec/spec_helper.rb
194
+ test_files: []