activemodel 6.0.3.5 → 6.0.4.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: da1d2871767780b8d872eea28a1a400cf1bf034ecbe413adfe97e209f2095241
4
- data.tar.gz: 6be584157348590e0304e3ece025a9160fe554c344541616a1b5f383d596b0db
3
+ metadata.gz: 7ecbea618c3d687827eb845c727679477517de6982f358f141ac616366527c89
4
+ data.tar.gz: 145c510d7a4fa6f89a0a18ab250c1847a3473bdc0a8399ba26479c98caeec39c
5
5
  SHA512:
6
- metadata.gz: d7a6ce9b45759ff9d90907ed0564fb61fb909f66fb780a24f7d73e341f21a3da8cef6a5ff4a8bb8ce8e611aa31ca1d42d5218b7f3058601f1295ed5ed9949ee3
7
- data.tar.gz: 5c6bc416049cee243d8e79ec427876425efea19299de42ca7c341c253c594c9e2a67a2d0e27edc81bd00b4acf1a1bb54f26f0355f4209c1b56a6ce79be6102f4
6
+ metadata.gz: d3531a1a0edad1393ec7ae41deaa3f732f436511df28fd30a5749b6420495094719843f2bec1f8dc6f6846cbb6c8d10a4e202783425f2f429e041639d0cb634f
7
+ data.tar.gz: bff8dbeb868911a4583342ff79e6a4723ebbe07d1b14d7da1674670bcb535104121f6297493a7269599412499c7eb177f81b2aacd9257896def60af3a401b5f0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ ## Rails 6.0.4.1 (August 19, 2021) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 6.0.4 (June 15, 2021) ##
7
+
8
+ * No changes.
9
+
10
+
11
+ ## Rails 6.0.3.7 (May 05, 2021) ##
12
+
13
+ * No changes.
14
+
15
+
16
+ ## Rails 6.0.3.6 (March 26, 2021) ##
17
+
18
+ * No changes.
19
+
20
+
1
21
  ## Rails 6.0.3.5 (February 10, 2021) ##
2
22
 
3
23
  * No changes.
data/README.rdoc CHANGED
@@ -241,7 +241,7 @@ The latest version of Active Model can be installed with RubyGems:
241
241
 
242
242
  Source code can be downloaded as part of the Rails project on GitHub
243
243
 
244
- * https://github.com/rails/rails/tree/master/activemodel
244
+ * https://github.com/rails/rails/tree/main/activemodel
245
245
 
246
246
 
247
247
  == License
@@ -9,8 +9,8 @@ module ActiveModel
9
9
  module VERSION
10
10
  MAJOR = 6
11
11
  MINOR = 0
12
- TINY = 3
13
- PRE = "5"
12
+ TINY = 4
13
+ PRE = "1"
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
@@ -9,8 +9,10 @@ module ActiveModel
9
9
  end
10
10
 
11
11
  def register(type_name, klass = nil, **options, &block)
12
- block ||= proc { |_, *args| klass.new(*args) }
13
- block.ruby2_keywords if block.respond_to?(:ruby2_keywords)
12
+ unless block_given?
13
+ block = proc { |_, *args| klass.new(*args) }
14
+ block.ruby2_keywords if block.respond_to?(:ruby2_keywords)
15
+ end
14
16
  registrations << registration_klass.new(type_name, block, **options)
15
17
  end
16
18
 
@@ -31,8 +33,8 @@ module ActiveModel
31
33
  Registration
32
34
  end
33
35
 
34
- def find_registration(symbol, *args)
35
- registrations.find { |r| r.matches?(symbol, *args) }
36
+ def find_registration(symbol, *args, **kwargs)
37
+ registrations.find { |r| r.matches?(symbol, *args, **kwargs) }
36
38
  end
37
39
  end
38
40
 
@@ -89,7 +89,7 @@ module ActiveModel
89
89
 
90
90
  def parse_as_number(raw_value)
91
91
  if raw_value.is_a?(Float)
92
- raw_value.to_d
92
+ raw_value.to_d(Float::DIG)
93
93
  elsif raw_value.is_a?(Numeric)
94
94
  raw_value
95
95
  elsif is_integer?(raw_value)
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: 6.0.3.5
4
+ version: 6.0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-10 00:00:00.000000000 Z
11
+ date: 2021-08-19 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: 6.0.3.5
19
+ version: 6.0.4.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: 6.0.3.5
26
+ version: 6.0.4.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.
@@ -102,11 +102,11 @@ licenses:
102
102
  - MIT
103
103
  metadata:
104
104
  bug_tracker_uri: https://github.com/rails/rails/issues
105
- changelog_uri: https://github.com/rails/rails/blob/v6.0.3.5/activemodel/CHANGELOG.md
106
- documentation_uri: https://api.rubyonrails.org/v6.0.3.5/
105
+ changelog_uri: https://github.com/rails/rails/blob/v6.0.4.1/activemodel/CHANGELOG.md
106
+ documentation_uri: https://api.rubyonrails.org/v6.0.4.1/
107
107
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
108
- source_code_uri: https://github.com/rails/rails/tree/v6.0.3.5/activemodel
109
- post_install_message:
108
+ source_code_uri: https://github.com/rails/rails/tree/v6.0.4.1/activemodel
109
+ post_install_message:
110
110
  rdoc_options: []
111
111
  require_paths:
112
112
  - lib
@@ -121,8 +121,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
121
121
  - !ruby/object:Gem::Version
122
122
  version: '0'
123
123
  requirements: []
124
- rubygems_version: 3.0.3
125
- signing_key:
124
+ rubygems_version: 3.2.15
125
+ signing_key:
126
126
  specification_version: 4
127
127
  summary: A toolkit for building modeling frameworks (part of Rails).
128
128
  test_files: []