activemodel 5.0.3 → 5.0.4.rc1
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/lib/active_model/gem_version.rb +2 -2
- data/lib/active_model/validations/numericality.rb +3 -1
- metadata +7 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 332c3742f038ac48869ddb031edd2800692efaf3
|
|
4
|
+
data.tar.gz: 055f579b721ecb9da51caf994b6df99da0e95d68
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c634a9af538b782e21a67346432fd80ed2cd1776d8ce71f50e8dee627225f02b6db65411e3e20f11e1b57b3c5986a50184692a1351ac5bf001dfdc5e1408226
|
|
7
|
+
data.tar.gz: ab3172f0144da073a6a46e595d0177409109af41352acd6ef46ce11f3c495b7f04c33fed10414cf68b183c83379d5666d569d8bd26d2a3f6fcf45877b50099bd
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## Rails 5.0.4.rc1 (June 14, 2017) ##
|
|
2
|
+
|
|
3
|
+
* Fix regression in numericality validator when comparing Decimal and Float input
|
|
4
|
+
values with more scale than the schema.
|
|
5
|
+
|
|
6
|
+
*Bradley Priest*
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## Rails 5.0.3 (May 12, 2017) ##
|
|
10
|
+
|
|
1
11
|
* The original string assigned to a model attribute is no longer incorrectly
|
|
2
12
|
frozen.
|
|
3
13
|
|
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: 5.0.
|
|
4
|
+
version: 5.0.4.rc1
|
|
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: 2017-
|
|
11
|
+
date: 2017-06-14 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: 5.0.
|
|
19
|
+
version: 5.0.4.rc1
|
|
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: 5.0.
|
|
26
|
+
version: 5.0.4.rc1
|
|
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.
|
|
@@ -108,14 +108,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
108
108
|
version: 2.2.2
|
|
109
109
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
110
110
|
requirements:
|
|
111
|
-
- - "
|
|
111
|
+
- - ">"
|
|
112
112
|
- !ruby/object:Gem::Version
|
|
113
|
-
version:
|
|
113
|
+
version: 1.3.1
|
|
114
114
|
requirements: []
|
|
115
115
|
rubyforge_project:
|
|
116
|
-
rubygems_version: 2.6.
|
|
116
|
+
rubygems_version: 2.6.12
|
|
117
117
|
signing_key:
|
|
118
118
|
specification_version: 4
|
|
119
119
|
summary: A toolkit for building modeling frameworks (part of Rails).
|
|
120
120
|
test_files: []
|
|
121
|
-
has_rdoc:
|