Skip to content

Instantly share code, notes, and snippets.

@sled
Created April 13, 2016 20:43
Show Gist options
  • Save sled/497587ee298e09f572960a6276445f7c to your computer and use it in GitHub Desktop.
Save sled/497587ee298e09f572960a6276445f7c to your computer and use it in GitHub Desktop.
class User < Dry::Types::Struct
attribute :name, Types::String
attribute :birth_day, Types::Date
end
class User < Dry::Types::Struct
attribute :name, Types::String
attribute :birth_date, Types::Coercible::Date
end
class User < Dry::Types::Struct
attribute :name, Types::String
attribute :birth_date, Types::Form::Date
end
class User < Dry::Types::Struct
attribute :name, Types::String
attribute :birth_date, Types::JSON::Date
end
class User < Dry::Types::Struct
CreepyRailsDate = Types::Date.constructor { |value| .. }
attribute :name, Types::String
attribute :birth_date, CreepyRailsDate
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment