-
Notifications
You must be signed in to change notification settings - Fork 13
/
cloud_events.gemspec
32 lines (27 loc) · 1.24 KB
/
cloud_events.gemspec
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
# frozen_string_literal: true
lib = ::File.expand_path "lib", __dir__
$LOAD_PATH.unshift lib unless $LOAD_PATH.include? lib
require "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 = ["[email protected]"]
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") + ::Dir.glob("*.md") + [".yardopts"]
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.5"
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