-
Notifications
You must be signed in to change notification settings - Fork 1
/
abt-cli.gemspec
33 lines (26 loc) · 976 Bytes
/
abt-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
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "abt/version"
Gem::Specification.new do |spec|
spec.name = "abt-cli"
spec.version = Abt::VERSION
spec.authors = ["Jesper Sørensen"]
spec.email = ["[email protected]"]
spec.required_ruby_version = ">= 2.5.0"
spec.summary = "Versatile scripts"
spec.homepage = "https://github.com/abtion/abt"
spec.license = "MIT"
spec.executables = ["abt"]
spec.require_paths = ["lib"]
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/abtion/abt"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir.glob("#{__dir__}/{bin,lib}/**/*.rb").sort.map do |file|
file
end
spec.add_dependency("dry-inflector", "~> 0.2")
spec.add_dependency("faraday", ">= 1", "< 3")
spec.add_dependency("oj", "~> 3.10")
spec.add_development_dependency("bundler", "~> 2.0")
end