-
Notifications
You must be signed in to change notification settings - Fork 24
/
3llo.gemspec
33 lines (26 loc) · 1.12 KB
/
3llo.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
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "3llo/version"
Gem::Specification.new do |spec|
spec.name = "3llo"
spec.version = Tr3llo::VERSION
spec.authors = ["Cẩm Huỳnh", "Diệp Sở Hùng"]
spec.email = ["huynhquancam@gmail.com", "diepsohung@gmail.com"]
spec.summary = "Trello CLI app"
spec.description = "Interactive CLI application for Trello"
spec.homepage = "https://github.com/qcam/3llo"
spec.license = "MIT"
if spec.respond_to?(:metadata)
spec.metadata["allowed_push_host"] = "https://rubygems.org"
else
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
end
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/|intro\.gif}) }
spec.bindir = "bin"
spec.executables = spec.files.grep(%r{^bin/}) { |filename| File.basename(filename) }
spec.require_paths = ["lib"]
spec.required_ruby_version = "~> 3.0"
spec.add_runtime_dependency "tty-prompt", "~> 0.20"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "rubocop", "~> 0.79"
end