-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
console.gemspec
29 lines (20 loc) · 933 Bytes
/
console.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
# frozen_string_literal: true
require_relative "lib/console/version"
Gem::Specification.new do |spec|
spec.name = "console"
spec.version = Console::VERSION
spec.summary = "Beautiful logging for Ruby."
spec.authors = ["Samuel Williams", "Robert Schulze", "Bryan Powell", "Michael Adams", "Anton Sozontov", "Cyril Roelandt", "Cédric Boutillier", "Felix Yan", "Olle Jonsson", "Patrik Wenger", "William T. Nelson"]
spec.license = "MIT"
spec.cert_chain = ["release.cert"]
spec.signing_key = File.expand_path("~/.gem/release.pem")
spec.homepage = "https://socketry.github.io/console"
spec.metadata = {
"documentation_uri" => "https://socketry.github.io/console/",
}
spec.files = Dir.glob(["{bake,lib}/**/*", "*.md"], File::FNM_DOTMATCH, base: __dir__)
spec.required_ruby_version = ">= 3.1"
spec.add_dependency "fiber-annotation"
spec.add_dependency "fiber-local", "~> 1.1"
spec.add_dependency "json"
end