We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 138e2ea commit 7643e5cCopy full SHA for 7643e5c
lib/rack/reverse_proxy.rb
@@ -13,7 +13,7 @@ def initialize(app = nil, &b)
13
@app = app || lambda {|env| [404, [], []] }
14
@matchers = []
15
@global_options = {:preserve_host => true, :x_forwarded_host => true, :matching => :all, :replace_response_host => false}
16
- instance_eval &b if block_given?
+ instance_eval(&b) if block_given?
17
end
18
19
def call(env)
0 commit comments