aw_datapipe 0.2.2 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8069a2387ce46fbc70da4ac48c1222f278788987
4
- data.tar.gz: 98edd2f4a1a69c54b011c1c29de1ac544a051455
3
+ metadata.gz: 7409863129aa7799585aa77be92d24a69ba54dd5
4
+ data.tar.gz: bb72bb793a705bee75ed6fbfd96c366696a60239
5
5
  SHA512:
6
- metadata.gz: 961913134170db5c22785dc6c3fc675a173c7a4546b8b5abffa8091e3958edda9604d0e5699befc751fbf71831c02b9ea255548db76cc8b46ef027c672c0e9b8
7
- data.tar.gz: 8e7a93d3ff7a1aa56de918af699d57ec458bd5bb60d47f1783bff202f8f5c0a413e0819bd0c91942e8652e62b996eefae5ae606f4cc8767bb3b041b5372e0e97
6
+ metadata.gz: 3ec360d3bce499fa2f28709d368ff642636d78fa944a3a27b2880c8546674f3f393725358d30689d1d767f60e224c15bd476b98b31a64f171f767de0015cc36c
7
+ data.tar.gz: e37d10c31b7fba43bd1854da6be243392e439aa73002fbf946b150595b27c835eaf60913197e88bab122ede6be264af81cf8e0201ef12330ccd0f087d806d82e
data/CHANGELOG.md CHANGED
@@ -12,6 +12,9 @@
12
12
  - Rubydocs.
13
13
  - AWS labs examples converted to DSL.
14
14
 
15
+ ## 0.2.3 - 2017-05-24
16
+ - Don’t include unpopulated optional fields when converting PipelineObject#to_hash.
17
+
15
18
  ## 0.2.2 - 2017-05-24
16
19
  - Add CsvDataFormat.
17
20
 
data/README.md CHANGED
@@ -58,6 +58,8 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/varyon
58
58
 
59
59
  ## Releasing
60
60
 
61
+ Make sure Travis CI is passing.
62
+
61
63
  To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
62
64
 
63
65
  ## License
@@ -29,7 +29,7 @@ module AwDatapipe
29
29
  end
30
30
 
31
31
  def to_hash
32
- Hash[each_pair.to_a].merge(id: id, name: name)
32
+ Hash[each_pair.select { |k, v| v != nil }].merge(id: id, name: name)
33
33
  end
34
34
 
35
35
  def source(indent_level = 1)
@@ -1,3 +1,3 @@
1
1
  module AwDatapipe
2
- VERSION = "0.2.2"
2
+ VERSION = "0.2.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aw_datapipe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piers Chambers