Skip to content

Commit

Permalink
Remove last vestiges of Hpricot
Browse files Browse the repository at this point in the history
--HG--
extra : amend_source : a2fb2aaecd6e8919a3e9a174d9ebb3e54fbbf41f
  • Loading branch information
undees committed Jul 28, 2014
1 parent e5b44ee commit 92fcdfd
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion Manifest.txt
Expand Up @@ -8,7 +8,6 @@ lib/rforce/method_keys.rb
lib/rforce/soap_pullable.rb
lib/rforce/soap_response.rb
lib/rforce/soap_response_expat.rb
lib/rforce/soap_response_hpricot.rb
lib/rforce/soap_response_nokogiri.rb
lib/rforce/soap_response_rexml.rb
lib/rforce/version.rb
Expand Down
1 change: 0 additions & 1 deletion Rakefile
Expand Up @@ -17,7 +17,6 @@ Hoe.spec 'rforce' do

self.extra_dev_deps << ['rspec', '~> 2.8']
self.extra_dev_deps << ['hoe-gemspec2', '~> 1.1']
self.extra_dev_deps << ['hpricot', '~> 0.8']
self.extra_dev_deps << ['nokogiri', '~> 1.5']
self.extra_dev_deps << ['xmlparser', '~> 0.7'] unless is_jruby

Expand Down
2 changes: 0 additions & 2 deletions lib/rforce/soap_response.rb
@@ -1,5 +1,4 @@
begin; require 'rforce/soap_response_nokogiri'; rescue LoadError; end
begin; require 'rforce/soap_response_hpricot'; rescue LoadError; end
begin; require 'rforce/soap_response_expat'; rescue LoadError; end
require 'rforce/soap_response_rexml'

Expand All @@ -9,6 +8,5 @@ module RForce
SoapResponse =
(RForce::const_get(:SoapResponseExpat) rescue nil) ||
(RForce::const_get(:SoapResponseNokogiri) rescue nil) ||
(RForce::const_get(:SoapResponseHpricot) rescue nil) ||
SoapResponseRexml
end
1 change: 0 additions & 1 deletion tasks/timing.rake
Expand Up @@ -7,7 +7,6 @@ task :timing do

[:SoapResponseRexml,
:SoapResponseExpat,
:SoapResponseHpricot,
:SoapResponseNokogiri].each do |name|
begin
klass = RForce.const_get name
Expand Down

0 comments on commit 92fcdfd

Please sign in to comment.