Skip to content

Instantly share code, notes, and snippets.

@Crisfole
Created October 22, 2015 23:25
Show Gist options
  • Save Crisfole/32961626de553e45f091 to your computer and use it in GitHub Desktop.
Save Crisfole/32961626de553e45f091 to your computer and use it in GitHub Desktop.
require 'rollbar'
Rollbar.configure do |config|
config.access_token = "MY ACCESS TOKEN"
config.enabled = should_i_send_to_rollbar?
end
begin
run_my_script ARGV
rescue e
Rollbar.error e
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment