-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcloud_events.gemspec
More file actions
39 lines (34 loc) · 1.38 KB
/
cloud_events.gemspec
File metadata and controls
39 lines (34 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# frozen_string_literal: true
require_relative "lib/cloud_events/version"
version = ::CloudEvents::VERSION
::Gem::Specification.new do |spec|
spec.name = "cloud_events"
spec.version = version
spec.licenses = ["Apache-2.0"]
spec.authors = ["Daniel Azuma"]
spec.email = ["dazuma@gmail.com"]
spec.summary = "Ruby SDK for CloudEvents"
spec.description =
"The official Ruby implementation of the CloudEvents Specification. " \
"Provides data types for events, and HTTP/JSON bindings for marshalling " \
"and unmarshalling event data."
spec.homepage = "https://github.com/cloudevents/sdk-ruby"
spec.files = ::Dir.glob("lib/**/*.rb") +
[
".yardopts",
"CHANGELOG.md",
"CONTRIBUTING.md",
"MAINTAINERS.md",
"README.md",
"RELEASING.md",
"LICENSE",
]
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.7"
if spec.respond_to?(:metadata)
spec.metadata["changelog_uri"] = "https://cloudevents.github.io/sdk-ruby/v#{version}/file.CHANGELOG.html"
spec.metadata["source_code_uri"] = "https://github.com/cloudevents/sdk-ruby"
spec.metadata["bug_tracker_uri"] = "https://github.com/cloudevents/sdk-ruby/issues"
spec.metadata["documentation_uri"] = "https://cloudevents.github.io/sdk-ruby/v#{version}"
end
end