-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
bake.gemspec
32 lines (22 loc) · 897 Bytes
/
bake.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
# frozen_string_literal: true
require_relative "lib/bake/version"
Gem::Specification.new do |spec|
spec.name = "bake"
spec.version = Bake::VERSION
spec.summary = "A replacement for rake with a simpler syntax."
spec.authors = ["Samuel Williams", "Olle Jonsson"]
spec.license = "MIT"
spec.cert_chain = ['release.cert']
spec.signing_key = File.expand_path('~/.gem/release.pem')
spec.homepage = "https://github.com/ioquatix/bake"
spec.metadata = {
"documentation_uri" => "https://ioquatix.github.io/bake/",
"funding_uri" => "https://github.com/sponsors/ioquatix/",
"source_code_uri" => "https://github.com/ioquatix/bake.git",
}
spec.files = Dir.glob(['{bake,bin,lib}/**/*', '*.md'], File::FNM_DOTMATCH, base: __dir__)
spec.executables = ["bake"]
spec.required_ruby_version = ">= 3.1"
spec.add_dependency "bigdecimal"
spec.add_dependency "samovar", "~> 2.1"
end