-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsuperthread.gemspec
More file actions
41 lines (34 loc) · 1.46 KB
/
Copy pathsuperthread.gemspec
File metadata and controls
41 lines (34 loc) · 1.46 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
40
41
# frozen_string_literal: true
require_relative "lib/superthread/version"
Gem::Specification.new do |spec|
spec.name = "superthread"
spec.version = Superthread::VERSION
spec.authors = ["Steve Clarke"]
spec.email = ["steve@sevenview.ca"]
spec.summary = "Unofficial Ruby client and CLI for Superthread project management"
spec.description = "An unofficial Ruby gem providing both a library and CLI for interacting with " \
"the Superthread project management API. Manage cards, boards, projects, " \
"documentation, and more."
spec.homepage = "https://github.com/steveclarke/superthread"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2.0", "< 4.1"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/releases"
spec.metadata["rubygems_mfa_required"] = "true"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.files = Dir.glob(%w[lib/**/* exe/* LICENSE README.md CHANGELOG.md])
spec.bindir = "exe"
spec.executables = %w[suth]
spec.require_paths = ["lib"]
# Runtime dependencies
spec.add_dependency "activesupport"
spec.add_dependency "faraday"
spec.add_dependency "glamour"
spec.add_dependency "gum"
spec.add_dependency "reverse_markdown"
spec.add_dependency "shale"
spec.add_dependency "thor"
spec.add_dependency "unicode-display_width"
spec.add_dependency "zeitwerk"
end