ruby-dagger 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0e0b2aac30db4d1b00f0c2142f9f67f3cbc7bf2c48c21c6769f488428e605f1e
4
- data.tar.gz: 6a03b80f550cc179fff40d582ba960011f57dda457fc728e130678e0697a00eb
3
+ metadata.gz: 36e5f00ff3615e8c6bd8f40f41b11aa63b1c232d63b5b2c455f684dcb80da834
4
+ data.tar.gz: 04b9b841666e58e50d1dc8a4b588b2a124ad58beef2074c92d62989ca84e3333
5
5
  SHA512:
6
- metadata.gz: 363469d20a35b20b81087b5c197f99a9175e02a2ea6b4ebae9d4f2fc3ce348710cd1f1e15bc5ff4c07579d5f6b3e8e5aa98ea5a2a8c7c38c2924decb8af55314
7
- data.tar.gz: 7745518212caef8a211a8d2750f177a1cfd092a4bf5161fa75826180ae478da90816e5c0afc748f2ad6a5294887e557a966551784e9cf393a1abeebae5f968ec
6
+ metadata.gz: 251ae0e16a32414a9557a676958d51f346c0be4e07a659a9aa1b285428ce9940511b02e4c890abee8fdd3352fd5c166e9e8c1821f29cc9b05e2aa05a738a9f35
7
+ data.tar.gz: 3ce39c02a776aafa907c9b73452e54e7ff8c9ae81fac87870280a5010ead25941c8d029089cb5bdd62360268808c42632a037a37ea101dc53d79686665de1d0c
data/CHANGELOG.md CHANGED
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+
10
+ ## [0.3.1] - 2019-07-05
11
+
12
+ ### Fixed
13
+
14
+ - There was a debug print statement in numeric default value generation
15
+
16
+
9
17
  ## [0.3.0] - 2019-07-05
10
18
 
11
19
  ### Added
@@ -28,10 +36,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
28
36
  to `#enum`, but are now based on `#to_ary`, to ensure that hashes are also
29
37
  wrapped.
30
38
 
39
+
31
40
  ## [Older]
32
41
  These releases have no change logs.
33
42
 
34
43
 
35
- [Unreleased]: https://github.com/notCalle/ruby-dagger/compare/v0.3.0..HEAD
44
+ [Unreleased]: https://github.com/notCalle/ruby-dagger/compare/v0.3.1..HEAD
45
+ [0.3.1]: https://github.com/notCalle/ruby-dagger/compare/v0.3.0..v0.3.1
36
46
  [0.3.0]: https://github.com/notCalle/ruby-dagger/compare/v0.2.1..v0.3.0
37
47
  [Older]: https://github.com/notCalle/ruby-dagger/releases/tag/v0.2.1
data/README.md CHANGED
@@ -26,6 +26,8 @@ spec/fixture/graph
26
26
  └── parent -> ../vertex1 # a.b = 2, c = 3
27
27
  ```
28
28
 
29
+ See the [changelog](CHANGELOG.md) for recent changes.
30
+
29
31
  ## Installation
30
32
 
31
33
  Add this line to your application's Gemfile:
@@ -28,7 +28,6 @@ module Dagger
28
28
  end
29
29
 
30
30
  def process_hash(hash)
31
- print(hash)
32
31
  hash.each do |key, args|
33
32
  result = process_hash_item(key, args)
34
33
  return result unless result.nil?
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-dagger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Calle Englund