class PG::TextDecoder::Date

Public Instance Methods

decode(string, tuple=nil, field=nil) click to toggle source
# File lib/pg/text_decoder.rb, line 9
def decode(string, tuple=nil, field=nil)
        if string =~ /\A(\d{4})-(\d\d)-(\d\d)\z/
                ::Date.new $1.to_i, $2.to_i, $3.to_i
        else
                string
        end
end