This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit b590dc0c4cf19381b4d921508307b7688acdc134
tree 96378184bb08237eb43f8926b1d6c51a0dff7d6b
parent c07c0fa04cf5aaa19e2598872f6f4324bc22ab5c
tree 96378184bb08237eb43f8926b1d6c51a0dff7d6b
parent c07c0fa04cf5aaa19e2598872f6f4324bc22ab5c
| name | age | message | |
|---|---|---|---|
| |
MIT-LICENSE | Thu Mar 06 12:58:16 -0800 2008 | [kch] |
| |
README | Thu Apr 24 04:13:07 -0700 2008 | [kch] |
| |
README-exception_notifier | Thu Mar 06 15:15:45 -0800 2008 | [kch] |
| |
install.rb | Wed Apr 16 16:27:39 -0700 2008 | [kch] |
| |
install/ | Tue Apr 22 14:04:04 -0700 2008 | [kch] |
| |
lib/ | Thu Jun 05 23:18:04 -0700 2008 | [kch] |
| |
views/ | Thu Apr 24 04:00:18 -0700 2008 | [kch] |
README
RailzScout
==========
The RailzScout plugin implements FogBugz's BugzScout system for Rails apps.
It works by submitting your bugs to your FogBugz installation directly via
HTTP post.
The plugin is based on the Exception Notifier plugin by Jamis Buck. Much
works the same, but email code has been replaced with code that posts to
scoutSubmit in your FogBugz installation.
Usage
=====
1. Include the ExceptionNotifiable mixin in whichever controller you want to
report errors to FogBugz. (ApplicationController for the whole app.):
class ApplicationController < ActionController::Base
include ExceptionNotifiable
…
2. If you installed the plugin via default methods, you should find a
railz_scout.rb file in your app's config/initializers/ directory.
If not, you can still run the install script manually to create
the initializer:
$ ruby vendor/plugins/railz_scout/install.rb
Open the initializer railz_scout.rb and edit the configuration options
there. The file if fully commented with detailed explanations of what each
options means.
At the very least you need to set the URL for your FogBugz installation.
Compatibility
=============
Confirmed to work with the following Rails releases:
- 1.1.6
- 1.2.6
- 2.0.2
- edge @2008-04-24
Customizations
==============
The rendering code from Exception Notifier has barely been touched. Therefore,
the same customizations that apply to the original plugin should apply here.
For more info, see their original README, included with this copy as
README-exception_notifier
---
Copyright (c) 2008 Caio Chassot, released under the MIT license
with parts from Exception Notifier plugin, Copyright (c) 2005 Jamis Buck, released under the MIT license




