-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathterminal-table.gemspec
26 lines (21 loc) · 1012 Bytes
/
terminal-table.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'terminal-table/version'
Gem::Specification.new do |spec|
spec.name = "terminal-table"
spec.version = Terminal::Table::VERSION
spec.authors = ["TJ Holowaychuk", "Scott J. Goldman"]
spec.email = ["[email protected]"]
spec.summary = "Simple, feature rich ascii table generation library"
spec.homepage = "https://github.com/tj/terminal-table"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 2"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", ">= 3.0"
spec.add_development_dependency "term-ansicolor"
spec.add_development_dependency "pry"
spec.add_runtime_dependency "unicode-display_width", [">= 1.1.1", "< 3"]
end