-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathminitest-stub_any_instance.gemspec
More file actions
26 lines (22 loc) · 1011 Bytes
/
minitest-stub_any_instance.gemspec
File metadata and controls
26 lines (22 loc) · 1011 Bytes
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require lib + '/minitest/stub_any_instance/version'
Gem::Specification.new do |spec|
spec.name = "minitest-stub_any_instance"
spec.version = Minitest::StubAnyInstance::VERSION
spec.authors = ["Sammy Larbi", "Vasiliy Ermolovich"]
spec.email = ["sam@codeodor.com"]
spec.description = %q{Adds a method to MiniTest that stubs any instance of a class.}
spec.summary = %q{}
spec.homepage = "https://github.com/codeodor/minitest-stub_any_instance"
spec.license = "MIT"
spec.files = ["lib/minitest/stub_any_instance.rb"]
spec.executables = []
spec.test_files = ["test/stub_any_instance_test.rb"]
spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 2.0'
spec.add_development_dependency "bundler", ">= 1.11.2"
spec.add_development_dependency "rake"
spec.add_development_dependency "minitest"
end