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 07:52:52 -0700 2008
commit  a37e77f42aa3bfb1a9645b7826ee7b738dd225e5
tree    4180e59d81b2ba2de7a9b822f03e97e8a272a865
parent  ef3799c41bcd58e74b876fa03f1ef28cbd02a8b6
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