-
Notifications
You must be signed in to change notification settings - Fork 2
/
aoc_cli.gemspec
40 lines (32 loc) · 1.21 KB
/
aoc_cli.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
34
35
36
37
38
39
40
require_relative "lib/aoc_cli/version"
Gem::Specification.new do |spec|
spec.name = "aoc_cli"
spec.version = AocCli::VERSION
spec.authors = ["Christian Welham"]
spec.email = ["welhamm@gmail.com"]
spec.summary = "A command-line interface for the Advent of Code puzzles"
spec.description = <<~DESCRIPTION
A command-line interface for the Advent of Code puzzles. Features include \
downloading puzzles and inputs, solving puzzles and tracking year progress \
from within the terminal
DESCRIPTION
spec.homepage = "https://github.com/apexatoll/aoc-cli"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/apexatoll/aoc-cli"
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
f == __FILE__ || f.match?(/\A(bin|spec|\.git)/)
end
end
spec.bindir = "exe"
spec.executables = ["aoc"]
spec.require_paths = %w[lib db]
spec.add_dependency "http"
spec.add_dependency "kangaru"
spec.add_dependency "nokogiri"
spec.add_dependency "reverse_markdown"
spec.add_dependency "sequel_polymorphic"
spec.add_dependency "terminal-table"
end