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",
|
|
|
|
"Matt Jankowski", "Stafford Brunk"]
|
|
|
|
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"]
|
|
|
|
|
2013-04-19 12:55:58 -04:00
|
|
|
s.required_ruby_version = '>= 1.9.2'
|
2012-04-09 20:46:18 -04:00
|
|
|
s.add_dependency('activesupport', '>= 3.0.0')
|
2008-09-14 11:53:40 -04:00
|
|
|
end
|