Handle Rack responses from Sprockets
This commit is contained in:
parent
0dc5843b57
commit
fafeea0857
|
@ -202,7 +202,7 @@ module Middleman
|
||||||
# Useful for extensions implemented as Rack middleware.
|
# Useful for extensions implemented as Rack middleware.
|
||||||
# @param response The response from #call
|
# @param response The response from #call
|
||||||
# @return [String] The whole response as a string.
|
# @return [String] The whole response as a string.
|
||||||
Contract IsA['Rack::BodyProxy'] => String
|
Contract Or[ArrayOf[String], IsA['Rack::BodyProxy']] => String
|
||||||
def self.extract_response_text(response)
|
def self.extract_response_text(response)
|
||||||
# The rack spec states all response bodies must respond to each
|
# The rack spec states all response bodies must respond to each
|
||||||
result = ''
|
result = ''
|
||||||
|
|
Loading…
Reference in a new issue