10 lines
138 B
Ruby
Raw Permalink Normal View History

2016-07-07 16:38:33 +02:00
module Docurest
module Field
class Integer < Docurest::Field::Base
def convert
value.to_i
end
end
end
end