-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadvent_of_ruby.gemspec
More file actions
36 lines (31 loc) · 1.47 KB
/
advent_of_ruby.gemspec
File metadata and controls
36 lines (31 loc) · 1.47 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
require_relative "lib/arb/version"
Gem::Specification.new do |spec|
spec.name = "advent_of_ruby"
spec.version = Arb::VERSION
spec.authors = ["Felipe Vogel"]
spec.email = ["fps.vogel@gmail.com"]
spec.summary = "CLI for Advent of Code in Ruby, via the `arb` command."
spec.homepage = "https://github.com/fpsvogel/advent_of_ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= #{File.read(".ruby-version")[/\d+\.\d+/]}" # e.g. "3.4" from "3.4.8"
spec.add_runtime_dependency "benchmark", "~> 0.4"
spec.add_runtime_dependency "debug", "~> 1.0"
spec.add_runtime_dependency "dotenv", "~> 3.0"
spec.add_runtime_dependency "faraday", "~> 2.0"
spec.add_runtime_dependency "faraday-retry", "~> 2.0"
spec.add_runtime_dependency "pastel", "~> 0.8"
spec.add_runtime_dependency "rake", "~> 13.0"
spec.add_runtime_dependency "redcarpet", "~> 3.0"
spec.add_runtime_dependency "reverse_markdown", "~> 2.0"
spec.add_runtime_dependency "rspec", "~> 3.0"
spec.add_runtime_dependency "thor", "~> 1.0"
spec.add_runtime_dependency "vcr", "~> 6.0"
spec.add_runtime_dependency "yaml", "~> 0.4.0"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["source_code_uri"] = "https://github.com/fpsvogel/advent_of_ruby"
spec.metadata["changelog_uri"] = "https://github.com/fpsvogel/advent_of_ruby/blob/main/CHANGELOG.md"
spec.files = Dir["lib/**/*.rb", "data/**/*"]
spec.bindir = "bin"
spec.executables << "arb"
spec.require_paths = ["lib", "dev"]
end