ruby-libjit 0.1.0

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,77 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby-libjit
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Paul Brannan
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-11-05 00:00:00 -05:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: A wrapper for the libjit library
17
+ email: curlypaul924@gmail.com
18
+ executables: []
19
+
20
+ extensions:
21
+ - ext/extconf.rb
22
+ extra_rdoc_files: []
23
+
24
+ files:
25
+ - COPYING
26
+ - LGPL
27
+ - LICENSE
28
+ - README
29
+ - lib/jit.rb
30
+ - lib/jit/array.rb
31
+ - lib/jit/function.rb
32
+ - lib/jit/struct.rb
33
+ - lib/jit/value.rb
34
+ - ext/rubypp.rb
35
+ - ext/extconf.rb
36
+ - ext/method_data.c
37
+ - ext/minimal_node.c
38
+ - ext/jit.c
39
+ - ext/method_data.h
40
+ - ext/minimal_node.h
41
+ - ext/rubyjit.h
42
+ - ext/insns.inc.rpp
43
+ - ext/method_data.c.rpp
44
+ - sample/gcd_benchmark.rb
45
+ - sample/fib.rb
46
+ - sample/simple.rb
47
+ has_rdoc: true
48
+ homepage: http://ruby-libjit.rubyforge.org
49
+ post_install_message:
50
+ rdoc_options: []
51
+
52
+ require_paths:
53
+ - lib
54
+ required_ruby_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: "0"
59
+ version:
60
+ required_rubygems_version: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: "0"
65
+ version:
66
+ requirements: []
67
+
68
+ rubyforge_project: ruby-libjit
69
+ rubygems_version: 1.3.1
70
+ signing_key:
71
+ specification_version: 2
72
+ summary: A wrapper for the libjit library
73
+ test_files:
74
+ - test/test_jit_array.rb
75
+ - test/test_jit_function.rb
76
+ - test/test_jit_value.rb
77
+ - test/test_jit_struct.rb