From 65d731429619f5060c0d879966c008be29ffb1d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristj=C3=A1n=20P=C3=A9tursson?= Date: Fri, 6 Apr 2012 11:23:08 -0700 Subject: [PATCH] Use STDOUT's shorter alias After all, it's not called `TheSmallestReadableRailsApp` --- config.ru | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.ru b/config.ru index 2a46068..5dc8503 100644 --- a/config.ru +++ b/config.ru @@ -8,7 +8,7 @@ class TheSmallestRailsApp < Rails::Application routes.append { root to: 'hello#world' } config.secret_token = 'a'*30 - config.logger = Logger.new STDOUT + config.logger = Logger.new $> end class HelloController < ActionController::Base