dry-struct 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +8 -14
- data/CHANGELOG.md +8 -0
- data/Gemfile +1 -0
- data/README.md +1 -1
- data/lib/dry/struct/class_interface.rb +1 -1
- data/lib/dry/struct/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1790fc1589d3f1760722ec40a8ec0286f678f5b7
|
4
|
+
data.tar.gz: 9f8abf1b69ff3751e798cd17ec8f2bd0c95ab538
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1498c341a9b852a685551226ad71aea5e2c82dcad82a404f961ecd5acd627bd686c9b300029419450c9d064ab0f9ae34c5cdba4c7ea434d4713a2d32da98df8d
|
7
|
+
data.tar.gz: c9e356de3e967185a74afebfdbb5674df6d8c05281d7d9362ca22bde8a84c85f2f39ca81bba4a3ee2c9c35eaff30645313a25ba5de3e13eb665f914a8d95c7ca
|
data/.travis.yml
CHANGED
@@ -1,26 +1,20 @@
|
|
1
1
|
language: ruby
|
2
|
-
|
3
|
-
|
2
|
+
dist: trusty
|
3
|
+
sudo: required
|
4
4
|
bundler_args: --without benchmarks tools
|
5
5
|
script:
|
6
6
|
- bundle exec rake spec
|
7
|
+
after_success:
|
8
|
+
- '[ "$TRAVIS_RUBY_VERSION" = "2.3.1" ] && [ "$TRAVIS_BRANCH" = "master" ] && bundle exec codeclimate-test-reporter'
|
7
9
|
rvm:
|
8
|
-
- 2.1
|
9
|
-
- 2.2
|
10
|
+
- 2.1.10
|
11
|
+
- 2.2.5
|
10
12
|
- 2.3.1
|
11
|
-
- rbx-
|
12
|
-
- jruby-
|
13
|
-
- ruby-head
|
13
|
+
- rbx-3
|
14
|
+
- jruby-9.1.5.0
|
14
15
|
env:
|
15
16
|
global:
|
16
17
|
- JRUBY_OPTS='--dev -J-Xmx1024M'
|
17
|
-
matrix:
|
18
|
-
allow_failures:
|
19
|
-
- rvm: ruby-head
|
20
|
-
- rvm: jruby-head
|
21
|
-
include:
|
22
|
-
- rvm: jruby-head
|
23
|
-
before_install: gem install bundler --no-ri --no-rdoc
|
24
18
|
notifications:
|
25
19
|
email: false
|
26
20
|
webhooks:
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
# v0.1.1 2016-11-13
|
2
|
+
|
3
|
+
## Fixed
|
4
|
+
|
5
|
+
* Make `Dry::Struct` act as a constrained type. This fixes the behavior of sum types containing structs (flash-gordon)
|
6
|
+
|
7
|
+
[Compare v0.1.0...v0.1.1](https://github.com/dry-rb/dry-struct/compare/v0.1.0...v0.1.1)
|
8
|
+
|
1
9
|
# v0.1.0 2016-09-21
|
2
10
|
|
3
11
|
## Added
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -14,7 +14,7 @@
|
|
14
14
|
[![Test Coverage](https://codeclimate.com/github/dry-rb/dry-struct/badges/coverage.svg)][codeclimate]
|
15
15
|
[![Inline docs](http://inch-ci.org/github/dry-rb/dry-struct.svg?branch=master)][inchpages]
|
16
16
|
|
17
|
-
|
17
|
+
Typed structs and value objects
|
18
18
|
|
19
19
|
## Development
|
20
20
|
|
data/lib/dry/struct/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dry-struct
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Piotr Solnica
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dry-equalizer
|
@@ -162,7 +162,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
162
162
|
version: '0'
|
163
163
|
requirements: []
|
164
164
|
rubyforge_project:
|
165
|
-
rubygems_version: 2.
|
165
|
+
rubygems_version: 2.5.1
|
166
166
|
signing_key:
|
167
167
|
specification_version: 4
|
168
168
|
summary: Typed structs and value objects.
|