billing 0.0.5a → 0.0.5b
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 +4 -4
- data/app/models/billing/operator.rb +1 -0
- data/app/models/billing/operator_fiscal_driver_mapping.rb +7 -0
- data/app/models/billing/resource.rb +4 -0
- data/app/models/billing/tax_group.rb +1 -0
- data/app/models/billing/tax_group_fiscal_driver_mapping.rb +7 -0
- data/db/migrate/20141221201539_billing_tg_fp_mapping.rb +14 -0
- data/db/migrate/20141221233912_billing_op_fp_mapping.rb +14 -0
- data/db/migrate/20141229234928_create_billing_resources.rb +14 -0
- data/lib/billing/version.rb +1 -1
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +34 -1
- data/test/dummy/log/development.log +1436 -0
- data/test/fixtures/billing/resources.yml +11 -0
- data/test/models/billing/resource_test.rb +9 -0
- metadata +13 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: billing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5b
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alex Vangelov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-01-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -82,6 +82,7 @@ files:
|
|
82
82
|
- app/models/billing/modifier.rb
|
83
83
|
- app/models/billing/modifier_items.rb
|
84
84
|
- app/models/billing/operator.rb
|
85
|
+
- app/models/billing/operator_fiscal_driver_mapping.rb
|
85
86
|
- app/models/billing/origin.rb
|
86
87
|
- app/models/billing/payment.rb
|
87
88
|
- app/models/billing/payment_external.rb
|
@@ -92,8 +93,10 @@ files:
|
|
92
93
|
- app/models/billing/plu.rb
|
93
94
|
- app/models/billing/profile.rb
|
94
95
|
- app/models/billing/report.rb
|
96
|
+
- app/models/billing/resource.rb
|
95
97
|
- app/models/billing/room_transfer.rb
|
96
98
|
- app/models/billing/tax_group.rb
|
99
|
+
- app/models/billing/tax_group_fiscal_driver_mapping.rb
|
97
100
|
- app/models/billing/version.rb
|
98
101
|
- app/models/concerns/billing/bill_item.rb
|
99
102
|
- app/models/concerns/billing/bill_text_parser.rb
|
@@ -149,6 +152,9 @@ files:
|
|
149
152
|
- db/migrate/20140804070517_add_tax_ratio_to_billing_charge.rb
|
150
153
|
- db/migrate/20141001185321_add_transfer_device_to_billing_origin.rb
|
151
154
|
- db/migrate/20141027235427_add_f_amount_to_billing_report.rb
|
155
|
+
- db/migrate/20141221201539_billing_tg_fp_mapping.rb
|
156
|
+
- db/migrate/20141221233912_billing_op_fp_mapping.rb
|
157
|
+
- db/migrate/20141229234928_create_billing_resources.rb
|
152
158
|
- lib/billing.rb
|
153
159
|
- lib/billing/billable.rb
|
154
160
|
- lib/billing/engine.rb
|
@@ -235,6 +241,7 @@ files:
|
|
235
241
|
- test/fixtures/billing/payments.yml
|
236
242
|
- test/fixtures/billing/plus.yml
|
237
243
|
- test/fixtures/billing/profiles.yml
|
244
|
+
- test/fixtures/billing/resources.yml
|
238
245
|
- test/fixtures/billing/tax_groups.yml
|
239
246
|
- test/fixtures/profiles.yml
|
240
247
|
- test/models/billing/bill_test.rb
|
@@ -247,6 +254,7 @@ files:
|
|
247
254
|
- test/models/billing/payment_type_test.rb
|
248
255
|
- test/models/billing/plu_test.rb
|
249
256
|
- test/models/billing/profile_test.rb
|
257
|
+
- test/models/billing/resource_test.rb
|
250
258
|
- test/models/billing/tax_group_test.rb
|
251
259
|
- test/test_helper.rb
|
252
260
|
homepage: http://extface.com
|
@@ -269,7 +277,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
269
277
|
version: 1.3.1
|
270
278
|
requirements: []
|
271
279
|
rubyforge_project:
|
272
|
-
rubygems_version: 2.
|
280
|
+
rubygems_version: 2.4.5
|
273
281
|
signing_key:
|
274
282
|
specification_version: 4
|
275
283
|
summary: Billing for Rails 4 app
|
@@ -280,6 +288,7 @@ test_files:
|
|
280
288
|
- test/fixtures/billing/plus.yml
|
281
289
|
- test/fixtures/billing/payments.yml
|
282
290
|
- test/fixtures/billing/bills.yml
|
291
|
+
- test/fixtures/billing/resources.yml
|
283
292
|
- test/fixtures/billing/charges.yml
|
284
293
|
- test/fixtures/billing/departments.yml
|
285
294
|
- test/fixtures/billing/modifiers.yml
|
@@ -361,6 +370,7 @@ test_files:
|
|
361
370
|
- test/models/billing/bill_test.rb
|
362
371
|
- test/models/billing/department_test.rb
|
363
372
|
- test/models/billing/payment_test.rb
|
373
|
+
- test/models/billing/resource_test.rb
|
364
374
|
- test/models/billing/operator_test.rb
|
365
375
|
- test/models/billing/origin_test.rb
|
366
376
|
- test/models/billing/profile_test.rb
|