billing 0.0.9 → 0.1.0a
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/jobs/billing/issue_print_doc.rb +22 -5
- data/app/models/billing/bill.rb +20 -20
- data/app/models/billing/charge.rb +1 -1
- data/app/models/billing/modifier.rb +7 -3
- data/app/models/concerns/billing/bill_item.rb +2 -0
- data/lib/billing/version.rb +1 -1
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +5 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +484 -0
- data/test/dummy/log/test.log +764 -0
- metadata +8 -4
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.
|
4
|
+
version: 0.1.0a
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alex Vangelov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-08-
|
11
|
+
date: 2016-08-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -220,7 +220,9 @@ files:
|
|
220
220
|
- test/dummy/db/development.sqlite3
|
221
221
|
- test/dummy/db/migrate/20140718104656_create_profiles.rb
|
222
222
|
- test/dummy/db/schema.rb
|
223
|
+
- test/dummy/db/test.sqlite3
|
223
224
|
- test/dummy/log/development.log
|
225
|
+
- test/dummy/log/test.log
|
224
226
|
- test/dummy/public/404.html
|
225
227
|
- test/dummy/public/422.html
|
226
228
|
- test/dummy/public/500.html
|
@@ -268,9 +270,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
268
270
|
version: '0'
|
269
271
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
270
272
|
requirements:
|
271
|
-
- - "
|
273
|
+
- - ">"
|
272
274
|
- !ruby/object:Gem::Version
|
273
|
-
version:
|
275
|
+
version: 1.3.1
|
274
276
|
requirements: []
|
275
277
|
rubyforge_project:
|
276
278
|
rubygems_version: 2.5.0
|
@@ -297,8 +299,10 @@ test_files:
|
|
297
299
|
- test/dummy/test/fixtures/profiles.yml
|
298
300
|
- test/dummy/test/models/profile_test.rb
|
299
301
|
- test/dummy/log/development.log
|
302
|
+
- test/dummy/log/test.log
|
300
303
|
- test/dummy/db/development.sqlite3
|
301
304
|
- test/dummy/db/migrate/20140718104656_create_profiles.rb
|
305
|
+
- test/dummy/db/test.sqlite3
|
302
306
|
- test/dummy/db/schema.rb
|
303
307
|
- test/dummy/README.rdoc
|
304
308
|
- test/dummy/app/views/layouts/application.html.erb
|