aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/fixtures/lib/simple_builder.rb
blob: 47dcdc0d96af8cc4959d090875f0f3b65b123a77 (plain) (blame)
1
2
3
4
5
6
7
class AppBuilder
  def configru
    create_file "config.ru", <<-R.strip
run proc { |env| [200, { "Content-Type" => "text/html" }, ["Hello World"]] }
    R
  end
end