Sha256: 6cb9220a9fa725cc46172a32657ae59cbabd2590944404ed51528e0d3b512ca0

Contents?: true

Size: 647 Bytes

Versions: 5

Compression:

Stored size: 647 Bytes

Contents

## 1.0.0

* Extra attributes are ignored.

    ```ruby
    # Before:

    publish = Publish.new(status: "published", title: "foo")
    publis.attributes # => { :status => "published" }
    # => NoMethodError: undefined method `title=' for #<Publish...>

    # Now:

    # Extra fields are discarded
    publish = Publish.new(status: "published", title: "foo")
    publish.attributes # => { :status => "published" }
    ```

## 0.4.1

* Fix creation of symbols for extra attributes.

## 0.4.0

* Fix `assert_email` and `assert_url` to support longer tld's.

## 0.3.0

* Add support for negative numbers.

## 0.2.0

* Add `assert_equal` validation.

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
scrivener-1.1.0 CHANGELOG.md
opal-scrivener-1.0.2 CHANGELOG.md
opal-scrivener-1.0.1 CHANGELOG.md
opal-scrivener-1.0.0 CHANGELOG.md
scrivener-1.0.0 CHANGELOG.md