forked from seanhussey/woulda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwoulda.gemspec
28 lines (25 loc) · 2.19 KB
/
woulda.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
Gem::Specification.new do |s|
s.name = %q{woulda}
s.version = "0.1.5"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Sean Hussey", "Josh Nichols"]
s.date = %q{2008-11-01}
s.email = ["[email protected]", "[email protected]"]
s.files = ["LICENSE", "Rakefile", "README.textile", "shoulda_macros/woulda_macros.rb", "lib/woulda", "lib/woulda/acts_as_ferret", "lib/woulda/acts_as_ferret/macros.rb", "lib/woulda/acts_as_ferret.rb", "lib/woulda/acts_as_list", "lib/woulda/acts_as_list/macros.rb", "lib/woulda/acts_as_list.rb", "lib/woulda/acts_as_paranoid", "lib/woulda/acts_as_paranoid/macros.rb", "lib/woulda/acts_as_paranoid.rb", "lib/woulda/acts_as_solr", "lib/woulda/acts_as_solr/macros.rb", "lib/woulda/acts_as_solr.rb", "lib/woulda/acts_as_state_machine", "lib/woulda/acts_as_state_machine/macros.rb", "lib/woulda/acts_as_state_machine.rb", "lib/woulda/acts_as_taggable_on_steroids", "lib/woulda/acts_as_taggable_on_steroids/macros.rb", "lib/woulda/acts_as_taggable_on_steroids.rb", "lib/woulda/attachment_fu", "lib/woulda/attachment_fu/macros.rb", "lib/woulda/attachment_fu.rb", "lib/woulda/enumerations_mixin", "lib/woulda/enumerations_mixin/macros.rb", "lib/woulda/enumerations_mixin.rb", "lib/woulda/paperclip", "lib/woulda/paperclip/macros.rb", "lib/woulda/paperclip.rb", "lib/woulda/should_raise", "lib/woulda/should_raise/macros.rb", "lib/woulda/should_raise.rb", "lib/woulda/will_paginate", "lib/woulda/will_paginate/macros.rb", "lib/woulda/will_paginate.rb", "lib/woulda.rb"]
s.homepage = %q{http://github.com/seanhussey/woulda}
s.require_paths = ["lib"]
s.rubyforge_project = %q{woulda}
s.rubygems_version = %q{1.2.0}
s.summary = %q{woulda is a home for shoulda macros that don't belong in the main shoulda library}
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
if current_version >= 3 then
s.add_runtime_dependency(%q<thoughtbot-shoulda>, [">= 2.0.0"])
else
s.add_dependency(%q<thoughtbot-shoulda>, [">= 2.0.0"])
end
else
s.add_dependency(%q<thoughtbot-shoulda>, [">= 2.0.0"])
end
end