aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/fixtures/metal/multiplemetals/app/metal/metal_b.rb
blob: a8bbf3fd607a1185e1729517696b40f0ceeb51e9 (plain) (blame)
1
2
3
4
5
class MetalB < Rails::Rack::Metal
  def self.call(env)
    [200, { "Content-Type" => "text/html"}, ["Hi"]]
  end
end