joaquimadraz/compel

View on GitHub
lib/compel/coercion/types/date.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Compel
  module Coercion

    class Date < DateType

      def klass
        ::Date
      end

      def default_format
        '%Y-%m-%d'
      end

    end

  end
end