Files
YouPlot/youplot.gemspec

25 lines
791 B
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
2021-01-02 00:30:24 +09: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 23:14:47 +09:00
spec.license = 'MIT'
2023-12-26 14:42:00 +09:00
spec.required_ruby_version = Gem::Requirement.new('>= 2.5.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'
2021-01-19 19:26:41 +09:00
spec.executables = %w[uplot youplot]
2020-07-28 23:14:47 +09:00
spec.require_paths = ['lib']
spec.add_dependency 'csv'
spec.add_dependency 'unicode_plot', '>= 0.0.5'
2020-07-28 23:07:15 +09:00
end