Sha256: c5d73982e5c0dfb4b24e84cbb17e44d921bdc4275d6d4fa5cf1da9d813ac8e50

Contents?: true

Size: 1.08 KB

Versions: 1

Compression:

Stored size: 1.08 KB

Contents

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

require 'ascii_chart/version'

Gem::Specification.new do |spec|
  spec.name          = 'ascii_chart'
  spec.version       = AsciiChart::VERSION
  spec.authors       = ['zhustec']
  spec.email         = ['zhustec@foxmail.com']

  spec.summary       = 'Nice-looking lightweight console ASCII line charts ┈╯'
  spec.description   = 'Nice-looking lightweight console ASCII line charts ┈╯'
  spec.homepage      = 'https://github.com/zhustec/ascii_chart'
  spec.license       = 'MIT'

  spec.files         = Dir.chdir(File.expand_path('..', __FILE__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  end

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

  spec.add_development_dependency 'bundler', '~> 1.16'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'minitest', '~> 5.0'
  spec.add_development_dependency 'pry-byebug', '~> 3.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ascii_chart-0.2.0 ascii_chart.gemspec