Sha256: 39a58ba5ae9d8e4e4c8dede86737197423a2dd3d677a4e78b012381fbc60bdd9
Contents?: true
Size: 1.41 KB
Versions: 1
Compression:
Stored size: 1.41 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'warp/dir/version' Gem::Specification.new do |gem| gem.name = 'warp-dir' gem.license = 'MIT' gem.authors = ['Konstantin Gredeskoul'] gem.email = ['kig@reinvent.one'] gem.version = Warp::Dir::VERSION gem.summary = %q{Warp-Dir (aka 'wd') is a command line tool that lets you bookmark any folders, and then 'wd' between any two points on file system in one command.} gem.description = %q{Warp-Dir is compatible (and inspired by) the popular 'wd' tool available as a ZSH module. This one is written in ruby and so it should work in any shell. Credits for the original zsh-only tool go to (https://github.com/mfaerevaag/wd).} gem.homepage = "https://github.com/kigster/warp-dir" gem.files = `git ls-files`.split($\).reject{ |f| f =~ /^doc\/|Gemfile/ } gem.executables << 'warp-dir' gem.post_install_message = ::Warp::Dir::INSTALL_NOTICE gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = %w(lib) gem.add_dependency('slop', '~> 4.2') gem.add_dependency('colored', '~> 1') gem.add_development_dependency 'codeclimate-test-reporter', '~> 0.5' gem.add_development_dependency 'bundler', '~> 1.11' gem.add_development_dependency 'rake', '~> 10.0' gem.add_development_dependency 'rspec', '~> 3.4' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
warp-dir-1.1.3 | warp-dir.gemspec |