mirror of
https://github.com/ditkrg/validates_timeliness.git
synced 2026-01-25 15:22:58 +00:00
Compare commits
5 Commits
v5.0.0.alp
...
v5.0.0.alp
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d0fcf754ec | ||
|
|
7233ff66dd | ||
|
|
f0ba09f278 | ||
|
|
80ee285b3a | ||
|
|
cf20576253 |
@@ -8,7 +8,7 @@ gemfile:
|
||||
- gemfiles/rails_5_2.gemfile
|
||||
|
||||
rvm:
|
||||
- "2.5.1"
|
||||
- "2.5.3"
|
||||
|
||||
script: 'bundle exec rspec'
|
||||
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
= [UNRELEASED]
|
||||
* 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
|
||||
* 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 'byebug'
|
||||
gem 'appraisal'
|
||||
gem 'sqlite3'
|
||||
gem 'sqlite3', '~> 1.3.6'
|
||||
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
|
||||
|
||||
# in Gemfile
|
||||
gem 'validates_timeliness', '~> 5.0.0.alpha2'
|
||||
gem 'validates_timeliness', '~> 5.0.0.alpha3'
|
||||
|
||||
# Run bundler
|
||||
$ bundle install
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
module ValidatesTimeliness
|
||||
VERSION = '5.0.0.alpha3'
|
||||
VERSION = '5.0.0.alpha4'
|
||||
end
|
||||
|
||||
@@ -17,5 +17,5 @@ Gem::Specification.new do |s|
|
||||
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user