File: unicode_plot.gemspec

package info (click to toggle)
ruby-unicode-plot 0.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,492 kB
  • sloc: ruby: 2,871; makefile: 4
file content (41 lines) | stat: -rw-r--r-- 1,406 bytes parent folder | download
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "unicode_plot/version"

Gem::Specification.new do |spec|
  spec.name = "unicode_plot"
  version_components = [
    UnicodePlot::Version::MAJOR.to_s,
    UnicodePlot::Version::MINOR.to_s,
    UnicodePlot::Version::MICRO.to_s,
    UnicodePlot::Version::TAG
  ]
  spec.version = version_components.compact.join(".")
  spec.authors = ["mrkn"]
  spec.email = ["mrkn@mrkn.jp"]

  spec.summary = %q{Plot your data by Unicode characters}
  spec.description = %q{Plot your data by Unicode characters}
  spec.homepage = "https://github.com/red-data-tools/unicode_plot.rb"
  spec.license = "MIT"

  spec.metadata ||= {}
  spec.metadata["documentation_uri"] = "https://red-data-tools.github.io/unicode_plot.rb/#{spec.version}/"

  spec.files = ["README.md", "Rakefile", "Gemfile", "#{spec.name}.gemspec"]
  spec.files << "LICENSE.txt"
  spec.files.concat Dir.glob("lib/**/*.rb")

  spec.test_files.concat Dir.glob("test/**/*.rb")

  spec.bindir = "exe"
  spec.executables = spec.files.grep(%r{^exe/}) {|f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_runtime_dependency "enumerable-statistics", ">= 2.0.1"

  spec.add_development_dependency "bundler", ">= 1.17"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "test-unit"
  spec.add_development_dependency "yard"
end