killbill-currency-plugin 1.1.2 → 1.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Jarfile +5 -5
- data/README.md +3 -1
- data/VERSION +1 -1
- data/killbill-currency-plugin.gemspec +1 -1
- data/lib/currency_plugin/api.rb +1 -1
- data/pom.xml +1 -1
- metadata +28 -48
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 889f2ee1929fe61eb510cad154abe1c853a670bf
|
4
|
+
data.tar.gz: 176b8e85fbf772b61e9917226727bc07a51e7e92
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3efb4b543e49ea8c648cafd3351ff858d16bf89554b5863d8e30ae78d8b2461d9643a800a1f52fa430fee35e379e8c68b53d3c0fd758b9cddd7e95571adffeaf
|
7
|
+
data.tar.gz: 53c86a43c6f32627ca12a429063a433e164fcd7f9b21f7ad07ae33ce0eb72c2bdd56549ddafe53f9d016f01dff73a4838e993867ecc98a9daa2e63ed8e0a3180
|
data/Jarfile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
jar 'com.ning.billing:killbill-api', '0.
|
2
|
-
jar 'com.ning.billing.plugin:killbill-plugin-api-notification', '0.6.
|
3
|
-
jar 'com.ning.billing.plugin:killbill-plugin-api-payment', '0.6.
|
4
|
-
jar 'com.ning.billing.plugin:killbill-plugin-api-currency', '0.6.
|
5
|
-
jar 'com.ning.billing:killbill-util:tests', '0.
|
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'
|
6
6
|
jar 'javax.servlet:javax.servlet-api', '3.0.1'
|
data/README.md
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
killbill-currency-plugin
|
2
|
-
|
2
|
+
========================
|
3
3
|
|
4
4
|
A default currency plugin based on a set of static currency conversion tables.
|
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%22killbill-currency-plugin%22) with coordinates `com.ning.killbill.ruby:killbill-currency-plugin`.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.3
|
@@ -22,7 +22,7 @@ Gem::Specification.new do |s|
|
|
22
22
|
|
23
23
|
s.rdoc_options << '--exclude' << '.'
|
24
24
|
|
25
|
-
s.add_dependency 'killbill', '~>
|
25
|
+
s.add_dependency 'killbill', '~> 2.0.0'
|
26
26
|
s.add_dependency 'activerecord', '~> 3.2.1'
|
27
27
|
if defined?(JRUBY_VERSION)
|
28
28
|
s.add_dependency 'activerecord-jdbcmysql-adapter', '~> 1.2.9'
|
data/lib/currency_plugin/api.rb
CHANGED
@@ -10,7 +10,7 @@ module Killbill
|
|
10
10
|
class DefaultPlugin < Killbill::Plugin::Currency
|
11
11
|
|
12
12
|
|
13
|
-
def self.initialize!(conf_dir=File.expand_path('
|
13
|
+
def self.initialize!(conf_dir=File.expand_path('../../', File.dirname(__FILE__)))
|
14
14
|
|
15
15
|
config_file = "#{conf_dir}/currency.yml"
|
16
16
|
|
data/pom.xml
CHANGED
@@ -25,7 +25,7 @@
|
|
25
25
|
<groupId>com.ning.killbill.ruby</groupId>
|
26
26
|
<artifactId>killbill-currency-plugin</artifactId>
|
27
27
|
<packaging>pom</packaging>
|
28
|
-
<version>1.1.
|
28
|
+
<version>1.1.3</version>
|
29
29
|
<name>killbill-currency-plugin</name>
|
30
30
|
<description></description>
|
31
31
|
<scm>
|
metadata
CHANGED
@@ -1,126 +1,111 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: killbill-currency-plugin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
version: 1.1.2
|
4
|
+
version: 1.1.3
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Kill Bill core team
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2014-01-16 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: killbill
|
16
15
|
version_requirements: !ruby/object:Gem::Requirement
|
17
16
|
requirements:
|
18
|
-
- -
|
17
|
+
- - ~>
|
19
18
|
- !ruby/object:Gem::Version
|
20
|
-
version:
|
21
|
-
none: false
|
19
|
+
version: 2.0.0
|
22
20
|
requirement: !ruby/object:Gem::Requirement
|
23
21
|
requirements:
|
24
|
-
- -
|
22
|
+
- - ~>
|
25
23
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
27
|
-
none: false
|
24
|
+
version: 2.0.0
|
28
25
|
prerelease: false
|
29
26
|
type: :runtime
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: activerecord
|
32
29
|
version_requirements: !ruby/object:Gem::Requirement
|
33
30
|
requirements:
|
34
|
-
- -
|
31
|
+
- - ~>
|
35
32
|
- !ruby/object:Gem::Version
|
36
33
|
version: 3.2.1
|
37
|
-
none: false
|
38
34
|
requirement: !ruby/object:Gem::Requirement
|
39
35
|
requirements:
|
40
|
-
- -
|
36
|
+
- - ~>
|
41
37
|
- !ruby/object:Gem::Version
|
42
38
|
version: 3.2.1
|
43
|
-
none: false
|
44
39
|
prerelease: false
|
45
40
|
type: :runtime
|
46
41
|
- !ruby/object:Gem::Dependency
|
47
42
|
name: activerecord-jdbcmysql-adapter
|
48
43
|
version_requirements: !ruby/object:Gem::Requirement
|
49
44
|
requirements:
|
50
|
-
- -
|
45
|
+
- - ~>
|
51
46
|
- !ruby/object:Gem::Version
|
52
47
|
version: 1.2.9
|
53
|
-
none: false
|
54
48
|
requirement: !ruby/object:Gem::Requirement
|
55
49
|
requirements:
|
56
|
-
- -
|
50
|
+
- - ~>
|
57
51
|
- !ruby/object:Gem::Version
|
58
52
|
version: 1.2.9
|
59
|
-
none: false
|
60
53
|
prerelease: false
|
61
54
|
type: :runtime
|
62
55
|
- !ruby/object:Gem::Dependency
|
63
56
|
name: jbundler
|
64
57
|
version_requirements: !ruby/object:Gem::Requirement
|
65
58
|
requirements:
|
66
|
-
- -
|
59
|
+
- - ~>
|
67
60
|
- !ruby/object:Gem::Version
|
68
61
|
version: 0.4.1
|
69
|
-
none: false
|
70
62
|
requirement: !ruby/object:Gem::Requirement
|
71
63
|
requirements:
|
72
|
-
- -
|
64
|
+
- - ~>
|
73
65
|
- !ruby/object:Gem::Version
|
74
66
|
version: 0.4.1
|
75
|
-
none: false
|
76
67
|
prerelease: false
|
77
68
|
type: :development
|
78
69
|
- !ruby/object:Gem::Dependency
|
79
70
|
name: rake
|
80
71
|
version_requirements: !ruby/object:Gem::Requirement
|
81
72
|
requirements:
|
82
|
-
- -
|
73
|
+
- - '>='
|
83
74
|
- !ruby/object:Gem::Version
|
84
75
|
version: 10.0.0
|
85
|
-
none: false
|
86
76
|
requirement: !ruby/object:Gem::Requirement
|
87
77
|
requirements:
|
88
|
-
- -
|
78
|
+
- - '>='
|
89
79
|
- !ruby/object:Gem::Version
|
90
80
|
version: 10.0.0
|
91
|
-
none: false
|
92
81
|
prerelease: false
|
93
82
|
type: :development
|
94
83
|
- !ruby/object:Gem::Dependency
|
95
84
|
name: rspec
|
96
85
|
version_requirements: !ruby/object:Gem::Requirement
|
97
86
|
requirements:
|
98
|
-
- -
|
87
|
+
- - ~>
|
99
88
|
- !ruby/object:Gem::Version
|
100
89
|
version: 2.12.0
|
101
|
-
none: false
|
102
90
|
requirement: !ruby/object:Gem::Requirement
|
103
91
|
requirements:
|
104
|
-
- -
|
92
|
+
- - ~>
|
105
93
|
- !ruby/object:Gem::Version
|
106
94
|
version: 2.12.0
|
107
|
-
none: false
|
108
95
|
prerelease: false
|
109
96
|
type: :development
|
110
97
|
- !ruby/object:Gem::Dependency
|
111
98
|
name: activerecord-jdbcsqlite3-adapter
|
112
99
|
version_requirements: !ruby/object:Gem::Requirement
|
113
100
|
requirements:
|
114
|
-
- -
|
101
|
+
- - ~>
|
115
102
|
- !ruby/object:Gem::Version
|
116
103
|
version: 1.2.6
|
117
|
-
none: false
|
118
104
|
requirement: !ruby/object:Gem::Requirement
|
119
105
|
requirements:
|
120
|
-
- -
|
106
|
+
- - ~>
|
121
107
|
- !ruby/object:Gem::Version
|
122
108
|
version: 1.2.6
|
123
|
-
none: false
|
124
109
|
prerelease: false
|
125
110
|
type: :development
|
126
111
|
description: Currency Plugin based on a static currency table.
|
@@ -129,8 +114,8 @@ executables: []
|
|
129
114
|
extensions: []
|
130
115
|
extra_rdoc_files: []
|
131
116
|
files:
|
132
|
-
-
|
133
|
-
-
|
117
|
+
- .gitignore
|
118
|
+
- .travis.yml
|
134
119
|
- Gemfile
|
135
120
|
- Jarfile
|
136
121
|
- README.md
|
@@ -153,33 +138,28 @@ files:
|
|
153
138
|
homepage: http://kill-bill.org
|
154
139
|
licenses:
|
155
140
|
- Apache License (2.0)
|
141
|
+
metadata: {}
|
156
142
|
post_install_message:
|
157
143
|
rdoc_options:
|
158
|
-
-
|
159
|
-
-
|
144
|
+
- --exclude
|
145
|
+
- .
|
160
146
|
require_paths:
|
161
147
|
- lib
|
162
148
|
required_ruby_version: !ruby/object:Gem::Requirement
|
163
149
|
requirements:
|
164
|
-
- -
|
150
|
+
- - '>='
|
165
151
|
- !ruby/object:Gem::Version
|
166
152
|
version: 1.9.3
|
167
|
-
none: false
|
168
153
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
169
154
|
requirements:
|
170
|
-
- -
|
155
|
+
- - '>='
|
171
156
|
- !ruby/object:Gem::Version
|
172
|
-
|
173
|
-
- 0
|
174
|
-
hash: 2
|
175
|
-
version: !binary |-
|
176
|
-
MA==
|
177
|
-
none: false
|
157
|
+
version: '0'
|
178
158
|
requirements: []
|
179
159
|
rubyforge_project:
|
180
|
-
rubygems_version:
|
160
|
+
rubygems_version: 2.2.0
|
181
161
|
signing_key:
|
182
|
-
specification_version:
|
162
|
+
specification_version: 4
|
183
163
|
summary: Default Currency Plugin.
|
184
164
|
test_files:
|
185
165
|
- spec/currency_plugin/api_spec.rb
|