forked from rspec/rspec-mocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rspec-mocks.gemspec
27 lines (23 loc) · 1.06 KB
/
rspec-mocks.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 "rspec/mocks/version"
Gem::Specification.new do |s|
s.name = "rspec-mocks"
s.version = RSpec::Mocks::Version::STRING
s.platform = Gem::Platform::RUBY
s.license = "MIT"
s.authors = ["Steven Baker", "David Chelimsky"]
s.email = "[email protected]"
s.homepage = "http://github.com/rspec/rspec-mocks"
s.summary = "rspec-mocks-#{RSpec::Mocks::Version::STRING}"
s.description = "RSpec's 'test double' framework, with support for stubbing and mocking"
s.rubyforge_project = "rspec"
s.files = `git ls-files -- lib/*`.split("\n")
s.files += %w[README.md License.txt Changelog.md .yardopts .document]
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
s.rdoc_options = ["--charset=UTF-8"]
s.require_path = "lib"
s.add_development_dependency 'rake', '~> 0.9.2'
s.add_development_dependency 'cucumber', '~> 1.1.9'
s.add_development_dependency 'aruba', '~> 0.4.11'
end