cloud_events 0.1.1 → 0.1.2

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
  SHA256:
3
- metadata.gz: 3c3e3c4f0c6f1b7dc96314f5a4564cdd87888f9f4f858f5d12e1556505c64630
4
- data.tar.gz: f73cfbc438b97d4ebb71a7f5f32c342d50d588b78ddc525ad597a75323147b61
3
+ metadata.gz: 74c0ef2dc5dbf76ff7bf8622bfe06a6204efae852cb0c2357d61593d338f7d39
4
+ data.tar.gz: 3c08218a9044b57f688d152e2251d57bdb30053fc118818c0f5311bc4f92c283
5
5
  SHA512:
6
- metadata.gz: 926a0c078a58961046e0b1a181a54f8e9323b01ef6bcc2e5021d0ef3a767ffcbec697e7067ae266b496c76a29bc103616e45c3a0ee4a4dad3eae72a259122514
7
- data.tar.gz: 1a8415734e80047430ea3a216bc1c6ab41361410ec5a7be9b48e4ea60642992737559439c81d40c9892ab4f7c210df408afaef9ffa32b538bd5ac777b2b6327f
6
+ metadata.gz: 21e5169c373e299326ec652b9db50b0217f2824e252ad200a3d05870d5511b72d1f256b4cf79b6d837724e3613e285bf4c7438313f7e53e0a796a577dc4ecb48
7
+ data.tar.gz: 3010f9740a6f9f16464232054ed4adc967987dd40b39a317c0758f272629bca750524cdfb7c757a05b2888936c0d5b23522086099e55b6a22f86ac881b90fb1c
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ### v0.1.2 / 2020-09-02
4
+
5
+ * Fix: Convert extension attributes to strings, and ignore nils
6
+ * Documentation: Add code of conduct link to readme
7
+
3
8
  ### v0.1.1 / 2020-07-20
4
9
 
5
10
  * Updated a few documentation links. No functional changes.
data/README.md CHANGED
@@ -106,7 +106,7 @@ Hit `CTRL+C` to stop the server.
106
106
 
107
107
  ## Contributing
108
108
 
109
- Bug reports and pull requests are welcome on GitHub at https://github.com/cloudevents/ruby-sdk.
109
+ Bug reports and pull requests are welcome on GitHub at https://github.com/cloudevents/sdk-ruby.
110
110
 
111
111
  ### Development
112
112
 
@@ -195,7 +195,7 @@ To perform a release:
195
195
  previous entries.
196
196
 
197
197
  3. Ensure the above changes are pushed to the GitHub master branch at
198
- https://github.com/cloudevents/ruby-sdk.
198
+ https://github.com/cloudevents/sdk-ruby.
199
199
 
200
200
  4. Execute
201
201
 
@@ -239,6 +239,17 @@ To perform a release:
239
239
 
240
240
  * For additional information, contact Daniel Azuma (`@dazuma` on Slack).
241
241
 
242
+ Each SDK may have its own unique processes, tooling and guidelines, common
243
+ governance related material can be found in the
244
+ [CloudEvents `community`](https://github.com/cloudevents/spec/tree/master/community)
245
+ directory. In particular, in there you will find information concerning
246
+ how SDK projects are
247
+ [managed](https://github.com/cloudevents/spec/blob/master/community/SDK-GOVERNANCE.md),
248
+ [guidelines](https://github.com/cloudevents/spec/blob/master/community/SDK-maintainer-guidelines.md)
249
+ for how PR reviews and approval, and our
250
+ [Code of Conduct](https://github.com/cloudevents/spec/blob/master/community/GOVERNANCE.md#additional-information)
251
+ information.
252
+
242
253
  ## Licensing
243
254
 
244
255
  Copyright 2020 Google LLC and the CloudEvents Ruby SDK Contributors
@@ -14,7 +14,9 @@ module CloudEvents
14
14
  end
15
15
 
16
16
  def finish_attributes
17
- @attributes.merge! @args
17
+ @args.each do |key, value|
18
+ @attributes[key] = value.to_s unless value.nil?
19
+ end
18
20
  @args = {}
19
21
  @attributes
20
22
  end
@@ -5,5 +5,5 @@ module CloudEvents
5
5
  # Version of the Ruby CloudEvents SDK
6
6
  # @return [String]
7
7
  #
8
- VERSION = "0.1.1"
8
+ VERSION = "0.1.2"
9
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloud_events
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Azuma
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-20 00:00:00.000000000 Z
11
+ date: 2020-09-02 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: The official Ruby implementation of the CloudEvents Specification. Provides
14
14
  data types for events, and HTTP/JSON bindings for marshalling and unmarshalling
@@ -37,10 +37,10 @@ homepage: https://github.com/cloudevents/sdk-ruby
37
37
  licenses:
38
38
  - Apache-2.0
39
39
  metadata:
40
- changelog_uri: https://cloudevents.github.io/sdk-ruby/v0.1.1/file.CHANGELOG.html
40
+ changelog_uri: https://cloudevents.github.io/sdk-ruby/v0.1.2/file.CHANGELOG.html
41
41
  source_code_uri: https://github.com/cloudevents/sdk-ruby
42
42
  bug_tracker_uri: https://github.com/cloudevents/sdk-ruby/issues
43
- documentation_uri: https://cloudevents.github.io/sdk-ruby/v0.1.1
43
+ documentation_uri: https://cloudevents.github.io/sdk-ruby/v0.1.2
44
44
  post_install_message:
45
45
  rdoc_options: []
46
46
  require_paths: