YouPlot/youplot.gemspec

29 lines
992 B
Ruby
Raw Normal View History

2020-09-18 23:08:09 +08:00
# frozen_string_literal: true
2020-11-23 12:09:16 +08:00
require_relative 'lib/youplot/version'
2020-07-28 22:07:15 +08:00
Gem::Specification.new do |spec|
2020-11-23 12:09:16 +08:00
spec.name = 'youplot'
spec.version = YouPlot::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
2021-01-01 23:30:24 +08:00
spec.summary = 'A command line tool for Unicode Plotting'
spec.description = 'A command line tool for Unicode Plotting'
spec.homepage = 'https://github.com/red-data-tools/YouPlot'
2020-07-28 22:14:47 +08:00
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 2.4.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'
2021-01-19 18:26:41 +08:00
spec.executables = %w[uplot youplot]
2020-07-28 22:14:47 +08:00
spec.require_paths = ['lib']
2021-07-12 13:56:41 +08:00
spec.add_runtime_dependency 'unicode_plot', '>= 0.0.5'
2020-07-28 22:14:47 +08:00
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
2020-08-03 09:36:36 +08:00
spec.add_development_dependency 'rubocop'
2020-08-19 21:12:53 +08:00
spec.add_development_dependency 'simplecov'
2020-07-28 22:14:47 +08:00
spec.add_development_dependency 'test-unit'
2020-07-28 22:07:15 +08:00
end