zenaton 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: f5cce9b70fd66d65689088c10c1d83006828eb43b46cd3dbb4be204a71cea03e
4
- data.tar.gz: 472e812fd74694cec984751063ee6bd45101427b624fb5e682cc878e3f819f64
3
+ metadata.gz: 2d50e2fc00f50096e323f479b78167ea23d4011d10e40c01bfe45396669ad055
4
+ data.tar.gz: f5a6432736d591d7b5f9e43bb949b9969f269a198a489785d35a09431f1f5671
5
5
  SHA512:
6
- metadata.gz: 1d11faf842c2d97c1eb3332acb62f6a0e948fa45bbfbb21cd97c976a9f1d5201281f35799c81f36e90b5ad1785e2a16a7ff9bb9117b022ac0815d544710348ae
7
- data.tar.gz: 1f080e9eeacd16d09c7b87dfbfbdb846c70fb573990e4721c084be4ec41a5a735b1f6efeb1eae9d332aa63db0765bda7f7443f1a5fae2c7d346d5760d53c32ef
6
+ metadata.gz: 3726c43b970e79f7d3f1ae6eaae62c894b55634658acdfdbeedaac4befec3e5463264f0f111f1673549e936a7344d6fa31b5890ca756609a57eac618d0a68dc4
7
+ data.tar.gz: 8578394854d77f89fa83d7156e06e16382c26f543ac46475bf98fafa4b0b53ade3915a0d8fb9dbcca160e8fbf9550576760ccd6e903821fa317d4071b3de3aa6
data/CHANGELOG.md CHANGED
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.3.1] - 2018-10-02
10
+ ### Fixed
11
+ - [Serialization]: Serializing ActiveModel object should no longer raise an
12
+ error
13
+
9
14
  ## [0.3.0] - 2018-09-24
10
15
  ### Changed
11
16
  - Rename `on_day` method to `day_of_month`
@@ -23,7 +28,7 @@ available.
23
28
  ## [0.2.2] - 2018-08-10
24
29
  ### Fixed
25
30
  - [Serialization]: Distinct objects, even if equal to one another, now map to
26
- distinct entries in the data store.
31
+ distinct entries in the data store.
27
32
 
28
33
  ## [0.2.1] - 2018-08-10
29
34
  ### Added
@@ -36,11 +41,11 @@ distinct entries in the data store.
36
41
  ## [0.2.0] - 2018-08-08
37
42
  ### Added
38
43
  - New serialization format for array and hashes. Currently running workflows
39
- should still be able to deserialize data in the old format.
44
+ should still be able to deserialize data in the old format.
40
45
 
41
46
  ### Fixed
42
47
  - Arrays and hashes with circular structures no longer cause infinite loops when
43
- serializing.
48
+ serializing.
44
49
 
45
50
  ## [0.1.1] - 2018-08-03
46
51
  ### Added
@@ -54,7 +59,8 @@ serializing.
54
59
  ### Added
55
60
  - Initial release.
56
61
 
57
- [Unreleased]: https://github.com/zenaton/zenaton-ruby/compare/v0.3.0...HEAD
62
+ [Unreleased]: https://github.com/zenaton/zenaton-ruby/compare/v0.3.1...HEAD
63
+ [0.3.1]: https://github.com/zenaton/zenaton-ruby/compare/v0.3.0...v0.3.1
58
64
  [0.3.0]: https://github.com/zenaton/zenaton-ruby/compare/v0.2.3...v0.3.0
59
65
  [0.2.3]: https://github.com/zenaton/zenaton-ruby/compare/v0.2.2...v0.2.3
60
66
  [0.2.2]: https://github.com/zenaton/zenaton-ruby/compare/v0.2.1...v0.2.2
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- zenaton (0.3.0)
4
+ zenaton (0.3.1)
5
5
  activesupport
6
6
  tzinfo-data
7
7
 
@@ -60,8 +60,8 @@ module Zenaton
60
60
  data.is_a?(String) \
61
61
  || data.is_a?(Integer) \
62
62
  || data.is_a?(Float) \
63
- || data == true \
64
- || data == false \
63
+ || data.is_a?(TrueClass) \
64
+ || data.is_a?(FalseClass) \
65
65
  || data.nil?
66
66
  end
67
67
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Zenaton
4
4
  # This gem's current version
5
- VERSION = '0.3.0'
5
+ VERSION = '0.3.1'
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zenaton
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
  - Zenaton
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-09-24 00:00:00.000000000 Z
11
+ date: 2018-10-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport