validation_scopes 0.6.2 → 0.6.3

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.
Files changed (4) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +4 -0
  3. data/README.md +2 -2
  4. metadata +8 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: f23610d7eccb4b5ada980c154abd159a8189a8a6
4
- data.tar.gz: 349acbf85828b02b2f75eeb2672ef21c5e99a892
2
+ SHA256:
3
+ metadata.gz: 726ab29dbbcb8f87e1110acae3e202e3d38aeed84b7f19a96d804cc0f9a073a2
4
+ data.tar.gz: 0041aef843df442d2504279b469863e2b9cdb153c90283044a623c463971c01f
5
5
  SHA512:
6
- metadata.gz: 5b94770154be57f0046476e8f0b1882e29164c589c87f13ff6b7bee429ebc8608c765fe00e2569786c1673ec79b1a935452eaba4055b56565812ba510e1c935b
7
- data.tar.gz: 6db1d274111967fd0ef26fc1b71e49c8fa0aa827df5f4dbd2827a61cd8952563adb2e315dee30e83335af1a47c1b9b40253a5dc726f8d2aed1546eb7754d9baa
6
+ metadata.gz: beeab330cec72ab92b3f31e803b6f06cb3c529210b2d8ecdb45d47b65447cc5765ba38e5abf5e9508dfda25cddbbe0bbe14801feab1f26a9ff45b1c29c235a06
7
+ data.tar.gz: 75615bbece9ba5dd9ca5baf6f97c6f3537937cec17bf3019add182c6faad28d260554e0a2a4cdb46df149a47bc95896619793d8898213f3445e1e60c93dbda1b
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.6.3 - 2021-06-19
2
+
3
+ * Allow Rails 6.1 (James Adam)
4
+
1
5
  # 0.6.2 - 2019-08-28
2
6
 
3
7
  * Allow Rails 6 (James Adam)
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Validation Scopes [![Build Status](https://travis-ci.org/gtd/validation_scopes.svg?branch=master)](https://travis-ci.org/gtd/validation_scopes)
1
+ # Validation Scopes ![Tests](https://github.com/gtd/validation_scopes/actions/workflows/tests.yml/badge.svg)
2
2
 
3
3
  This gem adds a simple class method `validation_scope` to ActiveRecord. This generates a new collection of
4
4
  `ActiveRecord::Errors` that can be manipulated independently of the standard `errors`, `valid?` and `save` methods. The
@@ -98,4 +98,4 @@ context of a delegate class, private methods won't work as they would in standar
98
98
 
99
99
  ## Copyright
100
100
 
101
- Copyright (c) 2010-2015 Gabe da Silveira. See LICENSE for details.
101
+ Copyright (c) 2010-2021 Gabe da Silveira. See LICENSE for details.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: validation_scopes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabe da Silveira
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-28 00:00:00.000000000 Z
11
+ date: 2021-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '6.1'
22
+ version: '6.2'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '6.1'
32
+ version: '6.2'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: rake
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ files:
76
76
  homepage: http://github.com/gtd/validation_scopes
77
77
  licenses: []
78
78
  metadata: {}
79
- post_install_message:
79
+ post_install_message:
80
80
  rdoc_options: []
81
81
  require_paths:
82
82
  - lib
@@ -91,9 +91,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
91
91
  - !ruby/object:Gem::Version
92
92
  version: '0'
93
93
  requirements: []
94
- rubyforge_project:
95
- rubygems_version: 2.5.2.3
96
- signing_key:
94
+ rubygems_version: 3.0.3
95
+ signing_key:
97
96
  specification_version: 4
98
97
  summary: Create sets of validations independent of the life-cycle of an ActiveRecord
99
98
  object