jballanc (owner)

Revisions

gist: 213726 Download_button fork
public
Public Clone URL: git://gist.github.com/213726.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
12
13
> cat hello.rb
puts "hello, world"
> macrubyc -o hello hello.rb
> file hello
hello: Mach-O 64-bit executable x86_64
> ./hello
hello, world
> otool -L ./hello
./hello:
/Library/Frameworks/MacRuby.framework/Versions/0.5/usr/lib/libmacruby.dylib (compatibility version 0.5.0, current version 0.5.0)
/usr/lib/libobjc.A.dylib (compatibility version 1.0.0, current version 227.0.0)
/usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.9.0)
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 124.1.1)