Andrew Wong wrote: > I had something like the following in my spec. While not great code design, it does successfully crash Ruby. > ... I can reproduce this if I run `rspec your_source.rb`, but not with `ruby /path/to/rspec your_source...cesario (Franck Verrot)
Athar Hussain wrote: > I have newly installed ruby and rails in my new MAC 10.10 > ... Hi Athar, For some reason you have a setup that is using RVM on 2.2.1 and rbenv on 2.2.2. You might want to drop one of them and reinstall your...cesario (Franck Verrot)
The current implementation only tries to check if the beginning of the string isn't coming after its end (I'm not even really sure if that's possible actually, is there case where RSTRING_LEN returns a negative number?). In any case, ...cesario (Franck Verrot)
Nobuyoshi Nakada wrote: > Franck Verrot wrote: > ... My automatic translator tricked me :-) > > Once running, it seems that loading from a FIFO isn't supported (it's expecting a regular file). Here's a patch for making `load` work w...cesario (Franck Verrot)
Marc-Andre Lafortune wrote: > Franck Verrot wrote: > ... Sorry I haven't formulated this right :-) I was only wondering if including `Enumerable` in `Symbol` could lead some of us to rely on methods (like `map` as you said) that weren'...cesario (Franck Verrot)
Diamond Star wrote: > Unable to find gmtime64_s_ in msvcrt.dll library" If you've used the RubyInstaller, this thread might provide an answer: https://github.com/oneclick/rubyinstaller/issues/271 TL;DR Windows XP isn't supported a...cesario (Franck Verrot)
Revision #50887 (https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/50887) avoided `load` from blocking the VM when accessing a FIFO file, but loading from a FIFO doesn't work (raises `LoadError`). This patch makes it...cesario (Franck Verrot)
Akira Tanaka wrote: > fifo を load しようとすると、プロセス全体がブロックします。 I can't reproduce the same errors without correcting the typo (or I'm getting a `NameError: undefined local variable or method ```pi' for main:Object` in the threads). Once...cesario (Franck Verrot)
Lourens Naudé wrote: > Please find attached the changes as per Marc-Andre's suggestions. Exposes `Symbol.each` and extends with `Enumerable` Hi Lourens, I'm not sure to fully understand why we make `Symbol` extend `Enumerable` rat...cesario (Franck Verrot)