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

33 lines
1.3 KiB
Ruby
Raw Normal View History

$LOAD_PATH << File.join(File.dirname(__FILE__), 'lib')
2010-12-15 22:34:19 +00:00
require 'shoulda/matchers/version'
Gem::Specification.new do |s|
2010-12-15 22:34:19 +00:00
s.name = %q{shoulda-matchers}
s.version = Shoulda::Matchers::VERSION.dup
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Tammer Saleh", "Joe Ferris", "Ryan McGeary", "Dan Croak",
"Matt Jankowski", "Stafford Brunk"]
s.date = Time.now.strftime("%Y-%m-%d")
s.email = %q{support@thoughtbot.com}
s.extra_rdoc_files = ["README.rdoc", "CONTRIBUTION_GUIDELINES.rdoc"]
s.files = Dir["[A-Z]*", "{bin,lib,rails,test}/**/*"]
s.homepage = %q{http://thoughtbot.com/community/}
2009-03-03 22:05:57 +00:00
s.rdoc_options = ["--line-numbers", "--main", "README.rdoc"]
s.require_paths = ["lib"]
2010-01-16 21:08:40 +00:00
s.rubygems_version = %q{1.3.5}
s.summary = %q{Making tests easy on the fingers and eyes}
s.description = %q{Making tests easy on the fingers and eyes}
s.add_development_dependency("mocha", "~> 0.9.10")
s.add_development_dependency("rspec-rails", "~> 2.6.1.beta1")
s.add_development_dependency("cucumber", "~> 0.10.0")
s.add_development_dependency("appraisal", "~> 0.3.4")
s.add_development_dependency("aruba")
if s.respond_to? :specification_version then
2009-07-15 17:44:53 +00:00
s.specification_version = 3
else
end
end