Sha256: 5a3892125cf24cd01147b5595567bcf55e399f1bfe4771506e4cd15a9e8d91f6

Contents?: true

Size: 1019 Bytes

Versions: 1

Compression:

Stored size: 1019 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "hl/version"

Gem::Specification.new do |s|
  s.name        = "hl"
  s.version     = Hl::VERSION
  s.authors     = ["Dave Copeland"]
  s.email       = ["davetron5000@gmail.com"]
  s.homepage    = ""
  s.summary     = %q{Highlight words in stdin or files}
  s.description = %q{To help with reading the results of grep without further reducing the output, hl will highlight terms in the output}

  s.rubyforge_project = "hl"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.add_development_dependency('rdoc')
  s.add_development_dependency('ronn')
  s.add_development_dependency('aruba')
  s.add_development_dependency('rake','~> 0.9.2')
  s.add_dependency('methadone', '~>1.0')
  s.add_dependency('rainbow', '~> 2.0')
  s.add_dependency('gem-man')
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hl-1.2.0 hl.gemspec