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