-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
tty-command.gemspec
36 lines (32 loc) · 1.6 KB
/
tty-command.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
34
35
36
# frozen_string_literal: true
require_relative "lib/tty/command/version"
Gem::Specification.new do |spec|
spec.name = "tty-command"
spec.version = TTY::Command::VERSION
spec.authors = ["Piotr Murach"]
spec.email = ["[email protected]"]
spec.summary = %q{Execute shell commands with pretty output logging and capture their stdout, stderr and exit status.}
spec.description = %q{Execute shell commands with pretty output logging and capture their stdout, stderr and exit status. Redirect stdin, stdout and stderr of each command to a file or a string.}
spec.homepage = "https://ttytoolkit.org"
spec.license = "MIT"
if spec.respond_to?(:metadata=)
spec.metadata = {
"allowed_push_host" => "https://rubygems.org",
"bug_tracker_uri" => "https://github.com/piotrmurach/tty-command/issues",
"changelog_uri" => "https://github.com/piotrmurach/tty-command/blob/master/CHANGELOG.md",
"documentation_uri" => "https://www.rubydoc.info/gems/tty-command",
"funding_uri" => "https://github.com/sponsors/piotrmurach",
"homepage_uri" => spec.homepage,
"rubygems_mfa_required" => "true",
"source_code_uri" => "https://github.com/piotrmurach/tty-command"
}
end
spec.files = Dir["lib/**/*"]
spec.extra_rdoc_files = ["README.md", "CHANGELOG.md", "LICENSE.txt"]
spec.bindir = "exe"
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.0.0"
spec.add_dependency "pastel", "~> 0.8"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", ">= 3.0"
end