forked from piotrmurach/tty-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtty-box.gemspec
37 lines (34 loc) · 1.55 KB
/
tty-box.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
37
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "tty/box/version"
Gem::Specification.new do |spec|
spec.name = "tty-box"
spec.version = TTY::Box::VERSION
spec.authors = ["Piotr Murach"]
spec.email = ["me@piotrmurach.com"]
spec.summary = %q{Draw various frames and boxes in your terminal interface.}
spec.description = %q{Draw various frames and boxes in your terminal interface.}
spec.homepage = "https://piotrmurach.github.io/tty"
spec.license = "MIT"
if spec.respond_to?(:metadata=)
spec.metadata = {
"allowed_push_host" => "https://rubygems.org",
"bug_tracker_uri" => "https://github.com/piotrmurach/tty-box/issues",
"changelog_uri" => "https://github.com/piotrmurach/tty-box/blob/master/CHANGELOG.md",
"documentation_uri" => "https://www.rubydoc.info/gems/tty-box",
"homepage_uri" => spec.homepage,
"source_code_uri" => "https://github.com/piotrmurach/tty-box"
}
end
spec.files = Dir["lib/**/*.rb", "tty-box.gemspec"]
spec.files += Dir["README.md", "CHANGELOG.md", "LICENSE.txt", "Rakefile"]
spec.executables = []
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.0.0"
spec.add_dependency "pastel", "~> 0.7.2"
spec.add_dependency "tty-cursor", "~> 0.7"
spec.add_dependency "strings", "~> 0.1.6"
spec.add_development_dependency "bundler", ">= 1.5"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 3.0"
end