mirror of
https://github.com/ditkrg/validates_timeliness.git
synced 2026-01-25 15:22:58 +00:00
Compare commits
6 Commits
v5.0.0.alp
...
v5.0.0.alp
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d0fcf754ec | ||
|
|
7233ff66dd | ||
|
|
f0ba09f278 | ||
|
|
80ee285b3a | ||
|
|
cf20576253 | ||
|
|
f39fbb0ad2 |
@@ -8,7 +8,7 @@ gemfile:
|
|||||||
- gemfiles/rails_5_2.gemfile
|
- gemfiles/rails_5_2.gemfile
|
||||||
|
|
||||||
rvm:
|
rvm:
|
||||||
- "2.5.1"
|
- "2.5.3"
|
||||||
|
|
||||||
script: 'bundle exec rspec'
|
script: 'bundle exec rspec'
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
= [UNRELEASED]
|
= [UNRELEASED]
|
||||||
* Fix DateTimeSelect extension support (AquisTech)
|
* Fix DateTimeSelect extension support (AquisTech)
|
||||||
|
* Relaxed Timeliness dependency version which allows for >= 0.4.0 with
|
||||||
|
threadsafety fix for use_us_formats and use_euro_formats for hot switching
|
||||||
|
in a request.
|
||||||
|
|
||||||
Breaking Changes
|
Breaking Changes
|
||||||
* Update Multiparameter extension to use ActiveRecord type classes with multiparameter handling
|
* Update Multiparameter extension to use ActiveRecord type classes with multiparameter handling
|
||||||
|
|||||||
2
Gemfile
2
Gemfile
@@ -8,5 +8,5 @@ gem 'rspec-rails', '~> 3.7'
|
|||||||
gem 'timecop'
|
gem 'timecop'
|
||||||
gem 'byebug'
|
gem 'byebug'
|
||||||
gem 'appraisal'
|
gem 'appraisal'
|
||||||
gem 'sqlite3'
|
gem 'sqlite3', '~> 1.3.6'
|
||||||
gem 'nokogiri', '~> 1.8'
|
gem 'nokogiri', '~> 1.8'
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ If you a looking for the old version for Rails 4.x go here [https://github.com/a
|
|||||||
== Installation
|
== Installation
|
||||||
|
|
||||||
# in Gemfile
|
# in Gemfile
|
||||||
gem 'validates_timeliness', '~> 5.0.0.alpha2'
|
gem 'validates_timeliness', '~> 5.0.0.alpha3'
|
||||||
|
|
||||||
# Run bundler
|
# Run bundler
|
||||||
$ bundle install
|
$ bundle install
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
module ValidatesTimeliness
|
module ValidatesTimeliness
|
||||||
VERSION = '5.0.0.alpha2'
|
VERSION = '5.0.0.alpha4'
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -17,5 +17,5 @@ Gem::Specification.new do |s|
|
|||||||
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
||||||
s.extra_rdoc_files = ["README.rdoc", "CHANGELOG.rdoc", "LICENSE"]
|
s.extra_rdoc_files = ["README.rdoc", "CHANGELOG.rdoc", "LICENSE"]
|
||||||
|
|
||||||
s.add_runtime_dependency(%q<timeliness>, ["~> 0.3.8"])
|
s.add_runtime_dependency(%q<timeliness>, [">= 0.3.10", "< 1"])
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user