Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
require 'osx/cocoa' class Super < OSX::NSObject def self.new alloc.init end def self.alloc puts :alloc super_alloc end def init puts :init super_init end end class Sub < Super def initialize puts :initialize end end s = Sub.new puts s.class
This paste will be private.
From the Design Piracy series on my blog: