Skip to content

Commit

Permalink
Use activesupport gem rather than active_support
Browse files Browse the repository at this point in the history
  • Loading branch information
mattfawcett committed Dec 13, 2011
1 parent b2aa440 commit e88d601
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -10,7 +10,7 @@ begin
gem.email = "tcrawley@gmail.com" gem.email = "tcrawley@gmail.com"
gem.homepage = "http://github.com/tobias/zendesk_remote_auth" gem.homepage = "http://github.com/tobias/zendesk_remote_auth"
gem.authors = ["Tobias Crawley"] gem.authors = ["Tobias Crawley"]
gem.add_dependency "active_support", ">= 3.0.0" gem.add_dependency "activesupport", ">= 3.0.0"
gem.add_development_dependency "rspec", ">= 2.6.0" gem.add_development_dependency "rspec", ">= 2.6.0"
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end end
Expand Down
6 changes: 3 additions & 3 deletions zendesk_remote_auth.gemspec
Expand Up @@ -34,14 +34,14 @@ Gem::Specification.new do |s|
s.specification_version = 3 s.specification_version = 3


if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<active_support>, [">= 3.0.0"]) s.add_runtime_dependency(%q<activesupport>, [">= 3.0.0"])
s.add_development_dependency(%q<rspec>, [">= 2.6.0"]) s.add_development_dependency(%q<rspec>, [">= 2.6.0"])
else else
s.add_dependency(%q<active_support>, [">= 3.0.0"]) s.add_dependency(%q<activesupport>, [">= 3.0.0"])
s.add_dependency(%q<rspec>, [">= 2.6.0"]) s.add_dependency(%q<rspec>, [">= 2.6.0"])
end end
else else
s.add_dependency(%q<active_support>, [">= 3.0.0"]) s.add_dependency(%q<activesupport>, [">= 3.0.0"])
s.add_dependency(%q<rspec>, [">= 2.6.0"]) s.add_dependency(%q<rspec>, [">= 2.6.0"])
end end
end end
Expand Down

0 comments on commit e88d601

Please sign in to comment.