Skip to content

Instantly share code, notes, and snippets.

require 'rake'
require 'airbrake/rake_handler'
Airbrake.configure do |config|
# ...
config.rescue_rake_exceptions = true
ENV.keys.each do |filtered_key|
config.rake_environment_filters << filtered_key
end
end
@stefanroex
stefanroex / keybase.md
Created August 5, 2015 13:39
Keybase prove

Keybase proof

I hereby claim:

  • I am stefanroex on github.
  • I am stefanroex (https://keybase.io/stefanroex) on keybase.
  • I have a public key whose fingerprint is E4B9 08DB C4C6 0D29 AB76 CAB6 4CE4 D284 6636 1261

To claim this, I am signing this object:

defmodule Cocos do
def test_amount x do
if check_division x, 7 do
x
else
test_amount x + 1
end
end
defp check_division _, 0 do