diff options
| author | DmitriyMV <codeprojtwo@gmail.com> | 2017-03-02 14:11:09 +0300 |
|---|---|---|
| committer | DmitriyMV <codeprojtwo@gmail.com> | 2017-03-04 05:29:35 +0300 |
| commit | ee5353cf832a2fec57eacb77396a443e6d6a5b9e (patch) | |
| tree | d6d812f982fd8df7afa0a42d16a4ad107dcc3352 /vendor/github.com/jinzhu/now/Guardfile | |
| parent | be32789ec53ebe0a2141cf4d13696280ef79ee7f (diff) | |
This commit removes all usages of github.com/jinzhu/now.
github.com/jinzhu/now has numerous errors handling date and time. The example's of them are:
1. Incorrect handling of DST (https://github.com/jinzhu/now/issues/13).
2. 24 Hour long days (https://stackoverflow.com/questions/25254443/return-local-beginning-of-day-time-object-in-go) Chicago has 23, 24, or 25 hours in a day.
3. Incorrect usage of time.Truncate which can return time with a non-zero minute, depending on the time's Location. (https://github.com/golang/go/issues/16647).
There are other issues as well, including getting incorrect beginning and end of the month.
Diffstat (limited to 'vendor/github.com/jinzhu/now/Guardfile')
| -rw-r--r-- | vendor/github.com/jinzhu/now/Guardfile | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/vendor/github.com/jinzhu/now/Guardfile b/vendor/github.com/jinzhu/now/Guardfile deleted file mode 100644 index 0b860b0..0000000 --- a/vendor/github.com/jinzhu/now/Guardfile +++ /dev/null @@ -1,3 +0,0 @@ -guard 'gotest' do - watch(%r{\.go$}) -end |
