Skip to content

Commit

Permalink
Stop using has_rdoc= when rubygems version is 1.7.0 or greater, since…
Browse files Browse the repository at this point in the history
… it's deprecated
  • Loading branch information
ssoroka committed Apr 16, 2011
1 parent a3bcb37 commit c67e02b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
= ActiveMerchant CHANGELOG

* Stop using has_rdoc= when rubygems version is 1.7.0 or greater, since it's deprecated [ssoroka]
* Braintree/Transax: Add tax field [wisq]

== Version 1.12.1 (Mar 21, 2011)
Expand Down
2 changes: 1 addition & 1 deletion activemerchant.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |s|
s.files = Dir['CHANGELOG', 'README.rdoc', 'MIT-LICENSE', 'CONTRIBUTORS', 'gem-public_cert.pem', 'lib/**/*', 'vendor/**/*']
s.require_path = 'lib'

s.has_rdoc = true
s.has_rdoc = true if Gem::VERSION < '1.7.0'

s.add_dependency('activesupport', '>= 2.3.8')
s.add_dependency('builder', '>= 2.0.0')
Expand Down

0 comments on commit c67e02b

Please sign in to comment.