validates_timeliness 5.0.0.alpha3 → 5.0.0.alpha4

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: af65a7d386f84031f91352f58a45a0e55ed6498714eeb8375e253f24cc4f482f
4
- data.tar.gz: e37e9ec9e3c3bc83a3a6f6cf55d427ceae7f77952f20d5fcc97bb202596678dd
3
+ metadata.gz: '0891cbd18ce77b4f8907bcb1267130e60350ffab7334f54fc11e4f8c412fef00'
4
+ data.tar.gz: 329dcaba25102a694495be0d4f6de227d627fb96e4ba3beb97ae66f1c30f500f
5
5
  SHA512:
6
- metadata.gz: 37c4920afff7ae6cc2f6c7287350576fac3a3ff16014e3b15185805a8002cc458055ec60c81d055a4c660033f7fc8842aa731c797e3f5699bbad217de8c74063
7
- data.tar.gz: 9fdf5698a1d2041bb1eca74b68b58dd7a091df8e90c17f8cf201e199003fbbbe2fae62c7a4fe084b18bb080128b50d78660612e28ff3960b28e7351a95e674c8
6
+ metadata.gz: c819a57b417a324a12f2c529b19a881640380c70aed98c51f7311e8826ff6bb378274f6c1aa8fff400bbf80d03bb59f86dd01cb0a365c0c096ee9f344beadc57
7
+ data.tar.gz: aeb420b3b112c458546168f0d126c9b388895b5e511661a318827a5bdb39825f7d85d3fa747933263e146a2ef29f40c3dc266a48009b2d3ee07fdfa73105ec1b
data/.travis.yml CHANGED
@@ -8,7 +8,7 @@ gemfile:
8
8
  - gemfiles/rails_5_2.gemfile
9
9
 
10
10
  rvm:
11
- - "2.5.1"
11
+ - "2.5.3"
12
12
 
13
13
  script: 'bundle exec rspec'
14
14
 
data/CHANGELOG.rdoc CHANGED
@@ -1,5 +1,8 @@
1
1
  = [UNRELEASED]
2
2
  * Fix DateTimeSelect extension support (AquisTech)
3
+ * Relaxed Timeliness dependency version which allows for >= 0.4.0 with
4
+ threadsafety fix for use_us_formats and use_euro_formats for hot switching
5
+ in a request.
3
6
 
4
7
  Breaking Changes
5
8
  * Update Multiparameter extension to use ActiveRecord type classes with multiparameter handling
data/README.rdoc CHANGED
@@ -30,7 +30,7 @@ If you a looking for the old version for Rails 4.x go here [https://github.com/a
30
30
  == Installation
31
31
 
32
32
  # in Gemfile
33
- gem 'validates_timeliness', '~> 5.0.0.alpha2'
33
+ gem 'validates_timeliness', '~> 5.0.0.alpha3'
34
34
 
35
35
  # Run bundler
36
36
  $ bundle install
@@ -1,3 +1,3 @@
1
1
  module ValidatesTimeliness
2
- VERSION = '5.0.0.alpha3'
2
+ VERSION = '5.0.0.alpha4'
3
3
  end
@@ -17,5 +17,5 @@ Gem::Specification.new do |s|
17
17
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
18
  s.extra_rdoc_files = ["README.rdoc", "CHANGELOG.rdoc", "LICENSE"]
19
19
 
20
- s.add_runtime_dependency(%q<timeliness>, ["~> 0.3.8"])
20
+ s.add_runtime_dependency(%q<timeliness>, [">= 0.3.10", "< 1"])
21
21
  end
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: validates_timeliness
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.0.alpha3
4
+ version: 5.0.0.alpha4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Meehan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-07-30 00:00:00.000000000 Z
11
+ date: 2019-02-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: timeliness
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.3.8
19
+ version: 0.3.10
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '1'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: 0.3.10
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: 0.3.8
32
+ version: '1'
27
33
  description: Adds validation methods to ActiveModel for validating dates and times.
28
34
  Works with multiple ORMS.
29
35
  email: adam.meehan@gmail.com
@@ -97,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
103
  version: 1.3.1
98
104
  requirements: []
99
105
  rubyforge_project:
100
- rubygems_version: 2.7.3
106
+ rubygems_version: 2.7.6
101
107
  signing_key:
102
108
  specification_version: 4
103
109
  summary: Date and time validation plugin for Rails which allows custom formats