Skip to content

Instantly share code, notes, and snippets.

@mostlyobvious
Created March 26, 2012 12:57
Show Gist options
  • Save mostlyobvious/2204876 to your computer and use it in GitHub Desktop.
Save mostlyobvious/2204876 to your computer and use it in GitHub Desktop.
# mongoid and duck typing
def logger=(logger)
case logger
when Logger then @logger = logger
when false, nil then @logger = nil
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment