activemodel 7.1.0 → 7.1.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 +5 -0
- data/lib/active_model/dirty.rb +2 -2
- data/lib/active_model/gem_version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 191a355e300ba0a18a587294a4ba721be77929a97a780f0a7dfaa519dd31ec2f
|
|
4
|
+
data.tar.gz: f27b9ae46f6e20784e8c6eebc82994cb01cb169d3b57e622c9a772fccce1bf12
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9985a97c165f261521b48011e8ac8a63ec61a6e6357a6ea2c9491bbed44838a492f400fccfa48f8362b7cbf53f8600a912420d57fbc473e0dcfdbfa7ed93e882
|
|
7
|
+
data.tar.gz: 5aa0cc11f2366bd7019c10926ae34c2d0fa9e6f3acc5970dee48d25aa876efc23f71b3089e99d58e3b95375de81a17634869d962a3741037b32b7f72e1bc546e
|
data/CHANGELOG.md
CHANGED
data/lib/active_model/dirty.rb
CHANGED
|
@@ -289,7 +289,7 @@ module ActiveModel
|
|
|
289
289
|
mutations_from_database.changed_attribute_names
|
|
290
290
|
end
|
|
291
291
|
|
|
292
|
-
# Dispatch target for {*_changed}[rdoc-label:method-i-2A_changed-3F] attribute methods.
|
|
292
|
+
# Dispatch target for {*_changed?}[rdoc-label:method-i-2A_changed-3F] attribute methods.
|
|
293
293
|
def attribute_changed?(attr_name, **options)
|
|
294
294
|
mutations_from_database.changed?(attr_name.to_s, **options)
|
|
295
295
|
end
|
|
@@ -299,7 +299,7 @@ module ActiveModel
|
|
|
299
299
|
mutations_from_database.original_value(attr_name.to_s)
|
|
300
300
|
end
|
|
301
301
|
|
|
302
|
-
# Dispatch target for {*_previously_changed}[rdoc-label:method-i-2A_previously_changed-3F] attribute methods.
|
|
302
|
+
# Dispatch target for {*_previously_changed?}[rdoc-label:method-i-2A_previously_changed-3F] attribute methods.
|
|
303
303
|
def attribute_previously_changed?(attr_name, **options)
|
|
304
304
|
mutations_before_last_save.changed?(attr_name.to_s, **options)
|
|
305
305
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: activemodel
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.1.
|
|
4
|
+
version: 7.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Heinemeier Hansson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-10-
|
|
11
|
+
date: 2023-10-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 7.1.
|
|
19
|
+
version: 7.1.1
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 7.1.
|
|
26
|
+
version: 7.1.1
|
|
27
27
|
description: A toolkit for building modeling frameworks like Active Record. Rich support
|
|
28
28
|
for attributes, callbacks, validations, serialization, internationalization, and
|
|
29
29
|
testing.
|
|
@@ -112,10 +112,10 @@ licenses:
|
|
|
112
112
|
- MIT
|
|
113
113
|
metadata:
|
|
114
114
|
bug_tracker_uri: https://github.com/rails/rails/issues
|
|
115
|
-
changelog_uri: https://github.com/rails/rails/blob/v7.1.
|
|
116
|
-
documentation_uri: https://api.rubyonrails.org/v7.1.
|
|
115
|
+
changelog_uri: https://github.com/rails/rails/blob/v7.1.1/activemodel/CHANGELOG.md
|
|
116
|
+
documentation_uri: https://api.rubyonrails.org/v7.1.1/
|
|
117
117
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
|
118
|
-
source_code_uri: https://github.com/rails/rails/tree/v7.1.
|
|
118
|
+
source_code_uri: https://github.com/rails/rails/tree/v7.1.1/activemodel
|
|
119
119
|
rubygems_mfa_required: 'true'
|
|
120
120
|
post_install_message:
|
|
121
121
|
rdoc_options: []
|