Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add humanize as a dependency.
  • Loading branch information
radar committed Dec 26, 2009
1 parent 7e6e2da commit d22c23f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Rakefile
Expand Up @@ -8,6 +8,7 @@ begin
gem.homepage = "http://github.com/radar/ordinalize"
gem.authors = ["Ryan Bigg"]
gem.add_development_dependency "rspec"
gem.add_dependency "humanize"
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
Jeweler::GemcutterTasks.new
Expand Down
4 changes: 2 additions & 2 deletions ordinalize.gemspec
Expand Up @@ -42,13 +42,13 @@ Gem::Specification.new do |s|

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, [">= 0"])
s.add_development_dependency(%q<humanize>, [">= 0"])
s.add_runtime_dependency(%q<humanize>, [">= 0"])
else
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<humanize>, [">= 0"])
end
else
s.add_dependency(%q<humanize>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<humanize>, [">= 0"])
end
end

0 comments on commit d22c23f

Please sign in to comment.