Sha256: 841f4891eb5ed088621ffbfe304b9db6994b2d0cef36cff8528b4af6353c379a

Contents?: true

Size: 1.15 KB

Versions: 6

Compression:

Stored size: 1.15 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'p4util/version'

Gem::Specification.new do |spec|
  spec.name          = 'p4util'
  spec.version       = P4Util::VERSION
  spec.authors       = ['Tristan Juricek']
  spec.email         = ['tjuricek@perforce.com']
  spec.summary       = %q{The p4util command line app eases setup of Perforce instances, mostly for testing.}
  spec.description   = %q{The p4util command itself provides other commands, see 'p4util help' after install. This allows you to things like download a p4d, start it, kill it, etc mostly for quick setup of testing systems.}
  spec.homepage      = 'http://perforce.com'
  spec.license       = 'MIT'

  spec.files         = `find . -type f -not -path '*/\.*' -not -name '*.lock'`.split
  spec.executables   = spec.files.grep(%r{^./bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(./test|./spec|./features)/})
  spec.require_paths = ['lib']

  spec.add_development_dependency 'bundler', '~> 1.7'

  spec.add_runtime_dependency 'p4ruby', '~> 2014.2.0.pre'
  spec.add_runtime_dependency 'rake', '~> 10.3'
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
p4util-0.3.0 ./p4util.gemspec
p4util-0.2 ./p4util.gemspec
p4util-0.1.6 ./p4util.gemspec
p4util-0.1.5 ./p4util.gemspec
p4util-0.1.4 ./p4util.gemspec
p4util-0.1.3 ./p4util.gemspec