Sha256: 5bead448d9a0ac08e90804eff46141bbcea77ef91b8bd15c97c3d3c103ccb073

Contents?: true

Size: 1002 Bytes

Versions: 3

Compression:

Stored size: 1002 Bytes

Contents

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

Gem::Specification.new do |spec|
  spec.name          = 'backticks'
  spec.version       = Backticks::VERSION
  spec.authors       = ['Tony Spataro']
  spec.email         = ['xeger@xeger.net']

  spec.summary       = %q{Intuitive OOP wrapper for command-line processes}
  spec.description   = %q{Captures stdout, stderr and (optionally) stdin; uses PTY to avoid buffering.}
  spec.homepage      = 'https://github.com/xeger/backticks'
  spec.license       = 'MIT'

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_development_dependency 'bundler', '~> 1.10'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'rspec'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
backticks-0.3.1 backticks.gemspec
backticks-0.3.0 backticks.gemspec
backticks-0.1.1 backticks.gemspec