aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/rails/metal/templates/metal.rb
blob: e94982b69ac0de277f4b6d883266e5e92f134988 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# Allow the metal piece to run in isolation
require(File.dirname(__FILE__) + "/../../config/environment") unless defined?(Rails)

class <%= class_name %>
  def self.call(env)
    if env["PATH_INFO"] =~ /^\/<%= file_name %>/
      [200, {"Content-Type" => "text/html"}, ["Hello, World!"]]
    else
      [404, {"Content-Type" => "text/html"}, ["Not Found"]]
    end
  end
end