This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"event":"occurred", | |
"message":"[Crywolf/test] RuntimeError - oops", | |
"fault":{ | |
"id":3151009, | |
"project_id":1717, | |
"klass":"RuntimeError", | |
"component":null, | |
"action":null, | |
"environment":"development", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module CanCanController | |
extend ActiveSupport::Concern | |
included do | |
extend(ClassMethods) | |
cattr_accessor :cancan_includes | |
self.cancan_includes = [] | |
end | |
module ClassMethods |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# config/initializers/honeybadger.rb | |
Honeybadger.configure do |config| | |
... | |
config.async do |notice| | |
WorkingBadger.perform_async(notice.to_json) | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Honeybadger.configure do |config| | |
config.api_key = 'asdf' | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |