I am using Ruby on Rails 3 and I am trying to use the Rack. Since I am not expert in this matter, I would like to know some thing about that.
The following code is from here.
require 'rack'
class Rack::ForceDomain
def initialize(app, domain)
@app = app
@domain = domain
end
def call(env)
request = Rack::Request.new(env)
if @domain and request.host != @domain
fake_request = Rack::Request.new(env.merge("HTTP_HOST" => @domain))
Rack::Response.new([], 301, "Location" => fake_request.url).finish
else
@app.call(env)
end
end
end
What is the variable
appand from where its values are retrieved?From where and how to pass the
domainvariable in theinitializemethod?