public this repo is viewable by everyone
Description: a ruby-to-pyc compiler
Clone URL: git://github.com/why/unholy.git
 * lib/unholy.rb: require the tiny `pickle` lib.
why (author)
10 days ago
commit  a4a14d9855db1c4c0149af979dddb66974ca6725
tree    4b5c13c7a928864bad17b223ada46de376f022e5
parent  4847fc032379eb12fc3401e69c7e0944f9231255
...
1
 
2
3
4
...
1
2
3
4
5
0
@@ -1,4 +1,5 @@
0
 #!/usr/bin/env ruby
0
+$: << "./lib"
0
 require 'unholy'
0
 
0
 asm = Pyasm.new(ARGV[0])
...
1
2
 
3
...
 
1
2
3
0
@@ -1,3 +1,3 @@
0
-require 'unholy/core'
0
 require 'unholy/tuple'
0
+require 'unholy/pickle'
0
 require 'unholy/pyasm'
...
270
271
272
273
 
274
275
276
...
270
271
272
 
273
274
275
276
0
@@ -270,7 +270,7 @@ class Pyasm
0
       when Symbol
0
         self.label inst
0
       when Array
0
- p inst
0
+ # p inst
0
         inst[0] = :message if inst[0] == :send
0
         self.send *inst
0
       end

Comments

    No one has commented yet.