-
Notifications
You must be signed in to change notification settings - Fork 0
/
stirlitz.gemspec
28 lines (23 loc) · 954 Bytes
/
stirlitz.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "stirlitz/version"
Gem::Specification.new do |s|
s.name = "stirlitz"
s.version = Stirlitz::Version::STRING
s.platform = Gem::Platform::RUBY
s.authors = ["Srushti Ambekallu", "Niranjan Paranjape"]
s.email = "[email protected]"
s.homepage = "http://github.com/c42/stirlitz"
s.summary = "stirlitz-#{Stirlitz::Version::STRING}"
s.description = "Test spy extension to rspec-mocks"
s.rubygems_version = "1.3.7"
s.rubyforge_project = "stirlitz"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.extra_rdoc_files = [ "README.rdoc" ]
s.rdoc_options = ["--charset=UTF-8"]
s.require_path = "lib"
s.add_runtime_dependency "rspec", ["~> 2.5.0"]
s.add_runtime_dependency "rspec-mocks", ["~> 2.5.0"]
end