2010-06-11 14:54:06 -04:00
|
|
|
$LOAD_PATH << File.join(File.dirname(__FILE__), 'lib')
|
2010-12-15 17:34:19 -05:00
|
|
|
require 'shoulda/matchers/version'
|
2008-10-07 11:03:35 -04:00
|
|
|
|
2008-09-14 11:53:40 -04:00
|
|
|
Gem::Specification.new do |s|
|
2011-11-11 20:13:03 -05:00
|
|
|
s.name = "shoulda-matchers"
|
|
|
|
s.version = Shoulda::Matchers::VERSION.dup
|
|
|
|
s.authors = ["Tammer Saleh", "Joe Ferris", "Ryan McGeary", "Dan Croak",
|
2014-12-29 16:38:46 -05:00
|
|
|
"Matt Jankowski", "Stafford Brunk", "Elliot Winkler"]
|
2011-11-11 20:13:03 -05:00
|
|
|
s.date = Time.now.strftime("%Y-%m-%d")
|
|
|
|
s.email = "support@thoughtbot.com"
|
2018-04-05 07:36:46 -04:00
|
|
|
s.homepage = "https://matchers.shoulda.io/"
|
2011-11-11 20:13:03 -05:00
|
|
|
s.summary = "Making tests easy on the fingers and eyes"
|
2013-02-08 12:40:14 -05:00
|
|
|
s.license = "MIT"
|
2011-11-11 20:13:03 -05:00
|
|
|
s.description = "Making tests easy on the fingers and eyes"
|
2018-10-03 00:24:51 -04:00
|
|
|
s.metadata = {
|
|
|
|
'bug_tracker_uri' => 'https://github.com/thoughtbot/shoulda-matchers/issues',
|
|
|
|
'changelog_uri' => 'https://github.com/thoughtbot/shoulda-matchers/blob/master/NEWS.md',
|
|
|
|
'documentation_uri' => 'https://matchers.shoulda.io/docs',
|
|
|
|
'homepage_uri' => 'https://matchers.shoulda.io',
|
|
|
|
'source_code_uri' => 'https://github.com/thoughtbot/shoulda-matchers'
|
|
|
|
}
|
2008-09-14 11:53:40 -04:00
|
|
|
|
2019-02-25 01:19:00 -05:00
|
|
|
s.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
|
|
|
`git ls-files -z -- {docs,lib,README.md,MIT-LICENSE,shoulda-matchers.gemspec}`.
|
|
|
|
split("\x0")
|
|
|
|
end
|
2008-09-14 11:53:40 -04:00
|
|
|
s.require_paths = ["lib"]
|
|
|
|
|
2017-07-12 10:30:12 -04:00
|
|
|
s.required_ruby_version = '>= 2.2.0'
|
|
|
|
s.add_dependency('activesupport', '>= 4.2.0')
|
2008-09-14 11:53:40 -04:00
|
|
|
end
|