All Projects → excid3 → Stack_rescue

excid3 / Stack_rescue

Licence: mit
A gem for Rails to automatically search Google for exceptions raised in your Rails applications

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Stack rescue

greensteps
This is the web app for Green Steps, a community focused initiative that incentivizes litter cleanup in the Chattanooga area.
Stars: ✭ 13 (-92.26%)
Mutual labels:  rails-application
Real World Rails
Real World Rails applications and their open source codebases for developers to learn from
Stars: ✭ 982 (+484.52%)
Mutual labels:  rails-application
Railschat
Real-time Rails-based Webchat for Instant Messaging (实时Web聊天室)
Stars: ✭ 81 (-51.79%)
Mutual labels:  rails-application
Receipts
Easy receipts and invoices for your Rails applications
Stars: ✭ 259 (+54.17%)
Mutual labels:  rails-application
Open Build Service
Build and distribute Linux packages from sources in an automatic, consistent and reproducible way #obs
Stars: ✭ 599 (+256.55%)
Mutual labels:  rails-application
Execution time
How fast is your code? See it directly in Rails console.
Stars: ✭ 67 (-60.12%)
Mutual labels:  rails-application
docker
A simple guide to get you started on docker. (Might be outdated but it should still give you a basic overview.)
Stars: ✭ 21 (-87.5%)
Mutual labels:  rails-application
Spotlight
Spotlight enables librarians, curators, and others who are responsible for digital collections to create attractive, feature-rich websites that highlight these collections.
Stars: ✭ 137 (-18.45%)
Mutual labels:  rails-application
Osem
Open Source Event Manager. An event management tool tailored to Free and Open Source Software conferences.
Stars: ✭ 649 (+286.31%)
Mutual labels:  rails-application
Vglist
A video game library tracking web app built in Rails and powered by Wikidata.
Stars: ✭ 78 (-53.57%)
Mutual labels:  rails-application
Rubyapi
Ruby API makes it easy and fast to search or browse the Ruby language API docs
Stars: ✭ 296 (+76.19%)
Mutual labels:  rails-application
Annict
The platform for anime addicts built with Rails and Stimulus.js.
Stars: ✭ 542 (+222.62%)
Mutual labels:  rails-application
Clipboard Rails
clipboard.js javascript library integration for your Rails 4 and Rails 5 applications
Stars: ✭ 72 (-57.14%)
Mutual labels:  rails-application
powerstation
A Tool for Detecting Performance Bugs in Rails Applications
Stars: ✭ 57 (-66.07%)
Mutual labels:  rails-application
Openstreetmap Website
The Rails application that powers OpenStreetMap
Stars: ✭ 1,259 (+649.4%)
Mutual labels:  rails-application
igor
Course homework submission site
Stars: ✭ 13 (-92.26%)
Mutual labels:  rails-application
Cbrain
CBRAIN is a flexible Ruby on Rails framework for accessing and processing of large data on high-performance computing infrastructures.
Stars: ✭ 51 (-69.64%)
Mutual labels:  rails-application
Expertiza
Expertiza is a web application through which students can submit and peer-review learning objects (articles, code, web sites, etc). The Expertiza project is supported by the National Science Foundation.
Stars: ✭ 160 (-4.76%)
Mutual labels:  rails-application
Websiteone
A website for Agile Ventures
Stars: ✭ 132 (-21.43%)
Mutual labels:  rails-application
Grape Doorkeeper
Get to API building quickly
Stars: ✭ 77 (-54.17%)
Mutual labels:  rails-application

StackRescue

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 with better_errors either!

stack_rescue

Installation

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

Usage

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 your config/environments/development.rb file:

  # Get results from any website
  config.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

Contributing

  1. Fork it ( https://github.com/excid3/stack_rescue/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

TODO

  • Use number_of_results option to request more pages of results at query time
  • All around usability improvements
  • It would be nice to have these results print after the stacktrace
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].