killbill-client 0.24.1 → 0.25.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8d43db6b59dc3181aef8cae3cb8ba1378e37ec2c
4
- data.tar.gz: bad7b49dbcec3cb699bcabd678dfb4972b9fcdf4
3
+ metadata.gz: fb18f53ec0f189873ead4aa108eb179a408e9ff0
4
+ data.tar.gz: dda47189a049314516f2e99ac59e9f4d78f7022e
5
5
  SHA512:
6
- metadata.gz: 7e5c9b405d689f286e24fa96a710a61e18aa9dee684980b517d88156f3d34a0d0dcd8c63218ff43bee8db9598e1091b8943f1cc3b3f9e05f104badf62021ef70
7
- data.tar.gz: 359e56d0ef556dcc7a920cab2c8f6b4595cb1fc68df6fb16f92c643e297ad621bdb90ad357ff7ad5b75a395d83209f557b9688924bfedd99179960d0ea49e9a7
6
+ metadata.gz: fcd13fd28cf9013264a615b6794b2cf8a8cf957ca686131ecc599402e779445dea9fdc7e0bf9af7d1367d62931f5825cf80c1da19d5925bfd989d3055d9aea39
7
+ data.tar.gz: 4193a5fe86f3a97160403070896bbc46e98ad0877ae72f24b7b99bdc9fcb6ae28a776f1510fc45f94cb0247ec71ed1098c8cc78119d676c2cf76273015e68cf7
@@ -0,0 +1,35 @@
1
+ #############################################################################################
2
+ # #
3
+ # Copyright 2010-2013 Ning, Inc. #
4
+ # Copyright 2014 Groupon, Inc. #
5
+ # Copyright 2014 The Billing Project, LLC #
6
+ # #
7
+ # The Billing Project licenses this file to you under the Apache License, version 2.0 #
8
+ # (the "License"); you may not use this file except in compliance with the #
9
+ # License. You may obtain a copy of the License at: #
10
+ # #
11
+ # http://www.apache.org/licenses/LICENSE-2.0 #
12
+ # #
13
+ # Unless required by applicable law or agreed to in writing, software #
14
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT #
15
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the #
16
+ # License for the specific language governing permissions and limitations #
17
+ # under the License. #
18
+ # #
19
+ #############################################################################################
20
+
21
+
22
+ #
23
+ # DO NOT EDIT!!!
24
+ # File automatically generated by killbill-java-parser (git@github.com:killbill/killbill-java-parser.git)
25
+ #
26
+
27
+
28
+ module KillBillClient
29
+ module Model
30
+ class DurationAttributes < Resource
31
+ attribute :unit
32
+ attribute :number
33
+ end
34
+ end
35
+ end
@@ -30,6 +30,8 @@ module KillBillClient
30
30
  class PhaseAttributes < Resource
31
31
  attribute :type
32
32
  attribute :prices
33
+ attribute :fixed_prices
34
+ attribute :duration
33
35
  end
34
36
  end
35
37
  end
@@ -29,6 +29,7 @@ module KillBillClient
29
29
  module Model
30
30
  class PlanAttributes < Resource
31
31
  attribute :name
32
+ attribute :billing_period
32
33
  attribute :phases
33
34
  end
34
35
  end
@@ -32,6 +32,7 @@ module KillBillClient
32
32
  attribute :plugin_name
33
33
  attribute :version
34
34
  attribute :state
35
+ attribute :is_selected_for_start
35
36
  attribute :services
36
37
  end
37
38
  end
@@ -40,12 +40,8 @@ require 'killbill_client/models/gen/plan_attributes'
40
40
  require 'killbill_client/models/gen/phase_attributes'
41
41
  require 'killbill_client/models/gen/price_attributes'
42
42
  require 'killbill_client/models/gen/price_list_attributes'
43
+ require 'killbill_client/models/gen/duration_attributes'
43
44
  require 'killbill_client/models/gen/catalog_attributes'
44
- require 'killbill_client/models/gen/product_attributes'
45
- require 'killbill_client/models/gen/plan_attributes'
46
- require 'killbill_client/models/gen/phase_attributes'
47
- require 'killbill_client/models/gen/price_attributes'
48
- require 'killbill_client/models/gen/catalog_attributes_simple'
49
45
  require 'killbill_client/models/gen/combo_hosted_payment_page_attributes'
50
46
  require 'killbill_client/models/gen/combo_payment_transaction_attributes'
51
47
  require 'killbill_client/models/gen/credit_attributes'
@@ -1,8 +1,8 @@
1
1
  module KillBillClient
2
2
  module Version
3
3
  MAJOR = 0
4
- MINOR = 24
5
- PATCH = 1
4
+ MINOR = 25
5
+ PATCH = 0
6
6
  PRE = nil
7
7
 
8
8
  VERSION = [MAJOR, MINOR, PATCH, PRE].compact.join('.').freeze
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: killbill-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.1
4
+ version: 0.25.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Killbill core team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-07 00:00:00.000000000 Z
11
+ date: 2015-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -94,6 +94,7 @@ files:
94
94
  - lib/killbill_client/models/gen/combo_payment_transaction_attributes.rb
95
95
  - lib/killbill_client/models/gen/credit_attributes.rb
96
96
  - lib/killbill_client/models/gen/custom_field_attributes.rb
97
+ - lib/killbill_client/models/gen/duration_attributes.rb
97
98
  - lib/killbill_client/models/gen/event_subscription_attributes.rb
98
99
  - lib/killbill_client/models/gen/gateway_notification_attributes.rb
99
100
  - lib/killbill_client/models/gen/hosted_payment_page_billing_address_attributes.rb
@@ -203,8 +204,15 @@ required_rubygems_version: !ruby/object:Gem::Requirement
203
204
  version: '0'
204
205
  requirements: []
205
206
  rubyforge_project:
206
- rubygems_version: 2.1.9
207
+ rubygems_version: 2.4.6
207
208
  signing_key:
208
209
  specification_version: 4
209
210
  summary: Kill Bill client library.
210
- test_files: []
211
+ test_files:
212
+ - spec/killbill_client/base_uri_spec.rb
213
+ - spec/killbill_client/model_relation_spec.rb
214
+ - spec/killbill_client/remote/api_spec.rb
215
+ - spec/killbill_client/remote/model_spec.rb
216
+ - spec/killbill_client/resource_spec.rb
217
+ - spec/killbill_client/resources_spec.rb
218
+ - spec/spec_helper.rb