double_entry 2.0.0.beta2 → 2.0.0.beta3
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/CHANGELOG.md +11 -1
- data/lib/double_entry/version.rb +1 -1
- data/lib/generators/double_entry/install/templates/migration.rb +0 -2
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ffb580cc13853357b19e242cc229d5b0f1d1d98c6cd9ac5657215b090b969741
|
4
|
+
data.tar.gz: 3da2d603f8de4f7a52763bb84729ebfd14e6e1d46f092dae338432c0d87c795c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78ab72241164ae7ba887df3aeebfd8a4f18d73a6c2700f9f44dd2abb998320089cfe8547d4aea62211683aea9d4955a16f006a56e5803ab5de386891d1cfed4c
|
7
|
+
data.tar.gz: 625ddec747fd33cb464a285ce334cf05be94093cc9766d0e0277786bcc79f061bd0805baa3e6644566a1dc83d5209ff0a81ac06846170caa317a5d5f2cbb373b
|
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
+
## [2.0.0.beta3] - 2019-11-14
|
11
|
+
|
12
|
+
### Fixed
|
13
|
+
|
14
|
+
- Remove duplicate detail columns in `double_entry_lines` table migration, ([#173]).
|
15
|
+
|
16
|
+
[#173]: https://github.com/envato/double_entry/pull/173
|
17
|
+
|
10
18
|
## [2.0.0.beta2] - 2019-01-27
|
11
19
|
|
12
20
|
### Removed
|
@@ -429,7 +437,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
429
437
|
|
430
438
|
- Library released as Open Source!
|
431
439
|
|
432
|
-
[Unreleased]: https://github.com/envato/double_entry/compare/v2.0.0.
|
440
|
+
[Unreleased]: https://github.com/envato/double_entry/compare/v2.0.0.beta3...HEAD
|
441
|
+
[2.0.0.beta3]: https://github.com/envato/double_entry/compare/v2.0.0.beta2...v2.0.0.beta3
|
442
|
+
[2.0.0.beta2]: https://github.com/envato/double_entry/compare/v2.0.0.beta1...v2.0.0.beta2
|
433
443
|
[2.0.0.beta1]: https://github.com/envato/double_entry/compare/v1.0.1...v2.0.0.beta1
|
434
444
|
[1.0.1]: https://github.com/envato/double_entry/compare/v1.0.0...v1.0.1
|
435
445
|
[1.0.0]: https://github.com/envato/double_entry/compare/v0.10.3...v1.0.0
|
data/lib/double_entry/version.rb
CHANGED
@@ -20,8 +20,6 @@ class CreateDoubleEntryTables < ActiveRecord::Migration<%= migration_version %>
|
|
20
20
|
t.string "partner_account", :null => false
|
21
21
|
t.string "partner_scope"
|
22
22
|
t.references "detail", :index => false, :polymorphic => true
|
23
|
-
t.integer "detail_id"
|
24
|
-
t.string "detail_type"
|
25
23
|
t.timestamps :null => false
|
26
24
|
end
|
27
25
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: double_entry
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.0.
|
4
|
+
version: 2.0.0.beta3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Envato
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -255,9 +255,9 @@ licenses:
|
|
255
255
|
- MIT
|
256
256
|
metadata:
|
257
257
|
bug_tracker_uri: https://github.com/envato/double_entry/issues
|
258
|
-
changelog_uri: https://github.com/envato/double_entry/blob/v2.0.0.
|
259
|
-
documentation_uri: https://www.rubydoc.info/gems/double_entry/2.0.0.
|
260
|
-
source_code_uri: https://github.com/envato/double_entry/tree/v2.0.0.
|
258
|
+
changelog_uri: https://github.com/envato/double_entry/blob/v2.0.0.beta3/CHANGELOG.md
|
259
|
+
documentation_uri: https://www.rubydoc.info/gems/double_entry/2.0.0.beta3
|
260
|
+
source_code_uri: https://github.com/envato/double_entry/tree/v2.0.0.beta3
|
261
261
|
post_install_message:
|
262
262
|
rdoc_options: []
|
263
263
|
require_paths:
|
@@ -273,7 +273,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
273
273
|
- !ruby/object:Gem::Version
|
274
274
|
version: 1.3.1
|
275
275
|
requirements: []
|
276
|
-
rubygems_version: 3.0.
|
276
|
+
rubygems_version: 3.0.4
|
277
277
|
signing_key:
|
278
278
|
specification_version: 4
|
279
279
|
summary: Tools to build your double entry financial ledger
|