omg-activemodel 8.0.0.alpha8 → 8.0.0.alpha9
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/gem_version.rb +1 -1
- data/lib/active_model/serialization.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: 055bdaaaf4b69e873c1072b5bebd5d6e8486394132870604b5f3644506abf47e
|
|
4
|
+
data.tar.gz: 5ec4d78471af294fe1ce89674ce24f5d0502dfecea10310755506f5d1ddc0ca8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 86a9c6b1c969bb79928626f5b42ca4730d1cc81c79974ae741a74721a4651563561318c9cc243e8fde06f58b0f1e82a52a4ccd434c7890b4031310d5f5bee687
|
|
7
|
+
data.tar.gz: 8ebcff6c5c0eedf2facbd878b3b01e5ad1c0bc1ca1008614d39d2e974298fce9845004f769389c7a90a1b0ac7147015a92fed4d6b812527fcc60830108481a14
|
data/CHANGELOG.md
CHANGED
|
@@ -128,7 +128,7 @@ module ActiveModel
|
|
|
128
128
|
return serializable_attributes(attribute_names) if options.blank?
|
|
129
129
|
|
|
130
130
|
if only = options[:only]
|
|
131
|
-
attribute_names
|
|
131
|
+
attribute_names = Array(only).map(&:to_s) & attribute_names
|
|
132
132
|
elsif except = options[:except]
|
|
133
133
|
attribute_names -= Array(except).map(&:to_s)
|
|
134
134
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: omg-activemodel
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 8.0.0.
|
|
4
|
+
version: 8.0.0.alpha9
|
|
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: 2024-09-
|
|
11
|
+
date: 2024-09-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: omg-activesupport
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 8.0.0.
|
|
19
|
+
version: 8.0.0.alpha9
|
|
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: 8.0.0.
|
|
26
|
+
version: 8.0.0.alpha9
|
|
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/v8.0.0.
|
|
116
|
-
documentation_uri: https://api.rubyonrails.org/v8.0.0.
|
|
115
|
+
changelog_uri: https://github.com/rails/rails/blob/v8.0.0.alpha9/activemodel/CHANGELOG.md
|
|
116
|
+
documentation_uri: https://api.rubyonrails.org/v8.0.0.alpha9/
|
|
117
117
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
|
118
|
-
source_code_uri: https://github.com/rails/rails/tree/v8.0.0.
|
|
118
|
+
source_code_uri: https://github.com/rails/rails/tree/v8.0.0.alpha9/activemodel
|
|
119
119
|
rubygems_mfa_required: 'true'
|
|
120
120
|
post_install_message:
|
|
121
121
|
rdoc_options: []
|