Skip to content

Instantly share code, notes, and snippets.

@cadwallion
Created November 2, 2012 17:56
Show Gist options
  • Save cadwallion/4003172 to your computer and use it in GitHub Desktop.
Save cadwallion/4003172 to your computer and use it in GitHub Desktop.
Terrible Use of Begin/Rescue for Platform Initializers
begin
platform_detection
rescue OSXFoundError
osx_specific_initializer
rescue WindowsFoundError
windows_specific_initializer
rescue UnixFoundError
unix_specific_initializer
ensure
universal_initializer
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment