forked from stackbuilders/stub_shell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstub_shell.gemspec
22 lines (19 loc) · 943 Bytes
/
stub_shell.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- 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 = ["[email protected]", "[email protected]"]
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