Files
YouPlot/youplot.gemspec

32 lines
1.0 KiB
Ruby
Raw Normal View History

2020-09-19 00:08:09 +09:00
# frozen_string_literal: true
2020-11-23 13:09:16 +09:00
require_relative 'lib/youplot/version'
2020-07-28 23:07:15 +09:00
Gem::Specification.new do |spec|
2020-11-23 13:09:16 +09:00
spec.name = 'youplot'
spec.version = YouPlot::VERSION
2020-07-28 23:14:47 +09:00
spec.authors = ['kojix2']
spec.email = ['2xijok@gmail.com']
2020-07-28 23:07:15 +09:00
2020-07-29 12:36:11 +09: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-11-23 13:09:16 +09:00
spec.homepage = 'https://github.com/kojix2/youplot'
2020-07-28 23:14:47 +09:00
spec.license = 'MIT'
2020-10-10 23:18:27 +09:00
spec.required_ruby_version = Gem::Requirement.new('>= 2.4.0')
2020-07-28 23:07:15 +09:00
2020-07-29 12:36:11 +09:00
spec.files = Dir['*.{md,txt}', '{lib,exe}/**/*']
2020-07-28 23:14:47 +09:00
spec.bindir = 'exe'
2020-11-23 13:46:33 +09:00
spec.executables = ['uplot', 'youplot']
2020-07-28 23:14:47 +09:00
spec.require_paths = ['lib']
spec.add_runtime_dependency 'unicode_plot'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
2020-08-03 10:36:36 +09:00
spec.add_development_dependency 'rubocop'
2020-08-19 22:12:53 +09:00
spec.add_development_dependency 'simplecov'
2020-07-28 23:14:47 +09:00
spec.add_development_dependency 'test-unit'
2020-07-28 23:07:15 +09:00
end