- Notifications
You must be signed in to change notification settings - Fork6
A gem for Rails to automatically search Google for exceptions raised in your Rails applications
License
NotificationsYou must be signed in to change notification settings
excid3/stack_rescue
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A gem for Rails to automatically search Google for exceptions raised in your Rails applications.
After installing, you should see output like this in your Rails logs. This doesn't interfere withbetter_errors either!
Add this line to your application's Gemfile:
gem 'stack_rescue', group: :development
And then execute:
$ bundle
Or install it yourself as:
$ gem install stack_rescue
By default, search results are limited to 5 results and only from stackoverflow.com.
If you need to modify either of these, add the following to yourconfig/environments/development.rb
file:
# Get results from any websiteconfig.stack_rescue.site=nil# Get results from only stackoverflow.com (default)# config.stack_rescue.site = "stackoverflow.com"# Change the number of results returned# config.stack_rescue.number_of_results = 3
- Fork it (https://github.com/excid3/stack_rescue/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- Use
number_of_results
option to request more pages of results atquery time - All around usability improvements
- It would be nice to have these results print after the stacktrace
About
A gem for Rails to automatically search Google for exceptions raised in your Rails applications
Topics
Resources
License
Stars
Watchers
Forks
Packages0
No packages published