Sha256: 8aeaf2f4ed0dbb9502e9f38eebb59978d5b95f161ba65d86ee7edd1338fb70e8

Contents?: true

Size: 1.03 KB

Versions: 1

Compression:

Stored size: 1.03 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'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ascii_chart-0.1.0 ascii_chart.gemspec