module StillLife::ActionDispatchExtension
Public Instance Methods
delete(*, **)
click to toggle source
Calls superclass method
# File lib/still_life/action_dispatch_extension.rb, line 29 def delete(*, **) super.tap do StillLife.draw(response.body) unless response.get_header('Content-Transfer-Encoding') == 'binary' end end
get(*, **)
click to toggle source
Calls superclass method
# File lib/still_life/action_dispatch_extension.rb, line 5 def get(*, **) super.tap do StillLife.draw(response.body) unless response.get_header('Content-Transfer-Encoding') == 'binary' end end
patch(*, **)
click to toggle source
Calls superclass method
# File lib/still_life/action_dispatch_extension.rb, line 23 def patch(*, **) super.tap do StillLife.draw(response.body) unless response.get_header('Content-Transfer-Encoding') == 'binary' end end
post(*, **)
click to toggle source
Calls superclass method
# File lib/still_life/action_dispatch_extension.rb, line 11 def post(*, **) super.tap do StillLife.draw(response.body) unless response.get_header('Content-Transfer-Encoding') == 'binary' end end
put(*, **)
click to toggle source
Calls superclass method
# File lib/still_life/action_dispatch_extension.rb, line 17 def put(*, **) super.tap do StillLife.draw(response.body) unless response.get_header('Content-Transfer-Encoding') == 'binary' end end