Replace Fixnum with Integer

This commit is contained in:
Ionut Dorobantu 2017-04-13 12:37:19 +01:00 committed by Elliot Winkler
parent 2a5c312bce
commit 61c365416a
1 changed files with 1 additions and 1 deletions

View File

@ -548,7 +548,7 @@ EOT
case value case value
when true, false then :boolean when true, false then :boolean
when BigDecimal then :decimal when BigDecimal then :decimal
when Fixnum then :fixnum when Integer then :fixnum
when Date then :date when Date then :date
when DateTime then :datetime when DateTime then :datetime
when Time then :time when Time then :time