Sha256: 5f582416b61b94996e5a3f7cc5ab368d892fe83d7fc0b33b30349efde2d60c77
Contents?: true
Size: 1.04 KB
Versions: 2
Compression:
Stored size: 1.04 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "tty/pie/version" Gem::Specification.new do |spec| spec.name = "tty-pie" spec.version = TTY::Pie::VERSION spec.authors = ["Piotr Murach"] spec.email = [""] spec.summary = %q{Draw pie charts in your terminal window.} spec.description = %q{Draw pie charts in your terminal window.} spec.homepage = "https://piotrmurach.github.io/tty" spec.license = "MIT" spec.files = Dir['{lib,spec,examples}/**/*.rb'] spec.files += Dir['{bin,tasks}/*', 'tty-pie.gemspec'] spec.files += Dir['README.md', 'CHANGELOG.md', 'LICENSE.txt', 'Rakefile'] spec.require_paths = ["lib"] spec.required_ruby_version = '>= 2.0.0' spec.add_dependency 'pastel', '~> 0.7.2' spec.add_dependency 'tty-cursor', '~> 0.6.0' spec.add_development_dependency 'bundler', '~> 1.16' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rspec', '~> 3.0' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tty-pie-0.2.0 | tty-pie.gemspec |
tty-pie-0.1.0 | tty-pie.gemspec |