Class: DwollaV2::DeepSuperHasherizeResponseBody
- Inherits:
-
Object
- Object
- DwollaV2::DeepSuperHasherizeResponseBody
- Defined in:
- lib/dwolla_v2/middleware/deep_super_hasherize_response_body.rb
Instance Method Summary collapse
- #call(request_env) ⇒ Object
-
#initialize(app) ⇒ DeepSuperHasherizeResponseBody
constructor
A new instance of DeepSuperHasherizeResponseBody.
Constructor Details
#initialize(app) ⇒ DeepSuperHasherizeResponseBody
Returns a new instance of DeepSuperHasherizeResponseBody.
3 4 5 |
# File 'lib/dwolla_v2/middleware/deep_super_hasherize_response_body.rb', line 3 def initialize app @app = app end |
Instance Method Details
#call(request_env) ⇒ Object
7 8 9 10 11 |
# File 'lib/dwolla_v2/middleware/deep_super_hasherize_response_body.rb', line 7 def call request_env @app.call(request_env).on_complete do |response_env| response_env.body = Util.deep_super_hasherize(response_env.body) end end |