Top Level Namespace

Defined Under Namespace

Modules: PList, Rake Classes: ApplicationDelegate, RandomAppWindowController

Constant Summary collapse

LIBDIR =
File.dirname(__FILE__) + '/..'
BASEAPP =
LIBDIR + '/rubyobjcapp'

Instance Method Summary collapse

Instance Method Details

#rawObject

create a RandomApp window



63
64
65
# File 'app/random.rb', line 63

def raw
  RandomAppWindowController.alloc.init
end

#with(x) {|x| ... } ⇒ Object

Yields:

  • (x)


58
59
60
# File 'app/random.rb', line 58

def with(x)
  yield x if block_given?; x
end