date_validator 0.11.0 → 0.12.0

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: '089b8331eec9d9832d3867d22d213f0fe9f16f1c0e61982def3e19b171dc729d'
4
- data.tar.gz: f2e3b93ed21294cef464284976e2edcc2fab27bb0bf6b37b18a494b241dd85d0
3
+ metadata.gz: '0587958367007902f71aaa6c998355ccf98faa62af66f884a1df5b7ee36c9b62'
4
+ data.tar.gz: 2d51c0d4c8e29bde58cb4b442c49eadf6162b2a1c72a1b7e3d05ccdcd1b4d8ba
5
5
  SHA512:
6
- metadata.gz: bef6a2179671eb18059b1fc21c5796d11a425803a0041371e5f456c5a5b244e8aa3266fe89be416c5acf527ea40dd15a183090e75cd8cb8ab9b4f73c5ca60a96
7
- data.tar.gz: a98af5f8076fbfc0dc3e83b3dbf8e5df23330638a2048a3a6804e3e3b05c49b62bc1a77cfab04e715b2d19a34f122b66aea570976cadc0629505fec00f45a62a
6
+ metadata.gz: 24782d9c608c4308312e4392e860c09831f0c2a19f114916feb57631722f9a87c79905790c869b1a785e583951b57939c37ab6b6c9d24484d537b2176d46c193
7
+ data.tar.gz: 2e2bbb1eeba8557913259b678fb5d23f0981bfc2b54f634941d93d667dc6de4c99f3dc2647e11385350df8ccd488efc3987307af7cfc5d078a62fec2a13073e7
data/Readme.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # date_validator [![Build Status](https://travis-ci.org/codegram/date_validator.png?branch=master)](https://travis-ci.org/codegram/date_validator)
2
2
 
3
3
 
4
- A simple date validator for Rails. Should be compatible with all latest Rubies (~> 2.x).
4
+ A simple date validator for Rails. Should be compatible with all latest Rubies (>2.2, includes Ruby 3.0).
5
5
 
6
6
 
7
7
  ```shell
@@ -8,6 +8,7 @@ Gem::Specification.new do |s|
8
8
  s.authors = ["Oriol Gual", "Josep M. Bach", "Josep Jaume Rey"]
9
9
  s.email = ["info@codegram.com"]
10
10
  s.homepage = "http://github.com/codegram/date_validator"
11
+ s.license = "MIT"
11
12
  s.summary = %q{A simple, ORM agnostic, Ruby 1.9 compatible date validator for Rails 3+, based on ActiveModel.}
12
13
  s.description = %q{A simple, ORM agnostic, Ruby 1.9 compatible date validator for Rails 3+, based on ActiveModel. Currently supporting :after, :before, :after_or_equal_to and :before_or_equal_to options.}
13
14
 
@@ -1,4 +1,4 @@
1
1
  module DateValidator
2
2
  # The version number.
3
- VERSION = "0.11.0"
3
+ VERSION = "0.12.0"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: date_validator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oriol Gual
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2021-05-11 00:00:00.000000000 Z
13
+ date: 2021-07-16 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activemodel
@@ -123,7 +123,8 @@ files:
123
123
  - test/date_validator_test.rb
124
124
  - test/test_helper.rb
125
125
  homepage: http://github.com/codegram/date_validator
126
- licenses: []
126
+ licenses:
127
+ - MIT
127
128
  metadata: {}
128
129
  post_install_message:
129
130
  rdoc_options: []
@@ -140,7 +141,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
140
141
  - !ruby/object:Gem::Version
141
142
  version: '0'
142
143
  requirements: []
143
- rubygems_version: 3.1.4
144
+ rubygems_version: 3.2.22
144
145
  signing_key:
145
146
  specification_version: 4
146
147
  summary: A simple, ORM agnostic, Ruby 1.9 compatible date validator for Rails 3+,