Sha256: 4912591bb477a19f48b943532d4e52a1489f703a9c2d0a14f839895aa16721ca

Contents?: true

Size: 766 Bytes

Versions: 1

Compression:

Stored size: 766 Bytes

Contents

# -*- encoding: utf-8 -*-

require File.dirname(__FILE__) + "/lib/cd"

Gem::Specification.new do |gem|
  gem.name          = "cd"
  gem.version       = Cd::VERSION
  gem.summary       = "Enhanced cd command for the Ruby console"
  gem.description   = "Enhanced cd command for the Ruby console."
  gem.authors       = ["Jan Lelis"]
  gem.email         = "mail@janlelis.de"
  gem.homepage      = "https://github.com/janlelis/cd"
  gem.license       = "MIT"

  gem.files         = Dir['{**/}{.*,*}'].select{ |path| File.file?(path) && path !~ /^pkg/ }
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ['lib']

  gem.required_ruby_version = '>= 1.9.3'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cd-1.0.1 cd.gemspec