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"
|
|
|
|
s.homepage = "http://thoughtbot.com/community/"
|
|
|
|
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"
|
2008-09-14 11:53:40 -04:00
|
|
|
|
2011-11-11 20:13:03 -05:00
|
|
|
s.files = `git ls-files`.split("\n")
|
|
|
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
|
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
2008-09-14 11:53:40 -04:00
|
|
|
s.require_paths = ["lib"]
|
|
|
|
|
2014-10-22 00:35:12 -04:00
|
|
|
s.required_ruby_version = '>= 1.9.3'
|
|
|
|
s.add_dependency('activesupport', '>= 4.0.0')
|
2008-09-14 11:53:40 -04:00
|
|
|
end
|