Created
June 18, 2012 21:35
-
-
Save gary-rafferty/2950873 to your computer and use it in GitHub Desktop.
ld
This file contains hidden or 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
require 'exceptional' | |
require 'yaml' | |
Exceptional::Config.load("config/exceptional.yml") | |
@hash = {} | |
1.upto(50000) do |i| | |
@hash[i] = "email#{i}@domain.com" | |
end | |
Exceptional.rescue_and_reraise do | |
raise RuntimeError, @hash | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment