Can this be handled like thread exceptions? ```ruby Thread.abort_on_exception=true ``` I like this approach because it's dynamic and changes the behavior for the current runtime. ```ruby Date.japanese_era_exception=true ``` Or...rrroybbbean (RRRoy BBBean)
On Fri, 2017-11-03 at 18:34 +0000, shevegen@gmail.com wrote: > Issue #14077 has been updated by shevegen (Robert A. Heiler). > I am in agreement with the feature-suggestion. Not sure whether > it should be a constant or a method or b...rrroybbbean (RRRoy BBBean)
Maybe I don't understand this issue in sufficient detail, but...
I routinely use Thread.abort_on_exception=true when I want an exception in a worker thread to raise an error in the main thread of execution. If I don't specify t...rrroybbbean (RRRoy BBBean)
On Thu, 2017-10-26 at 17:30 +0000, kevin.deisz@gmail.com wrote: > ~~~ruby > refine NilClass, Array, Hash do > def positive_integer? > false > end > end > ~~~ > > Is this something that people would consider? I...rrroybbbean (RRRoy BBBean)
Joel on Software "Don't Let Architecture Astronauts Scare You" by Joel Spolsky http://www.joelonsoftware.com/articles/fog0000000018.html rrroybbbean (RRRoy BBBean)
The terms "truthy" and "falsey" were used by Douglas Crockford in his series of JavaScript lectures at Yahoo about 5 years ago. A value is "truthy" if treated as true by a conditional. A value is "falsey" if treated as false by...rrroybbbean (RRRoy BBBean)