Compare commits

..

3 Commits
2.2.1 ... 2.2.2

Author SHA1 Message Date
Adam Meehan
f109443fb7 version 2.2.2 2009-09-19 08:19:27 +10:00
Adam Meehan
96bf4bf184 fix dummy to respect timezones by using make_time 2009-09-19 07:30:33 +10:00
Adam Meehan
90be6a6db5 change to github issues for bug reports 2009-09-12 14:39:46 +10:00
4 changed files with 6 additions and 3 deletions

View File

@@ -1,3 +1,6 @@
= 2.2.2 [2009-09-19]
- Fixed dummy_time using make_time to respect timezone. Fixes 1.9.1 bug.
= 2.2.1 [2009-09-12]
- Fixed dummy date part for time types in Validator.type_cast_value
- No more core extensions! Removed dummy_time methods.

View File

@@ -1,7 +1,7 @@
= validates_timeliness
* Source: http://github.com/adzap/validates_timeliness
* Bugs: http://adzap.lighthouseapp.com/projects/14111-validates_timeliness
* Bugs: http://github.com/adzap/validates_timeliness/issues
== DESCRIPTION:

View File

@@ -224,7 +224,7 @@ module ValidatesTimeliness
time = [0,0,0]
end
dummy_date = ValidatesTimeliness::Formats.dummy_date_for_time_type
Time.send(ValidatesTimeliness.default_timezone, *(dummy_date + time))
ValidatesTimeliness::Parser.make_time(dummy_date + time)
end
end

View File

@@ -1,3 +1,3 @@
module ValidatesTimeliness
VERSION = "2.2.1"
VERSION = "2.2.2"
end