-
Notifications
You must be signed in to change notification settings - Fork 10
/
xdr.gemspec
30 lines (25 loc) · 1 KB
/
xdr.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
# frozen_string_literals: true
require_relative "lib/xdr/version"
Gem::Specification.new do |spec|
spec.name = "xdr"
spec.version = XDR::VERSION
spec.authors = ["Scott Fleckenstein"]
spec.email = ["[email protected]"]
spec.summary = "XDR Helper Library"
spec.homepage = "https://github.com/astroband/ruby-xdr"
spec.license = "Apache-2.0"
spec.files = Dir["lib/**/*"]
spec.extra_rdoc_files += Dir["README*", "LICENSE*", "CHANGELOG*"]
spec.bindir = "exe"
spec.metadata = {
"github_repo" => spec.homepage.sub("https", "ssh"),
"source_code_uri" => spec.homepage,
"bug_tracker_uri" => "#{spec.homepage}/issues",
"changelog_uri" => "#{spec.homepage}/blob/v#{spec.version}/CHANGELOG.md",
"homepage_uri" => "#{spec.homepage}/tree/v#{spec.version}/",
"documentation_uri" => "https://rubydoc.info/gems/xdr/#{spec.version}/"
}
spec.required_ruby_version = ">= 2.4.0"
spec.add_dependency "activesupport", ">= 4.2", "< 8.0"
spec.add_dependency "activemodel", ">= 4.2", "< 8.0"
end