acts_as_account 3.5.0 → 3.5.1

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
  SHA256:
3
- metadata.gz: 9d88274514bee54d1426bcab91314e0725636e40f1cdfcbd55c82062ecf87c24
4
- data.tar.gz: 29517903c6482a3655f3ee00b21987f8cb543029ec3e2935f329cac99779d5ea
3
+ metadata.gz: c264d01c9683972f776196da5ed9d7df5fa48d7b8172c8fa4dc84c319cf8b98f
4
+ data.tar.gz: 5114309a5215821d6987848eb4fa032aba243967a634294a815ed51188b3477d
5
5
  SHA512:
6
- metadata.gz: c2ef0b1c40f6a785947d7cf4287cbb1110cb3abc57ac036a3b216e4e10fcdede9622e442bb90339a1a169c8b96de7853f113cea7337e762316dc63a77861603d
7
- data.tar.gz: 4289a79643903c926464b266ac46d366d6688a9b4e71f9c816f977dada313a06a4d699cc9030de0d7cafaaf5b94088a4c284ca6e78d900564209ac84c1b5f77f
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.0
1
+ 3.5.1
@@ -1,14 +1,14 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: acts_as_account 3.5.0 ruby lib
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.0".freeze
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-01-07"
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.5.6".freeze
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
@@ -1,6 +1,6 @@
1
1
  module ActsAsAccount
2
2
  # ActsAsAccount version
3
- VERSION = '3.5.0'
3
+ VERSION = '3.5.1'
4
4
  VERSION_ARRAY = VERSION.split('.').map(&:to_i) # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
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.0
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-01-07 00:00:00.000000000 Z
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.5.6
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: []