Skip to content

Commit

Permalink
Forked from Sebastien repo
Browse files Browse the repository at this point in the history
  • Loading branch information
caedes committed Jul 3, 2012
0 parents commit c0594cf
Show file tree
Hide file tree
Showing 75 changed files with 7,025 additions and 0 deletions.
434 changes: 434 additions & 0 deletions CHANGELOG

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions Gemfile
@@ -0,0 +1,3 @@
source "http://rubygems.org"

gemspec
25 changes: 25 additions & 0 deletions INSTALL
@@ -0,0 +1,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.
22 changes: 22 additions & 0 deletions MIT-LICENSE
@@ -0,0 +1,22 @@
Copyright (c) 2007, Tammer Saleh, Thoughtbot, Inc.

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

0 comments on commit c0594cf

Please sign in to comment.