Created
July 24, 2014 16:38
-
-
Save jamespenguin/bf8c319c56ccada8309e to your computer and use it in GitHub Desktop.
This file contains 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
# totally fine | |
Sequel.|( | |
Sequel.expr(:last_sent) < Time.now - repeat_threshold, | |
Sequel.expr(:last_sent) => nil | |
), | |
# instant runtime error | |
Sequel.|( | |
Sequel.expr(:last_sent) => nil, | |
Sequel.expr(:last_sent) < Time.now - repeat_threshold | |
), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment