Last Modified
2018-01-01 00:18:20 +0000
Requires

Description

The LooserTypecasting extension changes the float and integer typecasting to use the looser .to_f and .to_i instead of the more strict Kernel.Float and Kernel.Integer. To use it, you should extend the database with the Sequel::LooserTypecasting module after loading the extension:

Sequel.extension :looser_typecasting
DB.extend(Sequel::LooserTypecasting)