method
default_options
v3.0.9 -
Show latest stable
- Class:
Rails::Server
default_options()public
No documentation available.
# File railties/lib/rails/commands/server.rb, line 83
def default_options
super.merge({
:Port => 3000,
:environment => (ENV['RAILS_ENV'] || "development").dup,
:daemonize => false,
:debugger => false,
:pid => File.expand_path("tmp/pids/server.pid"),
:config => File.expand_path("config.ru")
})
end