2020-07-28 22:07:15 +08:00
|
|
|
require_relative 'lib/uplot/version'
|
|
|
|
|
|
|
|
Gem::Specification.new do |spec|
|
2020-07-28 22:14:47 +08:00
|
|
|
spec.name = 'uplot'
|
2020-07-28 22:07:15 +08:00
|
|
|
spec.version = Uplot::VERSION
|
2020-07-28 22:14:47 +08:00
|
|
|
spec.authors = ['kojix2']
|
|
|
|
spec.email = ['2xijok@gmail.com']
|
2020-07-28 22:07:15 +08:00
|
|
|
|
2020-07-29 11:36:11 +08:00
|
|
|
spec.summary = 'Create Ascii charts on your terminal.'
|
|
|
|
spec.description = <<~MSG
|
|
|
|
Create ASCII charts on the terminal with data from standard streams in the
|
|
|
|
pipeline.
|
|
|
|
MSG
|
2020-07-28 22:14:47 +08:00
|
|
|
spec.homepage = 'https://github.com/kojix2/uplot'
|
|
|
|
spec.license = 'MIT'
|
|
|
|
spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
|
2020-07-28 22:07:15 +08:00
|
|
|
|
2020-07-29 11:36:11 +08:00
|
|
|
spec.files = Dir['*.{md,txt}', '{lib,exe}/**/*']
|
2020-07-28 22:14:47 +08:00
|
|
|
spec.bindir = 'exe'
|
2020-07-29 11:36:11 +08:00
|
|
|
spec.executables = ['uplot']
|
2020-07-28 22:14:47 +08:00
|
|
|
spec.require_paths = ['lib']
|
|
|
|
|
|
|
|
spec.add_runtime_dependency 'unicode_plot'
|
|
|
|
spec.add_development_dependency 'bundler'
|
|
|
|
spec.add_development_dependency 'rake'
|
|
|
|
spec.add_development_dependency 'test-unit'
|
2020-07-28 22:07:15 +08:00
|
|
|
end
|