]> git.openstreetmap.org Git - rails.git/commitdiff
Drop monkey patches that are no longer required
authorTom Hughes <tom@compton.nu>
Thu, 1 Jun 2017 21:33:06 +0000 (22:33 +0100)
committerTom Hughes <tom@compton.nu>
Thu, 1 Jun 2017 21:42:02 +0000 (22:42 +0100)
config/initializers/action_dispatch.rb
config/initializers/omniauth.rb

index af446fc1de52112298cff00a787f64e4a1412ee7..687ce3fb11f26f0f3c046164dbc3b40a1873a6ef 100644 (file)
@@ -1,17 +1,2 @@
 # Stop rails from automatically parsing XML in request bodies
 Rails.configuration.middleware.delete ActionDispatch::ParamsParser
-
-# https://github.com/rails/rails/issues/20710
-module ActionDispatch
-  module Assertions
-    def html_document_with_rss
-      @html_document ||= if @response.content_type == Mime::RSS
-                           Nokogiri::XML::Document.parse(@response.body)
-                         else
-                           html_document_without_rss
-                         end
-    end
-
-    alias_method_chain :html_document, :rss
-  end
-end
index d117707bef68ca7363c92c030271e1f69d608d5b..180469bfce74309b2f94b2aebeb8a0e41fac947e 100644 (file)
@@ -38,16 +38,3 @@ Rails.application.config.middleware.use OmniAuth::Builder do
   provider :github, GITHUB_AUTH_ID, GITHUB_AUTH_SECRET, github_options if defined?(GITHUB_AUTH_ID)
   provider :mediawiki, WIKIPEDIA_AUTH_ID, WIKIPEDIA_AUTH_SECRET, wikipedia_options if defined?(WIKIPEDIA_AUTH_ID)
 end
-
-# Pending fix for: https://github.com/intridea/omniauth/pull/795
-module OmniAuth
-  module Strategy
-    def mock_callback_call_with_origin
-      @env["omniauth.origin"] = session["omniauth.origin"]
-
-      mock_callback_call_without_origin
-    end
-
-    alias_method_chain :mock_callback_call, :origin
-  end
-end