thoughtbot--shoulda-matchers/shoulda-matchers.gemspec

33 lines
1.4 KiB
Ruby
Raw Normal View History

$LOAD_PATH << File.join(File.dirname(__FILE__), 'lib')
2010-12-15 17:34:19 -05:00
require 'shoulda/matchers/version'
Gem::Specification.new do |s|
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"
s.license = "MIT"
s.description = "Making tests easy on the fingers and eyes"
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) }
s.require_paths = ["lib"]
s.add_dependency('activesupport', '>= 3.0.0')
s.add_development_dependency('appraisal', '~> 0.4')
2012-04-10 00:47:04 -04:00
s.add_development_dependency('aruba')
s.add_development_dependency('bourne', '~> 1.3')
2012-09-21 15:19:41 -04:00
s.add_development_dependency('bundler', '~> 1.1')
2012-12-03 11:27:10 -05:00
s.add_development_dependency('cucumber', '~> 1.1')
2012-03-19 04:36:28 -04:00
s.add_development_dependency('rails', '~> 3.0')
2012-12-03 11:26:30 -05:00
s.add_development_dependency('rake', '>= 0.9.2')
s.add_development_dependency('rspec-rails', '~> 2.13')
2012-12-13 12:00:10 -05:00
s.add_development_dependency('strong_parameters')
end