aboutsummaryrefslogblamecommitdiffstats
path: root/railties/test/fixtures/lib/tweak_builder.rb
blob: eed20ecc9b88a7818db27969967b9a148b61230e (plain) (tree)
1
2
3
4
5
6
7






                                                                            
class AppBuilder < Rails::AppBuilder
  def configru
    create_file "config.ru", <<-R.strip
run proc { |env| [200, { "Content-Type" => "text/html" }, ["Hello World"]] }
    R
  end
end