keyme-rice 1.5.1.keyme

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.
Files changed (202) hide show
  1. checksums.yaml +15 -0
  2. data/COPYING +23 -0
  3. data/Doxyfile +1253 -0
  4. data/Makefile.am +26 -0
  5. data/Makefile.in +853 -0
  6. data/README +1124 -0
  7. data/README.mingw +8 -0
  8. data/Rakefile +34 -0
  9. data/aclocal.m4 +971 -0
  10. data/bootstrap +8 -0
  11. data/config.guess +1530 -0
  12. data/config.sub +1773 -0
  13. data/configure +7121 -0
  14. data/configure.ac +52 -0
  15. data/depcomp +688 -0
  16. data/doxygen.ac +314 -0
  17. data/doxygen.am +186 -0
  18. data/extconf.rb +51 -0
  19. data/install-sh +527 -0
  20. data/missing +331 -0
  21. data/post-autoconf.rb +22 -0
  22. data/post-automake.rb +28 -0
  23. data/rice/Address_Registration_Guard.cpp +22 -0
  24. data/rice/Address_Registration_Guard.hpp +7 -0
  25. data/rice/Address_Registration_Guard.ipp +37 -0
  26. data/rice/Address_Registration_Guard_defn.hpp +75 -0
  27. data/rice/Arg.hpp +8 -0
  28. data/rice/Arg_impl.hpp +127 -0
  29. data/rice/Arg_operators.cpp +21 -0
  30. data/rice/Arg_operators.hpp +19 -0
  31. data/rice/Array.hpp +220 -0
  32. data/rice/Array.ipp +263 -0
  33. data/rice/Builtin_Object.hpp +8 -0
  34. data/rice/Builtin_Object.ipp +50 -0
  35. data/rice/Builtin_Object_defn.hpp +50 -0
  36. data/rice/Class.cpp +57 -0
  37. data/rice/Class.hpp +8 -0
  38. data/rice/Class.ipp +6 -0
  39. data/rice/Class_defn.hpp +83 -0
  40. data/rice/Constructor.hpp +368 -0
  41. data/rice/Critical_Guard.hpp +40 -0
  42. data/rice/Critical_Guard.ipp +26 -0
  43. data/rice/Data_Object.hpp +8 -0
  44. data/rice/Data_Object.ipp +133 -0
  45. data/rice/Data_Object_defn.hpp +138 -0
  46. data/rice/Data_Type.cpp +54 -0
  47. data/rice/Data_Type.hpp +8 -0
  48. data/rice/Data_Type.ipp +365 -0
  49. data/rice/Data_Type_defn.hpp +261 -0
  50. data/rice/Data_Type_fwd.hpp +12 -0
  51. data/rice/Director.cpp +13 -0
  52. data/rice/Director.hpp +39 -0
  53. data/rice/Enum.hpp +117 -0
  54. data/rice/Enum.ipp +246 -0
  55. data/rice/Exception.cpp +59 -0
  56. data/rice/Exception.hpp +9 -0
  57. data/rice/Exception_Base.hpp +8 -0
  58. data/rice/Exception_Base.ipp +13 -0
  59. data/rice/Exception_Base_defn.hpp +27 -0
  60. data/rice/Exception_defn.hpp +69 -0
  61. data/rice/Hash.hpp +227 -0
  62. data/rice/Hash.ipp +330 -0
  63. data/rice/Identifier.cpp +8 -0
  64. data/rice/Identifier.hpp +50 -0
  65. data/rice/Identifier.ipp +33 -0
  66. data/rice/Jump_Tag.hpp +24 -0
  67. data/rice/Makefile.am +129 -0
  68. data/rice/Makefile.in +769 -0
  69. data/rice/Module.cpp +84 -0
  70. data/rice/Module.hpp +8 -0
  71. data/rice/Module.ipp +6 -0
  72. data/rice/Module_defn.hpp +88 -0
  73. data/rice/Module_impl.hpp +281 -0
  74. data/rice/Module_impl.ipp +348 -0
  75. data/rice/Object.cpp +160 -0
  76. data/rice/Object.hpp +8 -0
  77. data/rice/Object.ipp +19 -0
  78. data/rice/Object_defn.hpp +191 -0
  79. data/rice/Require_Guard.hpp +21 -0
  80. data/rice/String.cpp +94 -0
  81. data/rice/String.hpp +89 -0
  82. data/rice/Struct.cpp +117 -0
  83. data/rice/Struct.hpp +162 -0
  84. data/rice/Struct.ipp +26 -0
  85. data/rice/Symbol.cpp +25 -0
  86. data/rice/Symbol.hpp +66 -0
  87. data/rice/Symbol.ipp +44 -0
  88. data/rice/VM.cpp +82 -0
  89. data/rice/VM.hpp +32 -0
  90. data/rice/config.hpp +44 -0
  91. data/rice/config.hpp.in +43 -0
  92. data/rice/detail/Arguments.hpp +118 -0
  93. data/rice/detail/Auto_Function_Wrapper.hpp +898 -0
  94. data/rice/detail/Auto_Function_Wrapper.ipp +3694 -0
  95. data/rice/detail/Auto_Member_Function_Wrapper.hpp +897 -0
  96. data/rice/detail/Auto_Member_Function_Wrapper.ipp +2774 -0
  97. data/rice/detail/Caster.hpp +103 -0
  98. data/rice/detail/Exception_Handler.hpp +8 -0
  99. data/rice/detail/Exception_Handler.ipp +68 -0
  100. data/rice/detail/Exception_Handler_defn.hpp +96 -0
  101. data/rice/detail/Iterator.hpp +93 -0
  102. data/rice/detail/Not_Copyable.hpp +25 -0
  103. data/rice/detail/Wrapped_Function.hpp +33 -0
  104. data/rice/detail/cfp.hpp +24 -0
  105. data/rice/detail/cfp.ipp +51 -0
  106. data/rice/detail/check_ruby_type.cpp +27 -0
  107. data/rice/detail/check_ruby_type.hpp +23 -0
  108. data/rice/detail/creation_funcs.hpp +37 -0
  109. data/rice/detail/creation_funcs.ipp +36 -0
  110. data/rice/detail/default_allocation_func.hpp +23 -0
  111. data/rice/detail/default_allocation_func.ipp +11 -0
  112. data/rice/detail/define_method_and_auto_wrap.hpp +31 -0
  113. data/rice/detail/define_method_and_auto_wrap.ipp +30 -0
  114. data/rice/detail/demangle.cpp +56 -0
  115. data/rice/detail/demangle.hpp +19 -0
  116. data/rice/detail/env.hpp +19 -0
  117. data/rice/detail/from_ruby.hpp +43 -0
  118. data/rice/detail/from_ruby.ipp +60 -0
  119. data/rice/detail/method_data.cpp +159 -0
  120. data/rice/detail/method_data.hpp +21 -0
  121. data/rice/detail/mininode.cpp +1220 -0
  122. data/rice/detail/mininode.hpp +320 -0
  123. data/rice/detail/node.hpp +13 -0
  124. data/rice/detail/object_call.hpp +69 -0
  125. data/rice/detail/object_call.ipp +131 -0
  126. data/rice/detail/protect.cpp +29 -0
  127. data/rice/detail/protect.hpp +34 -0
  128. data/rice/detail/ruby.hpp +84 -0
  129. data/rice/detail/ruby_version_code.hpp +6 -0
  130. data/rice/detail/ruby_version_code.hpp.in +6 -0
  131. data/rice/detail/rubysig.hpp +19 -0
  132. data/rice/detail/st.hpp +22 -0
  133. data/rice/detail/to_ruby.hpp +22 -0
  134. data/rice/detail/to_ruby.ipp +36 -0
  135. data/rice/detail/traits.hpp +43 -0
  136. data/rice/detail/win32.hpp +16 -0
  137. data/rice/detail/wrap_function.hpp +341 -0
  138. data/rice/detail/wrap_function.ipp +514 -0
  139. data/rice/global_function.hpp +33 -0
  140. data/rice/global_function.ipp +22 -0
  141. data/rice/protect.hpp +92 -0
  142. data/rice/protect.ipp +1134 -0
  143. data/rice/ruby_mark.hpp +13 -0
  144. data/rice/ruby_try_catch.hpp +86 -0
  145. data/rice/rubypp.rb +97 -0
  146. data/rice/to_from_ruby.hpp +8 -0
  147. data/rice/to_from_ruby.ipp +294 -0
  148. data/rice/to_from_ruby_defn.hpp +71 -0
  149. data/ruby/Makefile.am +1 -0
  150. data/ruby/Makefile.in +569 -0
  151. data/ruby/lib/Makefile.am +3 -0
  152. data/ruby/lib/Makefile.in +423 -0
  153. data/ruby/lib/mkmf-rice.rb.in +213 -0
  154. data/ruby/lib/version.rb +3 -0
  155. data/ruby.ac +136 -0
  156. data/sample/Makefile.am +47 -0
  157. data/sample/Makefile.in +408 -0
  158. data/sample/enum/extconf.rb +3 -0
  159. data/sample/enum/sample_enum.cpp +54 -0
  160. data/sample/enum/test.rb +8 -0
  161. data/sample/inheritance/animals.cpp +98 -0
  162. data/sample/inheritance/extconf.rb +3 -0
  163. data/sample/inheritance/test.rb +7 -0
  164. data/sample/map/extconf.rb +3 -0
  165. data/sample/map/map.cpp +81 -0
  166. data/sample/map/test.rb +7 -0
  167. data/test/Makefile.am +77 -0
  168. data/test/Makefile.in +820 -0
  169. data/test/ext/Makefile.am +43 -0
  170. data/test/ext/Makefile.in +404 -0
  171. data/test/ext/t1/Foo.hpp +10 -0
  172. data/test/ext/t1/extconf.rb +2 -0
  173. data/test/ext/t1/t1.cpp +15 -0
  174. data/test/ext/t2/extconf.rb +2 -0
  175. data/test/ext/t2/t2.cpp +11 -0
  176. data/test/test_Address_Registration_Guard.cpp +43 -0
  177. data/test/test_Array.cpp +241 -0
  178. data/test/test_Builtin_Object.cpp +72 -0
  179. data/test/test_Class.cpp +498 -0
  180. data/test/test_Constructor.cpp +128 -0
  181. data/test/test_Critical_Guard.cpp +51 -0
  182. data/test/test_Data_Object.cpp +275 -0
  183. data/test/test_Data_Type.cpp +348 -0
  184. data/test/test_Director.cpp +303 -0
  185. data/test/test_Enum.cpp +195 -0
  186. data/test/test_Exception.cpp +46 -0
  187. data/test/test_Hash.cpp +198 -0
  188. data/test/test_Identifier.cpp +70 -0
  189. data/test/test_Jump_Tag.cpp +17 -0
  190. data/test/test_Memory_Management.cpp +50 -0
  191. data/test/test_Module.cpp +497 -0
  192. data/test/test_Object.cpp +148 -0
  193. data/test/test_String.cpp +94 -0
  194. data/test/test_Struct.cpp +192 -0
  195. data/test/test_Symbol.cpp +63 -0
  196. data/test/test_To_From_Ruby.cpp +321 -0
  197. data/test/test_VM.cpp +26 -0
  198. data/test/test_global_functions.cpp +114 -0
  199. data/test/test_rice.rb +43 -0
  200. data/test/unittest.cpp +136 -0
  201. data/test/unittest.hpp +294 -0
  202. metadata +259 -0
metadata ADDED
@@ -0,0 +1,259 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: keyme-rice
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.5.1.keyme
5
+ platform: ruby
6
+ authors:
7
+ - Paul Brannan
8
+ - Jason Roelofs
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-06-05 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: ! 'Rice is a C++ interface to Ruby''s C API. It provides a type-safe
15
+ and
16
+
17
+ exception-safe interface in order to make embedding Ruby and writing
18
+
19
+ Ruby extensions with C++ easier. It is similar to Boost.Python in many
20
+
21
+ ways, but also attempts to provide an object-oriented interface to all
22
+
23
+ of the Ruby C API.
24
+
25
+ '
26
+ email:
27
+ - curlypaul924@gmail.com
28
+ - jasonroelofs@gmail.com
29
+ executables: []
30
+ extensions:
31
+ - extconf.rb
32
+ extra_rdoc_files:
33
+ - README
34
+ files:
35
+ - COPYING
36
+ - README
37
+ - README.mingw
38
+ - Doxyfile
39
+ - doxygen.ac
40
+ - doxygen.am
41
+ - extconf.rb
42
+ - bootstrap
43
+ - configure.ac
44
+ - configure
45
+ - config.guess
46
+ - config.sub
47
+ - depcomp
48
+ - install-sh
49
+ - missing
50
+ - post-autoconf.rb
51
+ - post-automake.rb
52
+ - ruby.ac
53
+ - aclocal.m4
54
+ - Rakefile
55
+ - Makefile.am
56
+ - Makefile.in
57
+ - rice/Makefile.am
58
+ - rice/Makefile.in
59
+ - ruby/Makefile.am
60
+ - ruby/Makefile.in
61
+ - ruby/lib/Makefile.am
62
+ - ruby/lib/Makefile.in
63
+ - sample/Makefile.am
64
+ - sample/Makefile.in
65
+ - test/Makefile.am
66
+ - test/Makefile.in
67
+ - rice/protect.ipp
68
+ - rice/Identifier.hpp
69
+ - rice/Class.ipp
70
+ - rice/Exception.cpp
71
+ - rice/Builtin_Object.ipp
72
+ - rice/Address_Registration_Guard_defn.hpp
73
+ - rice/ruby_mark.hpp
74
+ - rice/Struct.hpp
75
+ - rice/config.hpp
76
+ - rice/Data_Object.hpp
77
+ - rice/Object.hpp
78
+ - rice/protect.hpp
79
+ - rice/Arg_operators.cpp
80
+ - rice/Exception.hpp
81
+ - rice/global_function.ipp
82
+ - rice/Array.ipp
83
+ - rice/Data_Type.hpp
84
+ - rice/global_function.hpp
85
+ - rice/Hash.ipp
86
+ - rice/Constructor.hpp
87
+ - rice/Exception_Base.ipp
88
+ - rice/Arg_impl.hpp
89
+ - rice/Data_Type_defn.hpp
90
+ - rice/Module_impl.hpp
91
+ - rice/Struct.cpp
92
+ - rice/Struct.ipp
93
+ - rice/Exception_Base.hpp
94
+ - rice/Data_Object.ipp
95
+ - rice/Class_defn.hpp
96
+ - rice/Address_Registration_Guard.hpp
97
+ - rice/Module_impl.ipp
98
+ - rice/Director.hpp
99
+ - rice/Director.cpp
100
+ - rice/Object_defn.hpp
101
+ - rice/Arg.hpp
102
+ - rice/Data_Type.cpp
103
+ - rice/Array.hpp
104
+ - rice/Symbol.cpp
105
+ - rice/Data_Object_defn.hpp
106
+ - rice/Identifier.ipp
107
+ - rice/Data_Type_fwd.hpp
108
+ - rice/Exception_defn.hpp
109
+ - rice/Enum.hpp
110
+ - rice/Builtin_Object.hpp
111
+ - rice/Arg_operators.hpp
112
+ - rice/Object.cpp
113
+ - rice/Require_Guard.hpp
114
+ - rice/Module.hpp
115
+ - rice/Builtin_Object_defn.hpp
116
+ - rice/Address_Registration_Guard.ipp
117
+ - rice/Critical_Guard.hpp
118
+ - rice/Symbol.hpp
119
+ - rice/Module.ipp
120
+ - rice/Critical_Guard.ipp
121
+ - rice/to_from_ruby.hpp
122
+ - rice/Module_defn.hpp
123
+ - rice/Class.hpp
124
+ - rice/Class.cpp
125
+ - rice/VM.cpp
126
+ - rice/Jump_Tag.hpp
127
+ - rice/Hash.hpp
128
+ - rice/ruby_try_catch.hpp
129
+ - rice/Exception_Base_defn.hpp
130
+ - rice/Identifier.cpp
131
+ - rice/to_from_ruby_defn.hpp
132
+ - rice/Module.cpp
133
+ - rice/Address_Registration_Guard.cpp
134
+ - rice/Data_Type.ipp
135
+ - rice/String.cpp
136
+ - rice/String.hpp
137
+ - rice/Object.ipp
138
+ - rice/VM.hpp
139
+ - rice/Symbol.ipp
140
+ - rice/Enum.ipp
141
+ - rice/to_from_ruby.ipp
142
+ - rice/rubypp.rb
143
+ - rice/config.hpp.in
144
+ - rice/detail/cfp.hpp
145
+ - rice/detail/Iterator.hpp
146
+ - rice/detail/define_method_and_auto_wrap.hpp
147
+ - rice/detail/demangle.cpp
148
+ - rice/detail/protect.hpp
149
+ - rice/detail/win32.hpp
150
+ - rice/detail/define_method_and_auto_wrap.ipp
151
+ - rice/detail/st.hpp
152
+ - rice/detail/traits.hpp
153
+ - rice/detail/protect.cpp
154
+ - rice/detail/default_allocation_func.ipp
155
+ - rice/detail/check_ruby_type.hpp
156
+ - rice/detail/method_data.hpp
157
+ - rice/detail/Auto_Member_Function_Wrapper.hpp
158
+ - rice/detail/mininode.cpp
159
+ - rice/detail/rubysig.hpp
160
+ - rice/detail/from_ruby.hpp
161
+ - rice/detail/env.hpp
162
+ - rice/detail/demangle.hpp
163
+ - rice/detail/Caster.hpp
164
+ - rice/detail/to_ruby.hpp
165
+ - rice/detail/Auto_Member_Function_Wrapper.ipp
166
+ - rice/detail/ruby_version_code.hpp
167
+ - rice/detail/to_ruby.ipp
168
+ - rice/detail/Exception_Handler.ipp
169
+ - rice/detail/object_call.ipp
170
+ - rice/detail/check_ruby_type.cpp
171
+ - rice/detail/ruby.hpp
172
+ - rice/detail/node.hpp
173
+ - rice/detail/cfp.ipp
174
+ - rice/detail/Not_Copyable.hpp
175
+ - rice/detail/object_call.hpp
176
+ - rice/detail/Wrapped_Function.hpp
177
+ - rice/detail/Exception_Handler_defn.hpp
178
+ - rice/detail/Auto_Function_Wrapper.hpp
179
+ - rice/detail/Arguments.hpp
180
+ - rice/detail/wrap_function.hpp
181
+ - rice/detail/creation_funcs.hpp
182
+ - rice/detail/wrap_function.ipp
183
+ - rice/detail/default_allocation_func.hpp
184
+ - rice/detail/creation_funcs.ipp
185
+ - rice/detail/from_ruby.ipp
186
+ - rice/detail/Auto_Function_Wrapper.ipp
187
+ - rice/detail/Exception_Handler.hpp
188
+ - rice/detail/mininode.hpp
189
+ - rice/detail/method_data.cpp
190
+ - rice/detail/ruby_version_code.hpp.in
191
+ - ruby/lib/mkmf-rice.rb.in
192
+ - ruby/lib/version.rb
193
+ - sample/enum/extconf.rb
194
+ - sample/enum/sample_enum.cpp
195
+ - sample/enum/test.rb
196
+ - sample/map/extconf.rb
197
+ - sample/map/map.cpp
198
+ - sample/map/test.rb
199
+ - sample/inheritance/extconf.rb
200
+ - sample/inheritance/animals.cpp
201
+ - sample/inheritance/test.rb
202
+ - test/test_Module.cpp
203
+ - test/unittest.hpp
204
+ - test/test_Data_Object.cpp
205
+ - test/test_Exception.cpp
206
+ - test/test_Symbol.cpp
207
+ - test/test_Class.cpp
208
+ - test/unittest.cpp
209
+ - test/test_VM.cpp
210
+ - test/test_Data_Type.cpp
211
+ - test/test_Memory_Management.cpp
212
+ - test/test_Identifier.cpp
213
+ - test/test_Address_Registration_Guard.cpp
214
+ - test/test_Director.cpp
215
+ - test/test_Array.cpp
216
+ - test/test_String.cpp
217
+ - test/test_Enum.cpp
218
+ - test/test_global_functions.cpp
219
+ - test/test_Constructor.cpp
220
+ - test/test_Object.cpp
221
+ - test/test_Critical_Guard.cpp
222
+ - test/test_To_From_Ruby.cpp
223
+ - test/test_Hash.cpp
224
+ - test/test_Struct.cpp
225
+ - test/test_Builtin_Object.cpp
226
+ - test/test_Jump_Tag.cpp
227
+ - test/ext/Makefile.am
228
+ - test/ext/Makefile.in
229
+ - test/ext/t1/extconf.rb
230
+ - test/ext/t1/t1.cpp
231
+ - test/ext/t1/Foo.hpp
232
+ - test/ext/t2/extconf.rb
233
+ - test/ext/t2/t2.cpp
234
+ - test/test_rice.rb
235
+ homepage: http://rice.rubyforge.org/
236
+ licenses: []
237
+ metadata: {}
238
+ post_install_message:
239
+ rdoc_options: []
240
+ require_paths:
241
+ - ruby/lib
242
+ required_ruby_version: !ruby/object:Gem::Requirement
243
+ requirements:
244
+ - - ! '>='
245
+ - !ruby/object:Gem::Version
246
+ version: '0'
247
+ required_rubygems_version: !ruby/object:Gem::Requirement
248
+ requirements:
249
+ - - ! '>'
250
+ - !ruby/object:Gem::Version
251
+ version: 1.3.1
252
+ requirements: []
253
+ rubyforge_project:
254
+ rubygems_version: 2.0.3
255
+ signing_key:
256
+ specification_version: 4
257
+ summary: Ruby Interface for C++ Extensions
258
+ test_files:
259
+ - test/test_rice.rb