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
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
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
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
_