-
Notifications
You must be signed in to change notification settings - Fork 0
/
issue-db.gemspec
33 lines (26 loc) · 1.12 KB
/
issue-db.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
33
# frozen_string_literal: true
require_relative "lib/version"
Gem::Specification.new do |spec|
spec.name = "issue-db"
spec.version = IssueDB::VERSION
spec.authors = ["runwaylab", "GrantBirki"]
spec.license = "MIT"
spec.summary = "A Ruby Gem to use GitHub Issues as a NoSQL JSON document db"
spec.description = <<~SPEC_DESC
A Ruby Gem to use GitHub Issues as a NoSQL JSON document db
SPEC_DESC
spec.homepage = "https://github.com/runwaylab/issue-db"
spec.metadata = {
"source_code_uri" => "https://github.com/runwaylab/issue-db",
"documentation_uri" => "https://github.com/runwaylab/issue-db",
"bug_tracker_uri" => "https://github.com/runwaylab/issue-db/issues"
}
spec.add_dependency "redacting-logger", "~> 1.4"
spec.add_dependency "retryable", "~> 3.0", ">= 3.0.5"
spec.add_dependency "octokit", "~> 9.2"
spec.add_dependency "faraday-retry", "~> 2.2", ">= 2.2.1"
spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")
spec.files = %w[LICENSE README.md issue-db.gemspec]
spec.files += Dir.glob("lib/**/*.rb")
spec.require_paths = ["lib"]
end