killbill 1.6.0 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +3 -2
- data/Jarfile +4 -4
- data/NEWS +5 -2
- data/VERSION +1 -1
- data/gen_config/api.conf +2 -1
- data/lib/killbill/gen/api/account_user_api.rb +22 -22
- data/lib/killbill/gen/api/entitlement.rb +8 -36
- data/lib/killbill/gen/api/enumerator_iterator.rb +76 -0
- data/lib/killbill/gen/api/invoice_user_api.rb +17 -0
- data/lib/killbill/gen/api/migration_plan.rb +1 -14
- data/lib/killbill/gen/api/pagination.rb +79 -0
- data/lib/killbill/gen/api/payment.rb +1 -13
- data/lib/killbill/gen/api/payment_api.rb +11 -11
- data/lib/killbill/gen/api/plan.rb +1 -14
- data/lib/killbill/gen/api/require_gen.rb +3 -0
- data/lib/killbill/gen/api/{subscription_user_api_exception.rb → security_api_exception.rb} +2 -2
- data/lib/killbill/gen/api/subscription.rb +8 -42
- data/lib/killbill/gen/api/subscription_api.rb +27 -3
- data/lib/killbill/gen/api/subscription_bundle.rb +15 -1
- data/lib/killbill/gen/plugin-api/payment_plugin_api.rb +9 -11
- metadata +24 -26
- data/lib/killbill/gen/api/subscription_status_dry_run.rb +0 -89
- data/lib/killbill/gen/api/subscription_transition.rb +0 -196
- data/lib/killbill/gen/api/subscription_user_api.rb +0 -303
@@ -429,23 +429,23 @@ module Killbill
|
|
429
429
|
end
|
430
430
|
end
|
431
431
|
|
432
|
-
java_signature 'Java::
|
433
|
-
def search_payment_methods(searchKey, context)
|
432
|
+
java_signature 'Java::com.ning.billing.util.entity.Pagination searchPaymentMethods(Java::java.lang.String, Java::java.lang.Long, Java::java.lang.Long, Java::com.ning.billing.util.callcontext.TenantContext)'
|
433
|
+
def search_payment_methods(searchKey, offset, limit, context)
|
434
434
|
|
435
435
|
# conversion for searchKey [type = java.lang.String]
|
436
436
|
searchKey = searchKey.to_s unless searchKey.nil?
|
437
437
|
|
438
|
+
# conversion for offset [type = java.lang.Long]
|
439
|
+
offset = offset
|
440
|
+
|
441
|
+
# conversion for limit [type = java.lang.Long]
|
442
|
+
limit = limit
|
443
|
+
|
438
444
|
# conversion for context [type = com.ning.billing.util.callcontext.TenantContext]
|
439
445
|
context = context.to_java unless context.nil?
|
440
|
-
res = @real_java_api.search_payment_methods(searchKey, context)
|
441
|
-
# conversion for res [type =
|
442
|
-
|
443
|
-
(res || []).each do |m|
|
444
|
-
# conversion for m [type = com.ning.billing.payment.api.PaymentMethod]
|
445
|
-
m = Killbill::Plugin::Model::PaymentMethod.new.to_ruby(m) unless m.nil?
|
446
|
-
tmp << m
|
447
|
-
end
|
448
|
-
res = tmp
|
446
|
+
res = @real_java_api.search_payment_methods(searchKey, offset, limit, context)
|
447
|
+
# conversion for res [type = com.ning.billing.util.entity.Pagination]
|
448
|
+
res = Killbill::Plugin::Model::Pagination.new.to_ruby(res) unless res.nil?
|
449
449
|
return res
|
450
450
|
end
|
451
451
|
|
@@ -51,13 +51,7 @@ module Killbill
|
|
51
51
|
@is_retired = @is_retired.nil? ? java.lang.Boolean.new(false) : java.lang.Boolean.new(@is_retired)
|
52
52
|
|
53
53
|
# conversion for initial_phase_iterator [type = java.util.Iterator]
|
54
|
-
|
55
|
-
(@initial_phase_iterator || []).each do |m|
|
56
|
-
# conversion for m [type = com.ning.billing.catalog.api.PlanPhase]
|
57
|
-
m = m.to_java unless m.nil?
|
58
|
-
tmp.add(m)
|
59
|
-
end
|
60
|
-
@initial_phase_iterator = tmp
|
54
|
+
@initial_phase_iterator = Killbill::Plugin::Model::EnumeratorIterator.new(@initial_phase_iterator)
|
61
55
|
|
62
56
|
# conversion for final_phase [type = com.ning.billing.catalog.api.PlanPhase]
|
63
57
|
@final_phase = @final_phase.to_java unless @final_phase.nil?
|
@@ -103,13 +97,6 @@ module Killbill
|
|
103
97
|
|
104
98
|
# conversion for initial_phase_iterator [type = java.util.Iterator]
|
105
99
|
@initial_phase_iterator = j_obj.initial_phase_iterator
|
106
|
-
tmp = []
|
107
|
-
(@initial_phase_iterator || []).each do |m|
|
108
|
-
# conversion for m [type = com.ning.billing.catalog.api.PlanPhase]
|
109
|
-
m = Killbill::Plugin::Model::PlanPhase.new.to_ruby(m) unless m.nil?
|
110
|
-
tmp << m
|
111
|
-
end
|
112
|
-
@initial_phase_iterator = tmp
|
113
100
|
|
114
101
|
# conversion for final_phase [type = com.ning.billing.catalog.api.PlanPhase]
|
115
102
|
@final_phase = j_obj.final_phase
|
@@ -85,6 +85,7 @@ require 'killbill/gen/api/payment_method'
|
|
85
85
|
require 'killbill/gen/api/payment_method_kv_info'
|
86
86
|
require 'killbill/gen/api/payment_method_plugin'
|
87
87
|
require 'killbill/gen/api/refund'
|
88
|
+
require 'killbill/gen/api/security_api_exception'
|
88
89
|
require 'killbill/gen/api/tenant'
|
89
90
|
require 'killbill/gen/api/tenant_api_exception'
|
90
91
|
require 'killbill/gen/api/tenant_data'
|
@@ -105,6 +106,8 @@ require 'killbill/gen/api/call_context'
|
|
105
106
|
require 'killbill/gen/api/tenant_context'
|
106
107
|
require 'killbill/gen/api/custom_field'
|
107
108
|
require 'killbill/gen/api/entity'
|
109
|
+
require 'killbill/gen/api/pagination'
|
108
110
|
require 'killbill/gen/api/control_tag'
|
109
111
|
require 'killbill/gen/api/tag'
|
110
112
|
require 'killbill/gen/api/tag_definition'
|
113
|
+
require 'killbill/gen/api/enumerator_iterator'
|
@@ -27,7 +27,7 @@ module Killbill
|
|
27
27
|
module Plugin
|
28
28
|
module Model
|
29
29
|
|
30
|
-
class
|
30
|
+
class SecurityApiException
|
31
31
|
|
32
32
|
|
33
33
|
attr_accessor :message, :cause, :code
|
@@ -44,7 +44,7 @@ module Killbill
|
|
44
44
|
|
45
45
|
# conversion for code [type = int]
|
46
46
|
@code = @code
|
47
|
-
Java::com.ning.billing.
|
47
|
+
Java::com.ning.billing.security.SecurityApiException.new(@message, @cause, @code)
|
48
48
|
end
|
49
49
|
|
50
50
|
def to_ruby(j_obj)
|
@@ -32,7 +32,7 @@ module Killbill
|
|
32
32
|
|
33
33
|
include com.ning.billing.entitlement.api.Subscription
|
34
34
|
|
35
|
-
attr_accessor :base_entitlement_id, :bundle_id, :account_id, :external_key, :state, :source_type, :effective_start_date, :effective_end_date, :
|
35
|
+
attr_accessor :base_entitlement_id, :bundle_id, :account_id, :external_key, :state, :source_type, :effective_start_date, :effective_end_date, :last_active_product, :last_active_plan, :last_active_phase, :last_active_price_list, :last_active_product_category, :id, :created_date, :updated_date, :billing_start_date, :billing_end_date, :charged_through_date, :current_state_for_service
|
36
36
|
|
37
37
|
def initialize()
|
38
38
|
end
|
@@ -66,27 +66,15 @@ module Killbill
|
|
66
66
|
@effective_end_date = Java::org.joda.time.LocalDate.parse(@effective_end_date.to_s)
|
67
67
|
end
|
68
68
|
|
69
|
-
# conversion for product [type = com.ning.billing.catalog.api.Product]
|
70
|
-
@product = @product.to_java unless @product.nil?
|
71
|
-
|
72
|
-
# conversion for plan [type = com.ning.billing.catalog.api.Plan]
|
73
|
-
@plan = @plan.to_java unless @plan.nil?
|
74
|
-
|
75
|
-
# conversion for price_list [type = com.ning.billing.catalog.api.PriceList]
|
76
|
-
@price_list = @price_list.to_java unless @price_list.nil?
|
77
|
-
|
78
|
-
# conversion for current_phase [type = com.ning.billing.catalog.api.PlanPhase]
|
79
|
-
@current_phase = @current_phase.to_java unless @current_phase.nil?
|
80
|
-
|
81
|
-
# conversion for product_category [type = com.ning.billing.catalog.api.ProductCategory]
|
82
|
-
@product_category = Java::com.ning.billing.catalog.api.ProductCategory.value_of("#{@product_category.to_s}") unless @product_category.nil?
|
83
|
-
|
84
69
|
# conversion for last_active_product [type = com.ning.billing.catalog.api.Product]
|
85
70
|
@last_active_product = @last_active_product.to_java unless @last_active_product.nil?
|
86
71
|
|
87
72
|
# conversion for last_active_plan [type = com.ning.billing.catalog.api.Plan]
|
88
73
|
@last_active_plan = @last_active_plan.to_java unless @last_active_plan.nil?
|
89
74
|
|
75
|
+
# conversion for last_active_phase [type = com.ning.billing.catalog.api.PlanPhase]
|
76
|
+
@last_active_phase = @last_active_phase.to_java unless @last_active_phase.nil?
|
77
|
+
|
90
78
|
# conversion for last_active_price_list [type = com.ning.billing.catalog.api.PriceList]
|
91
79
|
@last_active_price_list = @last_active_price_list.to_java unless @last_active_price_list.nil?
|
92
80
|
|
@@ -123,9 +111,6 @@ module Killbill
|
|
123
111
|
@charged_through_date = Java::org.joda.time.LocalDate.parse(@charged_through_date.to_s)
|
124
112
|
end
|
125
113
|
|
126
|
-
# conversion for bcd [type = int]
|
127
|
-
@bcd = @bcd
|
128
|
-
|
129
114
|
# conversion for current_state_for_service [type = java.lang.String]
|
130
115
|
@current_state_for_service = @current_state_for_service.to_s unless @current_state_for_service.nil?
|
131
116
|
self
|
@@ -167,26 +152,6 @@ module Killbill
|
|
167
152
|
@effective_end_date = @effective_end_date.to_s
|
168
153
|
end
|
169
154
|
|
170
|
-
# conversion for product [type = com.ning.billing.catalog.api.Product]
|
171
|
-
@product = j_obj.product
|
172
|
-
@product = Killbill::Plugin::Model::Product.new.to_ruby(@product) unless @product.nil?
|
173
|
-
|
174
|
-
# conversion for plan [type = com.ning.billing.catalog.api.Plan]
|
175
|
-
@plan = j_obj.plan
|
176
|
-
@plan = Killbill::Plugin::Model::Plan.new.to_ruby(@plan) unless @plan.nil?
|
177
|
-
|
178
|
-
# conversion for price_list [type = com.ning.billing.catalog.api.PriceList]
|
179
|
-
@price_list = j_obj.price_list
|
180
|
-
@price_list = Killbill::Plugin::Model::PriceList.new.to_ruby(@price_list) unless @price_list.nil?
|
181
|
-
|
182
|
-
# conversion for current_phase [type = com.ning.billing.catalog.api.PlanPhase]
|
183
|
-
@current_phase = j_obj.current_phase
|
184
|
-
@current_phase = Killbill::Plugin::Model::PlanPhase.new.to_ruby(@current_phase) unless @current_phase.nil?
|
185
|
-
|
186
|
-
# conversion for product_category [type = com.ning.billing.catalog.api.ProductCategory]
|
187
|
-
@product_category = j_obj.product_category
|
188
|
-
@product_category = @product_category.to_s.to_sym unless @product_category.nil?
|
189
|
-
|
190
155
|
# conversion for last_active_product [type = com.ning.billing.catalog.api.Product]
|
191
156
|
@last_active_product = j_obj.last_active_product
|
192
157
|
@last_active_product = Killbill::Plugin::Model::Product.new.to_ruby(@last_active_product) unless @last_active_product.nil?
|
@@ -195,6 +160,10 @@ module Killbill
|
|
195
160
|
@last_active_plan = j_obj.last_active_plan
|
196
161
|
@last_active_plan = Killbill::Plugin::Model::Plan.new.to_ruby(@last_active_plan) unless @last_active_plan.nil?
|
197
162
|
|
163
|
+
# conversion for last_active_phase [type = com.ning.billing.catalog.api.PlanPhase]
|
164
|
+
@last_active_phase = j_obj.last_active_phase
|
165
|
+
@last_active_phase = Killbill::Plugin::Model::PlanPhase.new.to_ruby(@last_active_phase) unless @last_active_phase.nil?
|
166
|
+
|
198
167
|
# conversion for last_active_price_list [type = com.ning.billing.catalog.api.PriceList]
|
199
168
|
@last_active_price_list = j_obj.last_active_price_list
|
200
169
|
@last_active_price_list = Killbill::Plugin::Model::PriceList.new.to_ruby(@last_active_price_list) unless @last_active_price_list.nil?
|
@@ -241,9 +210,6 @@ module Killbill
|
|
241
210
|
@charged_through_date = @charged_through_date.to_s
|
242
211
|
end
|
243
212
|
|
244
|
-
# conversion for bcd [type = int]
|
245
|
-
@bcd = j_obj.bcd
|
246
|
-
|
247
213
|
# conversion for current_state_for_service [type = java.lang.String]
|
248
214
|
@current_state_for_service = j_obj.current_state_for_service
|
249
215
|
self
|
@@ -73,8 +73,8 @@ module Killbill
|
|
73
73
|
end
|
74
74
|
end
|
75
75
|
|
76
|
-
java_signature 'Java::
|
77
|
-
def
|
76
|
+
java_signature 'Java::java.util.List getSubscriptionBundlesForAccountIdAndExternalKey(Java::java.util.UUID, Java::java.lang.String, Java::com.ning.billing.util.callcontext.TenantContext)'
|
77
|
+
def get_subscription_bundles_for_account_id_and_external_key(accountId, externalKey, context)
|
78
78
|
|
79
79
|
# conversion for accountId [type = java.util.UUID]
|
80
80
|
accountId = java.util.UUID.fromString(accountId.to_s) unless accountId.nil?
|
@@ -85,7 +85,31 @@ module Killbill
|
|
85
85
|
# conversion for context [type = com.ning.billing.util.callcontext.TenantContext]
|
86
86
|
context = context.to_java unless context.nil?
|
87
87
|
begin
|
88
|
-
res = @real_java_api.
|
88
|
+
res = @real_java_api.get_subscription_bundles_for_account_id_and_external_key(accountId, externalKey, context)
|
89
|
+
# conversion for res [type = java.util.List]
|
90
|
+
tmp = []
|
91
|
+
(res || []).each do |m|
|
92
|
+
# conversion for m [type = com.ning.billing.entitlement.api.SubscriptionBundle]
|
93
|
+
m = Killbill::Plugin::Model::SubscriptionBundle.new.to_ruby(m) unless m.nil?
|
94
|
+
tmp << m
|
95
|
+
end
|
96
|
+
res = tmp
|
97
|
+
return res
|
98
|
+
rescue Java::com.ning.billing.entitlement.api.SubscriptionApiException => e
|
99
|
+
raise Killbill::Plugin::Model::SubscriptionApiException.new.to_ruby(e)
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
java_signature 'Java::com.ning.billing.entitlement.api.SubscriptionBundle getActiveSubscriptionBundleForExternalKey(Java::java.lang.String, Java::com.ning.billing.util.callcontext.TenantContext)'
|
104
|
+
def get_active_subscription_bundle_for_external_key(externalKey, context)
|
105
|
+
|
106
|
+
# conversion for externalKey [type = java.lang.String]
|
107
|
+
externalKey = externalKey.to_s unless externalKey.nil?
|
108
|
+
|
109
|
+
# conversion for context [type = com.ning.billing.util.callcontext.TenantContext]
|
110
|
+
context = context.to_java unless context.nil?
|
111
|
+
begin
|
112
|
+
res = @real_java_api.get_active_subscription_bundle_for_external_key(externalKey, context)
|
89
113
|
# conversion for res [type = com.ning.billing.entitlement.api.SubscriptionBundle]
|
90
114
|
res = Killbill::Plugin::Model::SubscriptionBundle.new.to_ruby(res) unless res.nil?
|
91
115
|
return res
|
@@ -32,7 +32,7 @@ module Killbill
|
|
32
32
|
|
33
33
|
include com.ning.billing.entitlement.api.SubscriptionBundle
|
34
34
|
|
35
|
-
attr_accessor :id, :created_date, :updated_date, :account_id, :external_key, :subscriptions, :timeline
|
35
|
+
attr_accessor :id, :created_date, :updated_date, :account_id, :external_key, :original_created_date, :subscriptions, :timeline
|
36
36
|
|
37
37
|
def initialize()
|
38
38
|
end
|
@@ -59,6 +59,12 @@ module Killbill
|
|
59
59
|
# conversion for external_key [type = java.lang.String]
|
60
60
|
@external_key = @external_key.to_s unless @external_key.nil?
|
61
61
|
|
62
|
+
# conversion for original_created_date [type = org.joda.time.DateTime]
|
63
|
+
if !@original_created_date.nil?
|
64
|
+
@original_created_date = (@original_created_date.kind_of? Time) ? DateTime.parse(@original_created_date.to_s) : @original_created_date
|
65
|
+
@original_created_date = Java::org.joda.time.DateTime.new(@original_created_date.to_s, Java::org.joda.time.DateTimeZone::UTC)
|
66
|
+
end
|
67
|
+
|
62
68
|
# conversion for subscriptions [type = java.util.List]
|
63
69
|
tmp = java.util.ArrayList.new
|
64
70
|
(@subscriptions || []).each do |m|
|
@@ -101,6 +107,14 @@ module Killbill
|
|
101
107
|
# conversion for external_key [type = java.lang.String]
|
102
108
|
@external_key = j_obj.external_key
|
103
109
|
|
110
|
+
# conversion for original_created_date [type = org.joda.time.DateTime]
|
111
|
+
@original_created_date = j_obj.original_created_date
|
112
|
+
if !@original_created_date.nil?
|
113
|
+
fmt = Java::org.joda.time.format.ISODateTimeFormat.date_time
|
114
|
+
str = fmt.print(@original_created_date)
|
115
|
+
@original_created_date = DateTime.iso8601(str)
|
116
|
+
end
|
117
|
+
|
104
118
|
# conversion for subscriptions [type = java.util.List]
|
105
119
|
@subscriptions = j_obj.subscriptions
|
106
120
|
tmp = []
|
@@ -323,23 +323,21 @@ module Killbill
|
|
323
323
|
end
|
324
324
|
end
|
325
325
|
|
326
|
-
java_signature 'Java::
|
327
|
-
def search_payment_methods(searchKey, context)
|
326
|
+
java_signature 'Java::com.ning.billing.util.entity.Pagination searchPaymentMethods(Java::java.lang.String, Java::java.lang.Long, Java::java.lang.Long, Java::com.ning.billing.util.callcontext.TenantContext)'
|
327
|
+
def search_payment_methods(searchKey, offset, limit, context)
|
328
328
|
|
329
329
|
# conversion for searchKey [type = java.lang.String]
|
330
330
|
|
331
|
+
# conversion for offset [type = java.lang.Long]
|
332
|
+
|
333
|
+
# conversion for limit [type = java.lang.Long]
|
334
|
+
|
331
335
|
# conversion for context [type = com.ning.billing.util.callcontext.TenantContext]
|
332
336
|
context = Killbill::Plugin::Model::TenantContext.new.to_ruby(context) unless context.nil?
|
333
337
|
begin
|
334
|
-
res = @delegate_plugin.search_payment_methods(searchKey, context)
|
335
|
-
# conversion for res [type =
|
336
|
-
|
337
|
-
(res || []).each do |m|
|
338
|
-
# conversion for m [type = com.ning.billing.payment.api.PaymentMethodPlugin]
|
339
|
-
m = m.to_java unless m.nil?
|
340
|
-
tmp.add(m)
|
341
|
-
end
|
342
|
-
res = tmp
|
338
|
+
res = @delegate_plugin.search_payment_methods(searchKey, offset, limit, context)
|
339
|
+
# conversion for res [type = com.ning.billing.util.entity.Pagination]
|
340
|
+
res = res.to_java unless res.nil?
|
343
341
|
return res
|
344
342
|
rescue Exception => e
|
345
343
|
message = "Failure in search_payment_methods: #{e}"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: killbill
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,19 +9,19 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-10-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sinatra
|
16
16
|
version_requirements: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- -
|
18
|
+
- - ~>
|
19
19
|
- !ruby/object:Gem::Version
|
20
20
|
version: 1.3.4
|
21
21
|
none: false
|
22
22
|
requirement: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ~>
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 1.3.4
|
27
27
|
none: false
|
@@ -31,13 +31,13 @@ dependencies:
|
|
31
31
|
name: tzinfo
|
32
32
|
version_requirements: !ruby/object:Gem::Requirement
|
33
33
|
requirements:
|
34
|
-
- -
|
34
|
+
- - ~>
|
35
35
|
- !ruby/object:Gem::Version
|
36
36
|
version: 0.3.37
|
37
37
|
none: false
|
38
38
|
requirement: !ruby/object:Gem::Requirement
|
39
39
|
requirements:
|
40
|
-
- -
|
40
|
+
- - ~>
|
41
41
|
- !ruby/object:Gem::Version
|
42
42
|
version: 0.3.37
|
43
43
|
none: false
|
@@ -47,13 +47,13 @@ dependencies:
|
|
47
47
|
name: jbundler
|
48
48
|
version_requirements: !ruby/object:Gem::Requirement
|
49
49
|
requirements:
|
50
|
-
- -
|
50
|
+
- - ~>
|
51
51
|
- !ruby/object:Gem::Version
|
52
52
|
version: 0.4.3
|
53
53
|
none: false
|
54
54
|
requirement: !ruby/object:Gem::Requirement
|
55
55
|
requirements:
|
56
|
-
- -
|
56
|
+
- - ~>
|
57
57
|
- !ruby/object:Gem::Version
|
58
58
|
version: 0.4.3
|
59
59
|
none: false
|
@@ -63,13 +63,13 @@ dependencies:
|
|
63
63
|
name: rack
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- -
|
66
|
+
- - '>='
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: 1.5.2
|
69
69
|
none: false
|
70
70
|
requirement: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
|
-
- -
|
72
|
+
- - '>='
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: 1.5.2
|
75
75
|
none: false
|
@@ -79,13 +79,13 @@ dependencies:
|
|
79
79
|
name: rake
|
80
80
|
version_requirements: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
|
-
- -
|
82
|
+
- - '>='
|
83
83
|
- !ruby/object:Gem::Version
|
84
84
|
version: 0.8.7
|
85
85
|
none: false
|
86
86
|
requirement: !ruby/object:Gem::Requirement
|
87
87
|
requirements:
|
88
|
-
- -
|
88
|
+
- - '>='
|
89
89
|
- !ruby/object:Gem::Version
|
90
90
|
version: 0.8.7
|
91
91
|
none: false
|
@@ -95,13 +95,13 @@ dependencies:
|
|
95
95
|
name: rspec
|
96
96
|
version_requirements: !ruby/object:Gem::Requirement
|
97
97
|
requirements:
|
98
|
-
- -
|
98
|
+
- - ~>
|
99
99
|
- !ruby/object:Gem::Version
|
100
100
|
version: 2.12.0
|
101
101
|
none: false
|
102
102
|
requirement: !ruby/object:Gem::Requirement
|
103
103
|
requirements:
|
104
|
-
- -
|
104
|
+
- - ~>
|
105
105
|
- !ruby/object:Gem::Version
|
106
106
|
version: 2.12.0
|
107
107
|
none: false
|
@@ -113,8 +113,8 @@ executables: []
|
|
113
113
|
extensions: []
|
114
114
|
extra_rdoc_files: []
|
115
115
|
files:
|
116
|
-
-
|
117
|
-
-
|
116
|
+
- .gitignore
|
117
|
+
- .travis.yml
|
118
118
|
- Gemfile
|
119
119
|
- Jarfile
|
120
120
|
- NEWS
|
@@ -153,6 +153,7 @@ files:
|
|
153
153
|
- lib/killbill/gen/api/entitlement_api.rb
|
154
154
|
- lib/killbill/gen/api/entitlement_api_exception.rb
|
155
155
|
- lib/killbill/gen/api/entity.rb
|
156
|
+
- lib/killbill/gen/api/enumerator_iterator.rb
|
156
157
|
- lib/killbill/gen/api/illegal_plan_change.rb
|
157
158
|
- lib/killbill/gen/api/international_price.rb
|
158
159
|
- lib/killbill/gen/api/invalid_config_exception.rb
|
@@ -171,6 +172,7 @@ files:
|
|
171
172
|
- lib/killbill/gen/api/mutable_account_data.rb
|
172
173
|
- lib/killbill/gen/api/osgi_killbill.rb
|
173
174
|
- lib/killbill/gen/api/osgi_plugin_properties.rb
|
175
|
+
- lib/killbill/gen/api/pagination.rb
|
174
176
|
- lib/killbill/gen/api/payment.rb
|
175
177
|
- lib/killbill/gen/api/payment_api.rb
|
176
178
|
- lib/killbill/gen/api/payment_api_exception.rb
|
@@ -192,6 +194,7 @@ files:
|
|
192
194
|
- lib/killbill/gen/api/refund.rb
|
193
195
|
- lib/killbill/gen/api/require_gen.rb
|
194
196
|
- lib/killbill/gen/api/rolled_up_usage.rb
|
197
|
+
- lib/killbill/gen/api/security_api_exception.rb
|
195
198
|
- lib/killbill/gen/api/static_catalog.rb
|
196
199
|
- lib/killbill/gen/api/subscription.rb
|
197
200
|
- lib/killbill/gen/api/subscription_api.rb
|
@@ -199,10 +202,6 @@ files:
|
|
199
202
|
- lib/killbill/gen/api/subscription_bundle.rb
|
200
203
|
- lib/killbill/gen/api/subscription_bundle_timeline.rb
|
201
204
|
- lib/killbill/gen/api/subscription_event.rb
|
202
|
-
- lib/killbill/gen/api/subscription_status_dry_run.rb
|
203
|
-
- lib/killbill/gen/api/subscription_transition.rb
|
204
|
-
- lib/killbill/gen/api/subscription_user_api.rb
|
205
|
-
- lib/killbill/gen/api/subscription_user_api_exception.rb
|
206
205
|
- lib/killbill/gen/api/tag.rb
|
207
206
|
- lib/killbill/gen/api/tag_api_exception.rb
|
208
207
|
- lib/killbill/gen/api/tag_definition.rb
|
@@ -250,24 +249,23 @@ licenses:
|
|
250
249
|
- Apache License (2.0)
|
251
250
|
post_install_message:
|
252
251
|
rdoc_options:
|
253
|
-
-
|
254
|
-
-
|
252
|
+
- --exclude
|
253
|
+
- .
|
255
254
|
require_paths:
|
256
255
|
- lib
|
257
256
|
required_ruby_version: !ruby/object:Gem::Requirement
|
258
257
|
requirements:
|
259
|
-
- -
|
258
|
+
- - '>='
|
260
259
|
- !ruby/object:Gem::Version
|
261
260
|
version: 1.9.3
|
262
261
|
none: false
|
263
262
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
264
263
|
requirements:
|
265
|
-
- -
|
264
|
+
- - '>='
|
266
265
|
- !ruby/object:Gem::Version
|
267
266
|
segments:
|
268
267
|
- 0
|
269
|
-
version:
|
270
|
-
MA==
|
268
|
+
version: '0'
|
271
269
|
hash: 2
|
272
270
|
none: false
|
273
271
|
requirements:
|