
|
If you were logged in you would be able to see more operations.
|
|
|
1. Time.methods doesn't return "now" method:
Time.methods.grep('now') == > []
2. In MRI: Time.methods(false) => ["at", "utc", "_load", "today", "mktime", "now", "local", "times", "gm"]
But JRuby's implementation of "methods" with false argument always returns [].
|
|
Description
|
1. Time.methods doesn't return "now" method:
Time.methods.grep('now') == > []
2. In MRI: Time.methods(false) => ["at", "utc", "_load", "today", "mktime", "now", "local", "times", "gm"]
But JRuby's implementation of "methods" with false argument always returns []. |
Show » |
|