Created
April 13, 2016 23:00
-
-
Save sled/9cd41495aab6487a3b992a43540185a4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Put this in app/types/types/address.rb then | |
# rails c | |
# Types::Address.new | |
# (change zip to Types::String) | |
# reload! | |
# Types::Address.new | |
module Types | |
class Address < Dry::Types::Struct | |
constructor_type(:schema) | |
attribute :zip, Types::Int | |
attribute :city, Types::String | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment