module Compel module Builder class Time < Schema include CommonValue def initialize super(Coercion::Time) end def format(value) options[:format] = value self end def iso8601 options[:format] = '%FT%T' self end end end end