Sha256: d590d8593bffaa6cdd717106c4b7589eec9b965f1f3969ed06e9afa36d0c6860

Contents?: true

Size: 1.33 KB

Versions: 2

Compression:

Stored size: 1.33 KB

Contents

---
title: Getting Started
layout: gem-single
name: dry-types
---

### Using `Dry::Types` in Your Application

1. Make `Dry::Types` available to the application by creating a namespace that includes `Dry::Types`:

    ```ruby
    module Types
     include Dry.Types()
    end
    ```
   
2. Reload the environment, & type `Types::Coercible::String` in the ruby console to confirm it worked:

    ``` ruby
    Types::Coercible::String
    # => #<Dry::Types::Constructor type=#<Dry::Types::Definition primitive=String options={}>>
    ```

### Creating Your First Type

1. Define a struct's types by passing the name & type to the `attribute` method:

    ```ruby
    class User < Dry::Struct
      attribute :name, Types::String
    end
    ```

2. Define [Custom Types](docs::custom-types) in the `Types` module, then pass the name & type to `attribute`:

    ```ruby
    module Types
      include Dry.Types()
    
      Email = String.constrained(format: /\A[\w+\-.]+@[a-z\d\-]+(\.[a-z]+)*\.[a-z]+\z/i)
      Age = Integer.constrained(gt: 18)
    end
    class User < Dry::Struct
      attribute :name, Types::String
      attribute :email, Types::Email
      attribute :age, Types::Age
    end
    ```

3. Use a `Dry::Struct` as a type:

    ```ruby
    class Message < Dry::Struct
      attribute :body, Types::String
      attribute :to, User
    end
    ```

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dry-types-1.2.2 docsite/source/getting-started.html.md
dry-types-1.2.1 docsite/source/getting-started.html.md