looser_typecasting.rb

lib/sequel/extensions/looser_typecasting.rb
Last Update: 2010-02-11 00:27:07 -0800

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)