GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: a ruby-to-pyc compiler
Clone URL: git://github.com/why/unholy.git
why (author)
Mon May 05 20:17:26 -0700 2008
commit  eab2a68059233e78ff25e8271e85988e6015fa61
tree    5235bdc07e381c9797ee35ac724d27ee8b50f62d
parent  3b65c66935a74db4c6580b425afe0518aa59699b
unholy / bin / rb-compile
100755 6 lines (5 sloc) 0.12 kb
1
2
3
4
5
6
#!/usr/bin/env ruby
iseq = VM::InstructionSequence.compile(IO.read(ARGV[0]))
iseq.to_a.last.each do |inst|
  p inst
end