mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
7 lines
No EOL
184 B
Ruby
7 lines
No EOL
184 B
Ruby
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 |