cloud_events 0.1.0 → 0.1.1
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +10 -4
- data/lib/cloud_events/event.rb +2 -2
- data/lib/cloud_events/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3c3e3c4f0c6f1b7dc96314f5a4564cdd87888f9f4f858f5d12e1556505c64630
|
|
4
|
+
data.tar.gz: f73cfbc438b97d4ebb71a7f5f32c342d50d588b78ddc525ad597a75323147b61
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 926a0c078a58961046e0b1a181a54f8e9323b01ef6bcc2e5021d0ef3a767ffcbec697e7067ae266b496c76a29bc103616e45c3a0ee4a4dad3eae72a259122514
|
|
7
|
+
data.tar.gz: 1a8415734e80047430ea3a216bc1c6ab41361410ec5a7be9b48e4ea60642992737559439c81d40c9892ab4f7c210df408afaef9ffa32b538bd5ac777b2b6327f
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -163,7 +163,7 @@ toys rubocop
|
|
|
163
163
|
That said, we are not style sticklers, and if a break is necessary for code
|
|
164
164
|
readability or practicality, Rubocop rules can be selectively disabled.
|
|
165
165
|
|
|
166
|
-
### Pull
|
|
166
|
+
### Pull requests
|
|
167
167
|
|
|
168
168
|
We welcome contributions from the community! Please take some time to become
|
|
169
169
|
acquainted with the process before submitting a pull request. There are just a
|
|
@@ -209,13 +209,19 @@ To perform a release:
|
|
|
209
209
|
that all GitHub checks against the current commit have succeeded. If these
|
|
210
210
|
checks pass, the script will create and push a release tag.
|
|
211
211
|
|
|
212
|
-
5. A GitHub action will then perform the release within a few minutes.
|
|
213
|
-
|
|
214
|
-
|
|
212
|
+
5. A GitHub action will then perform the release within a few minutes. The
|
|
213
|
+
[GitHub actions dashboard](https://github.com/cloudevents/sdk-ruby/actions?query=workflow%3A%22CloudEvents+Release%22)
|
|
214
|
+
will provide status information on the release workflow.
|
|
215
215
|
|
|
216
216
|
If the release workflow fails, fix the problem, and then you will need to
|
|
217
217
|
delete the release tag manually before triggering the release again.
|
|
218
218
|
|
|
219
|
+
### For more information
|
|
220
|
+
|
|
221
|
+
* Library documentation: https://cloudevents.github.io/sdk-ruby
|
|
222
|
+
* Issue tracker: https://github.com/cloudevents/sdk-ruby/issues
|
|
223
|
+
* Changelog: https://cloudevents.github.io/sdk-ruby/latest/file.CHANGELOG.html
|
|
224
|
+
|
|
219
225
|
## Community
|
|
220
226
|
|
|
221
227
|
* **Weekly meetings:** There are bi-weekly calls immediately following the
|
data/lib/cloud_events/event.rb
CHANGED
|
@@ -15,9 +15,9 @@ module CloudEvents
|
|
|
15
15
|
# * Event classes are defined within this module. For example, events
|
|
16
16
|
# conforming to the CloudEvents 1.0 specification are of type
|
|
17
17
|
# {CloudEvents::Event::V1}.
|
|
18
|
-
# * All event classes include this module, so you can use
|
|
18
|
+
# * All event classes include this module itself, so you can use
|
|
19
19
|
# `is_a? CloudEvents::Event` to test whether an object is an event.
|
|
20
|
-
# * All event objects are immutable. Data and
|
|
20
|
+
# * All event objects are immutable. Data and attribute values can be
|
|
21
21
|
# retrieved but not modified. To "modify" an event, make a copy with
|
|
22
22
|
# the desired changes. Generally, event classes will provide a helper
|
|
23
23
|
# method for this purpose.
|
data/lib/cloud_events/version.rb
CHANGED
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.
|
|
4
|
+
version: 0.1.1
|
|
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-
|
|
11
|
+
date: 2020-07-20 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://github.
|
|
40
|
+
changelog_uri: https://cloudevents.github.io/sdk-ruby/v0.1.1/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://
|
|
43
|
+
documentation_uri: https://cloudevents.github.io/sdk-ruby/v0.1.1
|
|
44
44
|
post_install_message:
|
|
45
45
|
rdoc_options: []
|
|
46
46
|
require_paths:
|