From 34a7b50fb278fc37c937f2fe170b86332eb054c5 Mon Sep 17 00:00:00 2001 From: Christoph Helma Date: Thu, 22 Jul 2010 17:12:51 +0200 Subject: CONFIG reverted to @@config --- lib/overwrite.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lib/overwrite.rb (limited to 'lib/overwrite.rb') diff --git a/lib/overwrite.rb b/lib/overwrite.rb new file mode 100644 index 0000000..1d0161b --- /dev/null +++ b/lib/overwrite.rb @@ -0,0 +1,14 @@ +# class overwrites aka monkey patches +# hack: store sinatra in global var to make url_for and halt methods accessible +before{ $sinatra = self unless $sinatra } + +class Sinatra::Base + # overwriting halt to log halts (!= 202) + def halt(*response) + LOGGER.error "halt "+response.first.to_s+" "+(response.size>1 ? response[1].to_s : "") if response and response.first and response.first >= 300 + # orig sinatra code: + response = response.first if response.length == 1 + throw :halt, response + end +end + -- cgit v1.2.3