No commit activity in last 3 years
No release in over 3 years
An exception logger for Rails 2.3
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

>= 0, >= 2.3.0
>= 0, >= 2.3.4
 Project Readme

Watchtower

Setup

Install the plugin:

script/plugin install git://github.com/joshuaclayton/watchtower.git

Move the assets (requires rsync):

cd vendor && rake watchtower:sync

Set up ApplicationController

class ApplicationController < ActionController::Base include Watchtower::ApplicationControllerBase force_public_request_handling! # use this to force local development to rescue actions like a production server
  1. etc…
    end

If you want to secure the data, you might want to set up an initializer:

WatchtowerController.class_eval do before_filter :check_credentials private def check_credentials
  1. call login_required (from your auth system or whatever) unless viewing a specific exception by key
    login_required unless find_by_key?
    end
    end

Copyright © 2009 Josh Clayton, released under the MIT license