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