Sha256: 8825fcb9945b436d5f51f87fd8559e2bc94f7537295a4d789eb2faa61a0e63fb

Contents?: true

Size: 1.09 KB

Versions: 1

Compression:

Stored size: 1.09 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = 'dirtree'
  spec.version       = Dirtree::VERSION
  spec.authors       = ['Emad Elsaid']
  spec.email         = ['emad.elsaid.hamed@gmail.com']

  spec.summary       = 'display list of file paths as an interactive tree'
  spec.description   = 'display list of file paths as an interactive tree'
  spec.homepage      = 'https://www.github.com/blazeeboy/dirtree'
  spec.license       = 'MIT'

  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'
  spec.add_development_dependency 'rake'

  spec.post_install_message = <<-GUIDE
    To get autocompletion functionality
    run: dirtree completion >> ~/.bashrc
    Or, dirtree completion > /usr/local/etc/bash_completion.d/dirtree
    GUIDE
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dirtree-1.0.0 dirtree.gemspec