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