Monkey patch oauth-plugin to avoid using deprecated methods
This commit is contained in:
parent
3893fd72a9
commit
2d80cd12ff
1 changed files with 39 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
|||
require "oauth/controllers/provider_controller"
|
||||
require "oauth/rack/oauth_filter"
|
||||
|
||||
Rails.configuration.middleware.use OAuth::Rack::OAuthFilter
|
||||
|
@ -11,3 +12,41 @@ module OAuth
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
module OpenStreetMap
|
||||
module ProviderController
|
||||
def self.prepended(mod)
|
||||
mod.singleton_class.prepend(OpenStreetMap::ProviderController::ClassMethods)
|
||||
end
|
||||
|
||||
def render(options = {})
|
||||
text = options.delete(:text)
|
||||
if text
|
||||
super options.merge(:plain => text)
|
||||
elsif options.delete(:nothing)
|
||||
status = options.delete(:status) || :ok
|
||||
head status, options
|
||||
else
|
||||
super options
|
||||
end
|
||||
end
|
||||
|
||||
module ClassMethods
|
||||
def included(controller)
|
||||
controller.class_eval do
|
||||
def self.before_filter(*names, &blk)
|
||||
before_action(*names, &blk)
|
||||
end
|
||||
|
||||
def self.skip_before_filter(*names, &blk)
|
||||
skip_before_action(*names, &blk)
|
||||
end
|
||||
end
|
||||
|
||||
super controller
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
OAuth::Controllers::ProviderController.prepend(OpenStreetMap::ProviderController)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue