simeonwillbanks (Simeon Willbanks)
- Login: simeonwillbanks
- Email: sfw@simeonfosterwillbanks.com
- Registered on: 11/28/2013
- Last sign in: 01/04/2014
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 2 | 2 |
Activity
12/11/2013
-
08:12 AM Ruby Bug #9240 (Closed): TestModule Test No Longer Valid
- TestModule#test_include_module_with_constants_invalidates_method_cache is no longer valid.
Test: https://github.com/ruby/ruby/blob/trunk/test/ruby/test_module.rb#L1783-L1801
The Changelog states, "...this means inclusions of modu...
12/09/2013
-
02:12 AM Ruby Feature #9190: Expose serial helper macros
- Thanks everyone!
12/08/2013
-
02:03 AM Ruby Feature #9190: Expose serial helper macros
- OK, cool. I'll refactor the Pull Request. Thanks!
12/07/2013
-
12:34 PM Ruby Feature #9190: Expose serial helper macros
- I'm cool with RubyVM.stat; copying the GC.stat implementation is a good idea.
>> RubyVM.stat
=> {
:method_serial => 200,
:constant_serial => 210,
}
-
01:32 AM Ruby Feature #9190: Expose serial helper macros
- @charliesome and @tmm1, thanks for the support, and I concur.
@nobu I've hacked together a gem. It's an alpha version, and it depends upon this patch.
https://github.com/simeonwillbanks/busted
The gem is a continuation of the ...
12/02/2013
-
07:50 AM Ruby Feature #9190: Expose serial helper macros
- After addressing a Pull Request comment, the methods are defined on RubyVM:
RubyVM.method_serial
RubyVM.constant_serial -
06:47 AM Ruby Feature #9190 (Closed): Expose serial helper macros
- I've defined RubyVM::InstructionHelper with singleton methods #method_serial and #constant_serial. They delegate to helper macros GET_METHOD_SERIAL() and GET_CONSTANT_SERIAL().
With these methods, users have visibility into the metho...