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