killbill-client 0.5.5 → 0.5.6

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: 1e0db1e2e526ed9e16ee35f1c47831dad9c7bd2a
4
- data.tar.gz: 69bb1815ea15b3055edfa0ab6909ff1adcf2bdd4
3
+ metadata.gz: b11bb5f4d2ca2689babcb02b317cf6b2fd435171
4
+ data.tar.gz: 25e55679617185f1a4ae6413706eea33b72674c0
5
5
  SHA512:
6
- metadata.gz: 59957a26919c8c96eaf24dbe9578d056e33422eab28ea87b83ebfdf0df677b1d94dceb03961eb8cba9bad00af03705ee5bc20a28ad340f2806b3607282cf035a
7
- data.tar.gz: e02d2802fb9c83bcb769abe14c4a4b47d03af061fd897035fcf175e629322352c3657679dd3cf9bef45b256465765c5fcd54573082cb501b04b7875bb25bc07c
6
+ metadata.gz: a72b8c9399474f46d72b4d813aa3fda99aeb15bfbddfaf97c915ecf337b185075e70e9daedfe7561104a5a9a02ee8b955f508746bb47db681b6e493f830b0adf
7
+ data.tar.gz: db0d6396de70db7f56c37773ec8363b1946e2762c91150dcd22d7a9352c01544b4526886b89e2df184c2d8cca24e0faaf4ed1ee9a05a75ecb2ab54bebcdf5ab7
@@ -125,52 +125,51 @@ module KillBillClient
125
125
  end
126
126
 
127
127
 
128
- def auto_pay_off?(options)
128
+ def auto_pay_off?(options = {})
129
129
  control_tag_off?(AUTO_PAY_OFF_ID, options)
130
130
  end
131
131
 
132
- def set_auto_pay_off(user = nil, reason = nil, comment = nil, options)
132
+ def set_auto_pay_off(user = nil, reason = nil, comment = nil, options = {})
133
133
  add_tag_from_definition_id(AUTO_PAY_OFF_ID, user, reason, comment, options)
134
134
  end
135
135
 
136
- def auto_invoicing?(options)
136
+ def auto_invoicing?(options = {})
137
137
  control_tag_off?(AUTO_INVOICING_ID, options)
138
138
  end
139
139
 
140
- def set_auto_invoicing(user = nil, reason = nil, comment = nil, options)
140
+ def set_auto_invoicing(user = nil, reason = nil, comment = nil, options = {})
141
141
  add_tag_from_definition_id(AUTO_INVOICING_ID, user, reason, comment, options)
142
142
  end
143
143
 
144
- def overdue_enforcement_off?(options)
144
+ def overdue_enforcement_off?(options = {})
145
145
  control_tag_off?(OVERDUE_ENFORCEMENT_OFF_ID, options)
146
146
  end
147
147
 
148
- def set_overdue_enforcement_off(user = nil, reason = nil, comment = nil, options)
148
+ def set_overdue_enforcement_off(user = nil, reason = nil, comment = nil, options = {})
149
149
  add_tag_from_definition_id(OVERDUE_ENFORCEMENT_OFF_ID, user, reason, comment, options)
150
150
  end
151
151
 
152
- def written_off?(options)
152
+ def written_off?(options = {})
153
153
  control_tag_off?(WRITTEN_OFF_ID, options)
154
154
  end
155
155
 
156
- def set_written_off( user = nil, reason = nil, comment = nil, options)
156
+ def set_written_off( user = nil, reason = nil, comment = nil, options = {})
157
157
  add_tag_from_definition_id(WRITTEN_OFF_ID, user, reason, comment, options)
158
158
  end
159
159
 
160
- def manual_pay?(options)
160
+ def manual_pay?(options = {})
161
161
  control_tag_off?(MANUAL_PAY_ID, options)
162
162
  end
163
163
 
164
- def set_manual_pay(user = nil, reason = nil, comment = nil, options)
164
+ def set_manual_pay(user = nil, reason = nil, comment = nil, options = {})
165
165
  add_tag_from_definition_id(MANUAL_PAY_ID, user, reason, comment, options)
166
166
  end
167
167
 
168
-
169
- def test?(options)
168
+ def test?(options = {})
170
169
  control_tag_off?(TEST_ID, options)
171
170
  end
172
171
 
173
- def set_test(user = nil, reason = nil, comment = nil, options)
172
+ def set_test(user = nil, reason = nil, comment = nil, options = {})
174
173
  add_tag_from_definition_id(TEST_ID, user, reason, comment, options)
175
174
  end
176
175
 
@@ -2,7 +2,7 @@ module KillBillClient
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 5
5
- PATCH = 5
5
+ PATCH = 6
6
6
  PRE = nil
7
7
 
8
8
  VERSION = [MAJOR, MINOR, PATCH, PRE].compact.join('.').freeze
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: killbill-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.5
4
+ version: 0.5.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Killbill core team