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 / unholy
100755 9 lines (7 sloc) 0.15 kb
1
2
3
4
5
6
7
8
9
#!/usr/bin/env ruby
$: << "./lib"
require 'unholy'
 
asm = Pyasm.new(ARGV[0])
asm.import :Kernel
asm.eval IO.read(ARGV[0])
asm.compile(ARGV[0]+".pyc")