Sha256: 89ad43cff073da0240ce7768d9590b54e5c455a71fa9f6364eab7a24d448a47c

Contents?: true

Size: 810 Bytes

Versions: 1

Compression:

Stored size: 810 Bytes

Contents

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'termtable/version'

Gem::Specification.new do |spec|
  spec.name          = 'termtable'
  spec.version       = Termtable::VERSION
  spec.authors       = ['Nicholas Palaniuk']
  spec.email         = ['npalaniuk+github@gmail.com']
  spec.summary       = 'Table generator for the terminal'
  spec.description   = 'Table generator for the terminal'
  spec.homepage      = 'https://github.com/nikkypx/termtable'

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_development_dependency 'bundler'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
termtable-0.1.0 termtable.gemspec