-
Notifications
You must be signed in to change notification settings - Fork 1
/
better_receive.gemspec
23 lines (20 loc) · 1005 Bytes
/
better_receive.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/better_receive/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Steve Ellis", "Matthew Horan"]
gem.email = ["email@steveell.is", "matt@matthoran.com"]
gem.description = %q{Assert that an object responds to a method before asserting that the method is received.}
gem.summary = %q{A more assertive mock.}
gem.homepage = "http://github.com/se3000/better_receive"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "better_receive"
gem.require_paths = ["lib"]
gem.version = BetterReceive::BETTER_VERSION
spec.license = "MIT"
gem.add_dependency("rspec", "~> 2.14")
gem.add_dependency("rspec-core", "~> 2.14.6")
gem.add_development_dependency("rake", ">= 0")
gem.add_development_dependency("pry", ">= 0")
end