forked from thoughtbot/shoulda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshoulda.gemspec
37 lines (32 loc) · 1.42 KB
/
shoulda.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
$LOAD_PATH << File.join(File.dirname(__FILE__), 'lib')
require 'shoulda/version'
Gem::Specification.new do |s|
s.name = %q{shoulda}
s.version = Shoulda::VERSION
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"]
s.date = Time.now.strftime("%Y-%m-%d")
s.email = %q{support@thoughtbot.com}
s.extra_rdoc_files = ["README.md", "CONTRIBUTION_GUIDELINES.rdoc"]
s.files = Dir["[A-Z]*", "{lib}/**/*"]
s.homepage = %q{http://thoughtbot.com/community/}
s.rdoc_options = ["--line-numbers", "--main", "README.md"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{shoulda}
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("rails", "3.0.3")
s.add_development_dependency("sqlite3-ruby", "~> 1.3.2")
s.add_development_dependency("rspec-rails", "~> 2.3.1")
s.add_development_dependency("ruby-debug", "~> 0.10.4")
s.add_development_dependency("cucumber", "~> 0.10.0")
s.add_development_dependency("aruba", "~> 0.2.7")
s.add_runtime_dependency("shoulda-context", "~> 1.0.0.beta1")
s.add_runtime_dependency("shoulda-matchers", "~> 1.0.0.beta1")
if s.respond_to? :specification_version then
s.specification_version = 3
else
end
end