acts_as_account 3.5.0 → 3.5.1
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 +10 -0
- data/VERSION +1 -1
- data/acts_as_account.gemspec +4 -4
- data/lib/acts_as_account/version.rb +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c264d01c9683972f776196da5ed9d7df5fa48d7b8172c8fa4dc84c319cf8b98f
|
|
4
|
+
data.tar.gz: 5114309a5215821d6987848eb4fa032aba243967a634294a815ed51188b3477d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 562393082b3e05b6e6474cdad8b4277fe16596f12ea6b8ed4c1ac43d4beabb1333c2c1c29bee8ccee07b6d469aad9326b33f119facaf8eaa67d204b964ae0a9f
|
|
7
|
+
data.tar.gz: f5e5a7c75af83e6f7d2c1c3ca1616b61675fda39d2c7ab1a503773aad3234a6247505c523d94f3db80703e40235d4dd017c0e2f94cea817e1abde7c44ebdcd89
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changes
|
|
2
2
|
|
|
3
|
+
## 2025-02-13 v3.5.1
|
|
4
|
+
|
|
5
|
+
* Update some dependencies.
|
|
6
|
+
|
|
7
|
+
## 2025-01-07 v3.5.0
|
|
8
|
+
|
|
9
|
+
* Relax `active_record` and `action_view` dependencies to allow for Rails 8
|
|
10
|
+
compatibility.
|
|
11
|
+
* Updated `acts_as_account.gemspec`.
|
|
12
|
+
|
|
3
13
|
## 2024-11-01 v3.4.2
|
|
4
14
|
|
|
5
15
|
* Add compact to attributes handling of transfer method:
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.5.
|
|
1
|
+
3.5.1
|
data/acts_as_account.gemspec
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
# stub: acts_as_account 3.5.
|
|
2
|
+
# stub: acts_as_account 3.5.1 ruby lib
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "acts_as_account".freeze
|
|
6
|
-
s.version = "3.5.
|
|
6
|
+
s.version = "3.5.1".freeze
|
|
7
7
|
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
9
9
|
s.require_paths = ["lib".freeze]
|
|
10
10
|
s.authors = ["Thies C. Arntzen, Norman Timmler, Matthias Frick, Phillip Oertel".freeze]
|
|
11
|
-
s.date = "2025-
|
|
11
|
+
s.date = "2025-02-13"
|
|
12
12
|
s.description = "acts_as_account implements double entry accounting for Rails models. Your\nmodels get accounts and you can do consistent transactions between them.\nSince the documentation is sparse, see the transfer.feature for usage\nexamples.\n".freeze
|
|
13
13
|
s.email = "developers@betterplace.org".freeze
|
|
14
14
|
s.extra_rdoc_files = ["README.md".freeze, "lib/acts_as_account.rb".freeze, "lib/acts_as_account/account.rb".freeze, "lib/acts_as_account/active_record_extensions.rb".freeze, "lib/acts_as_account/configuration.rb".freeze, "lib/acts_as_account/global_account.rb".freeze, "lib/acts_as_account/journal.rb".freeze, "lib/acts_as_account/manually_created_account.rb".freeze, "lib/acts_as_account/posting.rb".freeze, "lib/acts_as_account/rails.rb".freeze, "lib/acts_as_account/transfer.rb".freeze, "lib/acts_as_account/version.rb".freeze]
|
|
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
|
|
|
16
16
|
s.homepage = "https://github.com/betterplace/acts_as_account".freeze
|
|
17
17
|
s.licenses = ["Apache-2.0".freeze]
|
|
18
18
|
s.rdoc_options = ["--title".freeze, "ActsAsAccount -- More Math in Ruby".freeze, "--main".freeze, "README.md".freeze]
|
|
19
|
-
s.rubygems_version = "3.
|
|
19
|
+
s.rubygems_version = "3.6.2".freeze
|
|
20
20
|
s.summary = "acts_as_account implements double entry accounting for Rails models".freeze
|
|
21
21
|
|
|
22
22
|
s.specification_version = 4
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: acts_as_account
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.5.
|
|
4
|
+
version: 3.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thies C. Arntzen, Norman Timmler, Matthias Frick, Phillip Oertel
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
10
|
+
date: 2025-02-13 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: gem_hadar
|
|
@@ -241,7 +240,6 @@ homepage: https://github.com/betterplace/acts_as_account
|
|
|
241
240
|
licenses:
|
|
242
241
|
- Apache-2.0
|
|
243
242
|
metadata: {}
|
|
244
|
-
post_install_message:
|
|
245
243
|
rdoc_options:
|
|
246
244
|
- "--title"
|
|
247
245
|
- ActsAsAccount -- More Math in Ruby
|
|
@@ -260,8 +258,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
260
258
|
- !ruby/object:Gem::Version
|
|
261
259
|
version: '0'
|
|
262
260
|
requirements: []
|
|
263
|
-
rubygems_version: 3.
|
|
264
|
-
signing_key:
|
|
261
|
+
rubygems_version: 3.6.2
|
|
265
262
|
specification_version: 4
|
|
266
263
|
summary: acts_as_account implements double entry accounting for Rails models
|
|
267
264
|
test_files: []
|