furnace 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: furnace
3
+ version: !ruby/object:Gem::Version
4
+ hash: 880347952
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Peter Zotov
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2012-01-13 00:00:00 Z
19
+ dependencies: []
20
+
21
+ description: Furnace aims to compile Ruby code into small static executables by restricting its metaprogramming features.
22
+ email:
23
+ - whitequark@whitequark.org
24
+ executables:
25
+ - furnace
26
+ extensions: []
27
+
28
+ extra_rdoc_files: []
29
+
30
+ files:
31
+ - .gitignore
32
+ - .rvmrc
33
+ - Gemfile
34
+ - Rakefile
35
+ - bin/furnace
36
+ - furnace.gemspec
37
+ - lib/furnace.rb
38
+ - lib/furnace/anf/edge.rb
39
+ - lib/furnace/anf/graph.rb
40
+ - lib/furnace/anf/if_node.rb
41
+ - lib/furnace/anf/in_node.rb
42
+ - lib/furnace/anf/let_node.rb
43
+ - lib/furnace/anf/node.rb
44
+ - lib/furnace/anf/return_node.rb
45
+ - lib/furnace/ast/node.rb
46
+ - lib/furnace/ast/symbolic_node.rb
47
+ - lib/furnace/ast/visitor.rb
48
+ - lib/furnace/cfg/edge.rb
49
+ - lib/furnace/cfg/graph.rb
50
+ - lib/furnace/cfg/node.rb
51
+ - lib/furnace/graphviz.rb
52
+ - lib/furnace/transform/generic/anf_build.rb
53
+ - lib/furnace/transform/generic/cfg_build.rb
54
+ - lib/furnace/transform/generic/cfg_normalize.rb
55
+ - lib/furnace/transform/generic/label_normalize.rb
56
+ - lib/furnace/transform/optimizing/fold_constants.rb
57
+ - lib/furnace/transform/pipeline.rb
58
+ - lib/furnace/transform/rubinius/ast_build.rb
59
+ - lib/furnace/transform/rubinius/ast_normalize.rb
60
+ - lib/furnace/version.rb
61
+ homepage: http://github.com/whitequark/furnace
62
+ licenses: []
63
+
64
+ post_install_message:
65
+ rdoc_options: []
66
+
67
+ require_paths:
68
+ - lib
69
+ required_ruby_version: !ruby/object:Gem::Requirement
70
+ none: false
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ hash: 881230260
75
+ segments:
76
+ - 0
77
+ version: "0"
78
+ required_rubygems_version: !ruby/object:Gem::Requirement
79
+ none: false
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ hash: 881230260
84
+ segments:
85
+ - 0
86
+ version: "0"
87
+ requirements: []
88
+
89
+ rubyforge_project:
90
+ rubygems_version: 1.8.12
91
+ signing_key:
92
+ specification_version: 3
93
+ summary: A static Ruby compiler
94
+ test_files: []
95
+