Sha256: 27f6c547372f1442b2170377710ba91d6d88971e5e3c993a0d84149f5e77c0f0

Contents?: true

Size: 943 Bytes

Versions: 3

Compression:

Stored size: 943 Bytes

Contents

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

Gem::Specification.new do |s|
  s.name        = "stub_shell"
  s.version     = StubShell::VERSION
  s.authors     = ["Justin Leitgeb", "itsmeduncan"]
  s.email       = ["justin@stackbuilders.com", "itsmeduncan@gmail.com"]
  s.homepage    = "http://github.com/stackbuilders/stub_shell"
  s.summary     = %q{Stub results of shell commands for test purposes}
  s.description = %q{Stubs a set of shell commands and their return values using the backquote operator.}

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

  s.add_development_dependency 'rake', '~> 0.9.2.2'
  s.add_development_dependency 'rspec', '~> 2.8.0'
  s.add_development_dependency 'simplecov', '~> 0.5.4'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
stub_shell-0.0.3 stub_shell.gemspec
stub_shell-0.0.2 stub_shell.gemspec
stub_shell-0.0.1 stub_shell.gemspec