forked from Narnach/hoptoad_notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
25 lines (17 loc) · 864 Bytes
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
=== Configuration
You should have something like this in config/initializers/hoptoad.rb.
HoptoadNotifier.configure do |config|
config.api_key = '1234567890abcdef'
end
(Please note that this configuration should be in a global configuration, and
is *not* environment-specific. Hoptoad is smart enough to know what errors are
caused by what environments, so your staging errors don't get mixed in with
your production errors.)
You can test that Hoptoad is working in your production environment by using
this rake task (from RAILS_ROOT):
rake hoptoad:test
If everything is configured properly, that task will send a notice to Hoptoad
which will be visible immediately.
NOTE FOR RAILS 1.2.* USERS:
You will need to copy the hoptoad_notifier_tasks.rake file into your
RAILS_ROOT/lib/tasks directory in order for the rake hoptoad:test task to work.