Skip to content

Instantly share code, notes, and snippets.

@joshuap
joshuap / payload.json
Created January 20, 2014 17:14
Honeybadger WebHook payload: :occurred event
{
"event":"occurred",
"message":"[Crywolf/test] RuntimeError - oops",
"fault":{
"id":3151009,
"project_id":1717,
"klass":"RuntimeError",
"component":null,
"action":null,
"environment":"development",
@joshuap
joshuap / en.yml
Created January 20, 2014 16:59
Honeybadger Feedback I18n keys
# config/locales/en.yml
en:
honeybadger:
feedback:
heading: "Care to help us fix this?"
explanation: "Any information you can provide will help our technical team get to the bottom of this issue."
submit: "Send"
thanks: "Thanks for the feedback!"
labels:
name: "Your name"
@joshuap
joshuap / 500.html
Created January 15, 2014 17:18
Honeybadger feedback: Rails 4 default template
<!DOCTYPE html>
<html>
<head>
<title>We're sorry, but something went wrong (500)</title>
<style>
body {
background-color: #EFEFEF;
color: #2E2F30;
text-align: center;
font-family: arial, sans-serif;
# Notifies Honeybadger locally using curl
after :finishing, :notify_honeybadger do
on roles(:app) do
require 'json'
require 'honeybadger'
begin
require './config/initializers/honeybadger'
rescue LoadError
error 'Honeybadger initializer not found'
@joshuap
joshuap / simple_form_bootstrap.rb
Created October 31, 2013 21:05
Quick simple_form + Bootstrap3 hack
# config/initializers/simple_form_bootstrap.rb
# https://github.com/plataformatec/simple_form/issues/857
# https://gist.github.com/adamico/6510093
class CollectionCheckBoxesInput < SimpleForm::Inputs::CollectionCheckBoxesInput
def item_wrapper_class
"checkbox-inline"
end
end
@joshuap
joshuap / cancan_controller.rb
Created June 18, 2013 18:38
Define associations for eager loading when authorizing CanCan resources
module CanCanController
extend ActiveSupport::Concern
included do
extend(ClassMethods)
cattr_accessor :cancan_includes
self.cancan_includes = []
end
module ClassMethods
@joshuap
joshuap / active_record.rb
Created June 7, 2013 07:14
Adding #with to ActiveRecord 3.2.13
# config/initializers/active_record.rb
module ActiveRecordRelationExt
def self.included(base)
base.send(:attr_accessor, :with_values)
base::MULTI_VALUE_METHODS << :with
end
def with(*subqueries)
return self if subqueries.blank?
@joshuap
joshuap / honeybadger.rb
Created December 28, 2012 18:28
Using Honeybadger with Sidekiq
# config/initializers/honeybadger.rb
Honeybadger.configure do |config|
...
config.async do |notice|
WorkingBadger.perform_async(notice.to_json)
end
end
@joshuap
joshuap / honeybadger.rb
Created October 7, 2012 01:46
Standard Honeybadger initializer
Honeybadger.configure do |config|
config.api_key = 'asdf'
end
@joshuap
joshuap / deploy.rb
Created October 7, 2012 01:19
Honeybadger deployment notification capistrano task using local machine and curl
namespace :deploy do
desc "Notifies Honeybadger locally using curl"
task :notify_honeybadger do
require 'json'
require 'honeybadger'
begin
require './config/initializers/honeybadger'
rescue LoadError
logger.info 'Honeybadger initializer not found'