rom-rb/rom-rails

View on GitHub
lib/generators/rom/install/templates/types.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "dry/types"

module Types
  include Dry.Types

  ID = Coercible::Integer.optional.meta(primary_key: true)

  # Include your own type definitions and coersions here.
  # See http://dry-rb.org/gems/dry-types
end