diff options
author | Koichi Sasada <[email protected]> | 2021-04-26 11:31:58 +0900 |
---|---|---|
committer | Koichi Sasada <[email protected]> | 2021-04-26 11:33:07 +0900 |
commit | c647205c3eb1f17409a859149bb7d2ea38b43bed () | |
tree | b4026e309798a3663d522faf86806c61b9bfce21 /lib/time.rb | |
parent | 4ca271909d51a692a97363f41d2372a108ef771a (diff) |
disable shareable_constant_value for CI
To debug CI failures on FreeBSD, disable `shareable_constant_value`.
-rw-r--r-- | lib/time.rb | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -480,10 +480,17 @@ class Time t end - MonthValue = { # :nodoc: 'JAN' => 1, 'FEB' => 2, 'MAR' => 3, 'APR' => 4, 'MAY' => 5, 'JUN' => 6, 'JUL' => 7, 'AUG' => 8, 'SEP' => 9, 'OCT' =>10, 'NOV' =>11, 'DEC' =>12 - } # # Parses +date+ as date-time defined by RFC 2822 and converts it to a Time |