[MacRuby-devel] Double module included

2012-05-10 Thread Dave Lee
Hi, Can anyone tell me, is this a MacRuby bug? module A; end module B; include A; end class C; include B; end p C.ancestors in Ruby 1.9.3 the results are: [C, B, A, Object, Kernel, BasicObject] and in MacRuby 0.11 the results are: [C, B, A, A, NSObject, Kernel] Why is the A module included t

[MacRuby-devel] Xcode 4 LLVM >= r127367

2011-03-23 Thread Dave Lee
Can the LLVM that comes with Xcode 4 be used to compile MacRuby 0.10? Is there a way to determine which svn revision Xcode's LLVM was compiled from? thanks, Dave ___ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.or

Re: [MacRuby-devel] Pointer to memory. was: Pointers for BOOL types

2009-01-08 Thread Dave Lee
w? (when otherwise > appropriately changed to ruby and Application.services imported etc). > > CGContextRef CGBitmapContextCreate ( >void *data, >size_t width, >size_t height, >size_t bitsPerComponent, >size_t bytesPerRow, >CGColorSpaceRef colorspace, >CGBi

Re: [MacRuby-devel] Pointers for BOOL types

2009-01-02 Thread Dave Lee
On Thu, Jan 1, 2009 at 7:37 PM, Lachie wrote: > Cheque it: > http://developer.apple.com/DOCUMENTATION/Cocoa/Conceptual/ObjCRuntimeGuide/Articles/chapter_7_section_1.html#//apple_ref/doc/uid/TP40008048-CH100-SW1 see also: /usr/include/objc/runtime.h Dave _