ruby-lint 0.0.2 → 0.0.3

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 (321) hide show
  1. data.tar.gz.asc +17 -0
  2. data/.gitignore +1 -0
  3. data/.travis.yml +25 -0
  4. data/.yardopts +4 -0
  5. data/Gemfile +1 -1
  6. data/LICENSE +1 -1
  7. data/MANIFEST +238 -49
  8. data/README.md +84 -131
  9. data/Rakefile +6 -0
  10. data/bin/ruby-lint +2 -2
  11. data/checksum/.gitkeep +0 -0
  12. data/doc/DCO.md +26 -0
  13. data/doc/architecture.md +63 -0
  14. data/doc/code_analysis.md +90 -0
  15. data/doc/configuration.md +86 -0
  16. data/doc/contributing.md +16 -0
  17. data/doc/graphviz/flow.dot +7 -0
  18. data/doc/images/.gitkeep +0 -0
  19. data/doc/images/flow.png +0 -0
  20. data/lib/ruby-lint.rb +35 -35
  21. data/lib/ruby-lint/analyze/argument_amount.rb +73 -0
  22. data/lib/ruby-lint/analyze/shadowing_variables.rb +19 -24
  23. data/lib/ruby-lint/analyze/undefined_methods.rb +68 -0
  24. data/lib/ruby-lint/analyze/undefined_variables.rb +42 -69
  25. data/lib/ruby-lint/analyze/unused_variables.rb +23 -78
  26. data/lib/ruby-lint/base.rb +85 -0
  27. data/lib/ruby-lint/cli.rb +23 -167
  28. data/lib/ruby-lint/cli/analyze.rb +99 -0
  29. data/lib/ruby-lint/cli/ast.rb +35 -0
  30. data/lib/ruby-lint/cli/base.rb +120 -0
  31. data/lib/ruby-lint/configuration.rb +112 -0
  32. data/lib/ruby-lint/constant_loader.rb +92 -0
  33. data/lib/ruby-lint/definition/ruby_method.rb +248 -0
  34. data/lib/ruby-lint/definition/ruby_object.rb +757 -0
  35. data/lib/ruby-lint/definition_generator.rb +155 -0
  36. data/lib/ruby-lint/definitions/core.rb +5 -0
  37. data/lib/ruby-lint/definitions/core/arg0.rb +7 -0
  38. data/lib/ruby-lint/definitions/core/argf.rb +7 -0
  39. data/lib/ruby-lint/definitions/core/argument_error.rb +12 -0
  40. data/lib/ruby-lint/definitions/core/argv.rb +7 -0
  41. data/lib/ruby-lint/definitions/core/array.rb +414 -0
  42. data/lib/ruby-lint/definitions/core/autoload.rb +39 -0
  43. data/lib/ruby-lint/definitions/core/basic_object.rb +46 -0
  44. data/lib/ruby-lint/definitions/core/bignum.rb +128 -0
  45. data/lib/ruby-lint/definitions/core/binding.rb +52 -0
  46. data/lib/ruby-lint/definitions/core/class.rb +23 -0
  47. data/lib/ruby-lint/definitions/core/comparable.rb +38 -0
  48. data/lib/ruby-lint/definitions/core/complex.rb +195 -0
  49. data/lib/ruby-lint/definitions/core/condition_variable.rb +19 -0
  50. data/lib/ruby-lint/definitions/core/continuation.rb +8 -0
  51. data/lib/ruby-lint/definitions/core/data.rb +8 -0
  52. data/lib/ruby-lint/definitions/core/date.rb +706 -0
  53. data/lib/ruby-lint/definitions/core/date_time.rb +381 -0
  54. data/lib/ruby-lint/definitions/core/default_record_separator.rb +7 -0
  55. data/lib/ruby-lint/definitions/core/digest.rb +166 -0
  56. data/lib/ruby-lint/definitions/core/dir.rb +496 -0
  57. data/lib/ruby-lint/definitions/core/encoding.rb +2030 -0
  58. data/lib/ruby-lint/definitions/core/encoding_error.rb +8 -0
  59. data/lib/ruby-lint/definitions/core/enumerable.rb +352 -0
  60. data/lib/ruby-lint/definitions/core/enumerator.rb +37 -0
  61. data/lib/ruby-lint/definitions/core/env.rb +7 -0
  62. data/lib/ruby-lint/definitions/core/eoferror.rb +8 -0
  63. data/lib/ruby-lint/definitions/core/erb.rb +304 -0
  64. data/lib/ruby-lint/definitions/core/errno.rb +3331 -0
  65. data/lib/ruby-lint/definitions/core/etc.rb +138 -0
  66. data/lib/ruby-lint/definitions/core/exception.rb +72 -0
  67. data/lib/ruby-lint/definitions/core/false.rb +7 -0
  68. data/lib/ruby-lint/definitions/core/false_class.rb +30 -0
  69. data/lib/ruby-lint/definitions/core/fatal_error.rb +8 -0
  70. data/lib/ruby-lint/definitions/core/fiber.rb +35 -0
  71. data/lib/ruby-lint/definitions/core/fiber_error.rb +8 -0
  72. data/lib/ruby-lint/definitions/core/file.rb +1277 -0
  73. data/lib/ruby-lint/definitions/core/file_list.rb +727 -0
  74. data/lib/ruby-lint/definitions/core/file_test.rb +106 -0
  75. data/lib/ruby-lint/definitions/core/file_utils.rb +1027 -0
  76. data/lib/ruby-lint/definitions/core/fixnum.rb +156 -0
  77. data/lib/ruby-lint/definitions/core/float.rb +307 -0
  78. data/lib/ruby-lint/definitions/core/float_domain_error.rb +8 -0
  79. data/lib/ruby-lint/definitions/core/gc.rb +57 -0
  80. data/lib/ruby-lint/definitions/core/gem.rb +3161 -0
  81. data/lib/ruby-lint/definitions/core/hash.rb +512 -0
  82. data/lib/ruby-lint/definitions/core/immediate_value.rb +19 -0
  83. data/lib/ruby-lint/definitions/core/index_error.rb +8 -0
  84. data/lib/ruby-lint/definitions/core/integer.rb +100 -0
  85. data/lib/ruby-lint/definitions/core/interrupt.rb +14 -0
  86. data/lib/ruby-lint/definitions/core/io.rb +928 -0
  87. data/lib/ruby-lint/definitions/core/ioerror.rb +8 -0
  88. data/lib/ruby-lint/definitions/core/kernel.rb +504 -0
  89. data/lib/ruby-lint/definitions/core/key_error.rb +8 -0
  90. data/lib/ruby-lint/definitions/core/load_error.rb +28 -0
  91. data/lib/ruby-lint/definitions/core/local_jump_error.rb +8 -0
  92. data/lib/ruby-lint/definitions/core/main.rb +25 -0
  93. data/lib/ruby-lint/definitions/core/marshal.rb +466 -0
  94. data/lib/ruby-lint/definitions/core/match_data.rb +73 -0
  95. data/lib/ruby-lint/definitions/core/math.rb +205 -0
  96. data/lib/ruby-lint/definitions/core/memory_segmention_error.rb +8 -0
  97. data/lib/ruby-lint/definitions/core/method.rb +61 -0
  98. data/lib/ruby-lint/definitions/core/module.rb +262 -0
  99. data/lib/ruby-lint/definitions/core/monitor.rb +39 -0
  100. data/lib/ruby-lint/definitions/core/monitor_mixin.rb +59 -0
  101. data/lib/ruby-lint/definitions/core/mutex.rb +32 -0
  102. data/lib/ruby-lint/definitions/core/name_error.rb +16 -0
  103. data/lib/ruby-lint/definitions/core/nil.rb +7 -0
  104. data/lib/ruby-lint/definitions/core/nil_class.rb +46 -0
  105. data/lib/ruby-lint/definitions/core/no_memory_error.rb +8 -0
  106. data/lib/ruby-lint/definitions/core/no_method_error.rb +18 -0
  107. data/lib/ruby-lint/definitions/core/not_implemented_error.rb +8 -0
  108. data/lib/ruby-lint/definitions/core/numeric.rb +123 -0
  109. data/lib/ruby-lint/definitions/core/object.rb +31 -0
  110. data/lib/ruby-lint/definitions/core/object_space.rb +41 -0
  111. data/lib/ruby-lint/definitions/core/open_struct.rb +49 -0
  112. data/lib/ruby-lint/definitions/core/option_parser.rb +1355 -0
  113. data/lib/ruby-lint/definitions/core/precision.rb +21 -0
  114. data/lib/ruby-lint/definitions/core/primitive_failure.rb +8 -0
  115. data/lib/ruby-lint/definitions/core/proc.rb +109 -0
  116. data/lib/ruby-lint/definitions/core/process.rb +602 -0
  117. data/lib/ruby-lint/definitions/core/psych.rb +2231 -0
  118. data/lib/ruby-lint/definitions/core/queue.rb +44 -0
  119. data/lib/ruby-lint/definitions/core/rake.rb +4784 -0
  120. data/lib/ruby-lint/definitions/core/rake_file_utils.rb +203 -0
  121. data/lib/ruby-lint/definitions/core/rakeversion.rb +7 -0
  122. data/lib/ruby-lint/definitions/core/random.rb +38 -0
  123. data/lib/ruby-lint/definitions/core/range.rb +104 -0
  124. data/lib/ruby-lint/definitions/core/range_error.rb +8 -0
  125. data/lib/ruby-lint/definitions/core/rational.rb +96 -0
  126. data/lib/ruby-lint/definitions/core/rb_config.rb +36 -0
  127. data/lib/ruby-lint/definitions/core/regexp.rb +396 -0
  128. data/lib/ruby-lint/definitions/core/regexp_error.rb +8 -0
  129. data/lib/ruby-lint/definitions/core/rubinius.rb +16637 -0
  130. data/lib/ruby-lint/definitions/core/ruby_copyright.rb +7 -0
  131. data/lib/ruby-lint/definitions/core/ruby_description.rb +7 -0
  132. data/lib/ruby-lint/definitions/core/ruby_engine.rb +7 -0
  133. data/lib/ruby-lint/definitions/core/ruby_lint.rb +93 -0
  134. data/lib/ruby-lint/definitions/core/ruby_patchlevel.rb +7 -0
  135. data/lib/ruby-lint/definitions/core/ruby_platform.rb +7 -0
  136. data/lib/ruby-lint/definitions/core/ruby_release_date.rb +7 -0
  137. data/lib/ruby-lint/definitions/core/ruby_version.rb +7 -0
  138. data/lib/ruby-lint/definitions/core/runtime_error.rb +8 -0
  139. data/lib/ruby-lint/definitions/core/scan_error.rb +8 -0
  140. data/lib/ruby-lint/definitions/core/script_error.rb +8 -0
  141. data/lib/ruby-lint/definitions/core/security_error.rb +8 -0
  142. data/lib/ruby-lint/definitions/core/shellwords.rb +37 -0
  143. data/lib/ruby-lint/definitions/core/signal.rb +37 -0
  144. data/lib/ruby-lint/definitions/core/signal_exception.rb +19 -0
  145. data/lib/ruby-lint/definitions/core/singleton.rb +37 -0
  146. data/lib/ruby-lint/definitions/core/sized_queue.rb +42 -0
  147. data/lib/ruby-lint/definitions/core/standard_error.rb +8 -0
  148. data/lib/ruby-lint/definitions/core/stderr.rb +7 -0
  149. data/lib/ruby-lint/definitions/core/stdin.rb +7 -0
  150. data/lib/ruby-lint/definitions/core/stdout.rb +7 -0
  151. data/lib/ruby-lint/definitions/core/stop_iteration.rb +8 -0
  152. data/lib/ruby-lint/definitions/core/string.rb +713 -0
  153. data/lib/ruby-lint/definitions/core/string_io.rb +287 -0
  154. data/lib/ruby-lint/definitions/core/string_scanner.rb +158 -0
  155. data/lib/ruby-lint/definitions/core/struct.rb +357 -0
  156. data/lib/ruby-lint/definitions/core/syck.rb +30 -0
  157. data/lib/ruby-lint/definitions/core/symbol.rb +90 -0
  158. data/lib/ruby-lint/definitions/core/syntax_error.rb +44 -0
  159. data/lib/ruby-lint/definitions/core/system_call_error.rb +31 -0
  160. data/lib/ruby-lint/definitions/core/system_exit.rb +19 -0
  161. data/lib/ruby-lint/definitions/core/system_stack_error.rb +8 -0
  162. data/lib/ruby-lint/definitions/core/thread.rb +209 -0
  163. data/lib/ruby-lint/definitions/core/thread_error.rb +8 -0
  164. data/lib/ruby-lint/definitions/core/thread_group.rb +22 -0
  165. data/lib/ruby-lint/definitions/core/time.rb +233 -0
  166. data/lib/ruby-lint/definitions/core/toplevel_binding.rb +7 -0
  167. data/lib/ruby-lint/definitions/core/true.rb +7 -0
  168. data/lib/ruby-lint/definitions/core/true_class.rb +30 -0
  169. data/lib/ruby-lint/definitions/core/type_error.rb +8 -0
  170. data/lib/ruby-lint/definitions/core/unbound_method.rb +51 -0
  171. data/lib/ruby-lint/definitions/core/unmarshalable.rb +13 -0
  172. data/lib/ruby-lint/definitions/core/unsupported_library_error.rb +8 -0
  173. data/lib/ruby-lint/definitions/core/weak_ref.rb +42 -0
  174. data/lib/ruby-lint/definitions/core/zero_division_error.rb +8 -0
  175. data/lib/ruby-lint/definitions_builder.rb +692 -0
  176. data/lib/ruby-lint/extensions/string.rb +15 -0
  177. data/lib/ruby-lint/helper/constant_paths.rb +41 -0
  178. data/lib/ruby-lint/helper/conversion.rb +33 -0
  179. data/lib/ruby-lint/helper/current_scope.rb +98 -0
  180. data/lib/ruby-lint/helper/methods.rb +91 -0
  181. data/lib/ruby-lint/inspector.rb +191 -0
  182. data/lib/ruby-lint/iterator.rb +187 -127
  183. data/lib/ruby-lint/node.rb +107 -0
  184. data/lib/ruby-lint/parser.rb +510 -1137
  185. data/lib/ruby-lint/parser_error.rb +15 -27
  186. data/lib/ruby-lint/presenter/json.rb +19 -0
  187. data/lib/ruby-lint/presenter/text.rb +37 -0
  188. data/lib/ruby-lint/report.rb +95 -53
  189. data/lib/ruby-lint/report/entry.rb +71 -0
  190. data/lib/ruby-lint/template/definition.erb +24 -0
  191. data/lib/ruby-lint/template/scope.rb +25 -0
  192. data/lib/ruby-lint/variable_predicates.rb +109 -0
  193. data/lib/ruby-lint/version.rb +1 -1
  194. data/ruby-lint.gemspec +19 -8
  195. data/spec/helper.rb +10 -2
  196. data/spec/ruby-lint/analyze/argument_amount.rb +91 -0
  197. data/spec/ruby-lint/analyze/shadowing_variables.rb +69 -14
  198. data/spec/ruby-lint/analyze/undefined_methods.rb +174 -0
  199. data/spec/ruby-lint/analyze/undefined_variables.rb +70 -179
  200. data/spec/ruby-lint/analyze/unused_variables.rb +63 -183
  201. data/spec/ruby-lint/configuration.rb +15 -0
  202. data/spec/ruby-lint/constant_loader.rb +32 -0
  203. data/spec/ruby-lint/definition/dsl.rb +142 -0
  204. data/spec/ruby-lint/definition/method_calls.rb +26 -0
  205. data/spec/ruby-lint/definition/ruby_method.rb +175 -0
  206. data/spec/ruby-lint/definition/ruby_object.rb +228 -0
  207. data/spec/ruby-lint/definitions_builder/assignments/arrays.rb +71 -0
  208. data/spec/ruby-lint/definitions_builder/assignments/hashes.rb +65 -0
  209. data/spec/ruby-lint/definitions_builder/assignments/objects.rb +23 -0
  210. data/spec/ruby-lint/definitions_builder/assignments/optional.rb +22 -0
  211. data/spec/ruby-lint/definitions_builder/assignments/return_values.rb +78 -0
  212. data/spec/ruby-lint/definitions_builder/assignments/variables.rb +71 -0
  213. data/spec/ruby-lint/definitions_builder/associate_nodes.rb +17 -0
  214. data/spec/ruby-lint/definitions_builder/blocks.rb +40 -0
  215. data/spec/ruby-lint/definitions_builder/classes.rb +230 -0
  216. data/spec/ruby-lint/definitions_builder/for.rb +16 -0
  217. data/spec/ruby-lint/definitions_builder/methods.rb +147 -0
  218. data/spec/ruby-lint/definitions_builder/modules.rb +175 -0
  219. data/spec/ruby-lint/definitions_builder/reference_amount.rb +31 -0
  220. data/spec/ruby-lint/definitions_builder/unused.rb +15 -0
  221. data/spec/ruby-lint/extensions/string.rb +7 -0
  222. data/spec/ruby-lint/iterator.rb +42 -417
  223. data/spec/ruby-lint/node.rb +38 -0
  224. data/spec/ruby-lint/parser/assignments.rb +225 -0
  225. data/spec/ruby-lint/parser/classes.rb +80 -122
  226. data/spec/ruby-lint/parser/errors.rb +7 -14
  227. data/spec/ruby-lint/parser/metadata.rb +17 -0
  228. data/spec/ruby-lint/parser/method_definitions.rb +111 -0
  229. data/spec/ruby-lint/parser/methods.rb +184 -216
  230. data/spec/ruby-lint/parser/modules.rb +54 -33
  231. data/spec/ruby-lint/parser/operators.rb +30 -65
  232. data/spec/ruby-lint/parser/statements/begin.rb +55 -0
  233. data/spec/ruby-lint/parser/statements/case.rb +34 -0
  234. data/spec/ruby-lint/parser/statements/defined.rb +11 -0
  235. data/spec/ruby-lint/parser/statements/for.rb +34 -0
  236. data/spec/ruby-lint/parser/statements/if.rb +46 -0
  237. data/spec/ruby-lint/parser/statements/return.rb +14 -0
  238. data/spec/ruby-lint/parser/statements/super.rb +49 -0
  239. data/spec/ruby-lint/parser/statements/unless.rb +42 -0
  240. data/spec/ruby-lint/parser/statements/until.rb +25 -0
  241. data/spec/ruby-lint/parser/statements/while.rb +25 -0
  242. data/spec/ruby-lint/parser/statements/yield.rb +18 -0
  243. data/spec/ruby-lint/parser/types/arrays.rb +47 -0
  244. data/spec/ruby-lint/parser/types/booleans.rb +11 -0
  245. data/spec/ruby-lint/parser/types/constants.rb +32 -0
  246. data/spec/ruby-lint/parser/types/hashes.rb +55 -0
  247. data/spec/ruby-lint/parser/types/nil.rb +7 -0
  248. data/spec/ruby-lint/parser/types/numbers.rb +11 -0
  249. data/spec/ruby-lint/parser/types/procs.rb +11 -0
  250. data/spec/ruby-lint/parser/types/ranges.rb +11 -0
  251. data/spec/ruby-lint/parser/types/regexp.rb +27 -0
  252. data/spec/ruby-lint/parser/types/strings.rb +44 -0
  253. data/spec/ruby-lint/parser/types/symbols.rb +15 -0
  254. data/spec/ruby-lint/presenter/json.rb +31 -0
  255. data/spec/ruby-lint/presenter/text.rb +22 -0
  256. data/spec/ruby-lint/report.rb +45 -15
  257. data/spec/ruby-lint/report/entry.rb +24 -0
  258. data/spec/support/bacon.rb +33 -0
  259. data/spec/support/building.rb +43 -0
  260. data/spec/support/definitions.rb +23 -0
  261. data/spec/support/parsing.rb +23 -0
  262. data/spec/support/simplecov.rb +16 -0
  263. data/task/build.rake +9 -0
  264. data/task/checksum.rake +13 -0
  265. data/task/coverage.rake +6 -0
  266. data/task/doc.rake +5 -0
  267. data/task/generate.rake +34 -0
  268. data/task/graphviz.rake +12 -0
  269. data/task/stdlib.rake +2 -9
  270. data/task/tag.rake +6 -0
  271. metadata +337 -68
  272. metadata.gz.asc +17 -0
  273. data/.rbenv-version +0 -1
  274. data/lib/ruby-lint/analyze/coding_style.rb +0 -407
  275. data/lib/ruby-lint/analyze/definitions.rb +0 -244
  276. data/lib/ruby-lint/analyze/method_validation.rb +0 -104
  277. data/lib/ruby-lint/callback.rb +0 -67
  278. data/lib/ruby-lint/constant_importer.rb +0 -112
  279. data/lib/ruby-lint/definition.rb +0 -230
  280. data/lib/ruby-lint/formatter/text.rb +0 -54
  281. data/lib/ruby-lint/helper/definition_resolver.rb +0 -143
  282. data/lib/ruby-lint/helper/scoping.rb +0 -138
  283. data/lib/ruby-lint/options.rb +0 -58
  284. data/lib/ruby-lint/token/assignment_token.rb +0 -35
  285. data/lib/ruby-lint/token/begin_rescue_token.rb +0 -57
  286. data/lib/ruby-lint/token/block_token.rb +0 -26
  287. data/lib/ruby-lint/token/case_token.rb +0 -44
  288. data/lib/ruby-lint/token/class_token.rb +0 -24
  289. data/lib/ruby-lint/token/keyword_token.rb +0 -43
  290. data/lib/ruby-lint/token/method_definition_token.rb +0 -64
  291. data/lib/ruby-lint/token/method_token.rb +0 -56
  292. data/lib/ruby-lint/token/parameters_token.rb +0 -99
  293. data/lib/ruby-lint/token/regexp_token.rb +0 -15
  294. data/lib/ruby-lint/token/statement_token.rb +0 -69
  295. data/lib/ruby-lint/token/token.rb +0 -176
  296. data/lib/ruby-lint/token/variable_token.rb +0 -18
  297. data/spec/benchmarks/memory.rb +0 -52
  298. data/spec/benchmarks/parse_parser.rb +0 -16
  299. data/spec/fixtures/stdlib/un.rb +0 -348
  300. data/spec/ruby-lint/analyze/coding_style.rb +0 -224
  301. data/spec/ruby-lint/analyze/complex/un.rb +0 -29
  302. data/spec/ruby-lint/analyze/definitions/classes.rb +0 -114
  303. data/spec/ruby-lint/analyze/definitions/methods.rb +0 -91
  304. data/spec/ruby-lint/analyze/definitions/modules.rb +0 -207
  305. data/spec/ruby-lint/analyze/definitions/variables.rb +0 -103
  306. data/spec/ruby-lint/analyze/method_validation.rb +0 -177
  307. data/spec/ruby-lint/callback.rb +0 -28
  308. data/spec/ruby-lint/constant_importer.rb +0 -27
  309. data/spec/ruby-lint/definition.rb +0 -96
  310. data/spec/ruby-lint/formatter/text.rb +0 -21
  311. data/spec/ruby-lint/parser/arrays.rb +0 -147
  312. data/spec/ruby-lint/parser/expander_assignments.rb +0 -183
  313. data/spec/ruby-lint/parser/hashes.rb +0 -136
  314. data/spec/ruby-lint/parser/keywords.rb +0 -89
  315. data/spec/ruby-lint/parser/objects.rb +0 -39
  316. data/spec/ruby-lint/parser/procs.rb +0 -113
  317. data/spec/ruby-lint/parser/ranges.rb +0 -49
  318. data/spec/ruby-lint/parser/regexp.rb +0 -31
  319. data/spec/ruby-lint/parser/scalars.rb +0 -93
  320. data/spec/ruby-lint/parser/statements.rb +0 -591
  321. data/spec/ruby-lint/parser/variables.rb +0 -230
@@ -0,0 +1,3331 @@
1
+ ##
2
+ # Constant: Errno
3
+ # Created: 2013-04-01 18:33:53 +0200
4
+ # Platform: rbx 2.0.0.rc1
5
+ #
6
+ RubyLint.global_scope.define_constant('Errno') do |klass|
7
+
8
+ klass.define_method('__module_init__')
9
+
10
+ klass.define_method('handle') do |method|
11
+ method.define_optional_argument('additional')
12
+ end
13
+ end
14
+
15
+ ##
16
+ # Constant: Errno::E2BIG
17
+ # Created: 2013-04-01 18:33:53 +0200
18
+ # Platform: rbx 2.0.0.rc1
19
+ #
20
+ RubyLint.global_scope.define_constant('Errno::E2BIG') do |klass|
21
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
22
+ end
23
+
24
+ ##
25
+ # Constant: Errno::E2BIG::Errno
26
+ # Created: 2013-04-01 18:33:53 +0200
27
+ # Platform: rbx 2.0.0.rc1
28
+ #
29
+ RubyLint.global_scope.define_constant('Errno::E2BIG::Errno') do |klass|
30
+ end
31
+
32
+ ##
33
+ # Constant: Errno::E2BIG::Strerror
34
+ # Created: 2013-04-01 18:33:53 +0200
35
+ # Platform: rbx 2.0.0.rc1
36
+ #
37
+ RubyLint.global_scope.define_constant('Errno::E2BIG::Strerror') do |klass|
38
+ end
39
+
40
+ ##
41
+ # Constant: Errno::EACCES
42
+ # Created: 2013-04-01 18:33:53 +0200
43
+ # Platform: rbx 2.0.0.rc1
44
+ #
45
+ RubyLint.global_scope.define_constant('Errno::EACCES') do |klass|
46
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
47
+ end
48
+
49
+ ##
50
+ # Constant: Errno::EACCES::Errno
51
+ # Created: 2013-04-01 18:33:53 +0200
52
+ # Platform: rbx 2.0.0.rc1
53
+ #
54
+ RubyLint.global_scope.define_constant('Errno::EACCES::Errno') do |klass|
55
+ end
56
+
57
+ ##
58
+ # Constant: Errno::EACCES::Strerror
59
+ # Created: 2013-04-01 18:33:53 +0200
60
+ # Platform: rbx 2.0.0.rc1
61
+ #
62
+ RubyLint.global_scope.define_constant('Errno::EACCES::Strerror') do |klass|
63
+ end
64
+
65
+ ##
66
+ # Constant: Errno::EADDRINUSE
67
+ # Created: 2013-04-01 18:33:53 +0200
68
+ # Platform: rbx 2.0.0.rc1
69
+ #
70
+ RubyLint.global_scope.define_constant('Errno::EADDRINUSE') do |klass|
71
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
72
+ end
73
+
74
+ ##
75
+ # Constant: Errno::EADDRINUSE::Errno
76
+ # Created: 2013-04-01 18:33:53 +0200
77
+ # Platform: rbx 2.0.0.rc1
78
+ #
79
+ RubyLint.global_scope.define_constant('Errno::EADDRINUSE::Errno') do |klass|
80
+ end
81
+
82
+ ##
83
+ # Constant: Errno::EADDRINUSE::Strerror
84
+ # Created: 2013-04-01 18:33:53 +0200
85
+ # Platform: rbx 2.0.0.rc1
86
+ #
87
+ RubyLint.global_scope.define_constant('Errno::EADDRINUSE::Strerror') do |klass|
88
+ end
89
+
90
+ ##
91
+ # Constant: Errno::EADDRNOTAVAIL
92
+ # Created: 2013-04-01 18:33:53 +0200
93
+ # Platform: rbx 2.0.0.rc1
94
+ #
95
+ RubyLint.global_scope.define_constant('Errno::EADDRNOTAVAIL') do |klass|
96
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
97
+ end
98
+
99
+ ##
100
+ # Constant: Errno::EADDRNOTAVAIL::Errno
101
+ # Created: 2013-04-01 18:33:53 +0200
102
+ # Platform: rbx 2.0.0.rc1
103
+ #
104
+ RubyLint.global_scope.define_constant('Errno::EADDRNOTAVAIL::Errno') do |klass|
105
+ end
106
+
107
+ ##
108
+ # Constant: Errno::EADDRNOTAVAIL::Strerror
109
+ # Created: 2013-04-01 18:33:53 +0200
110
+ # Platform: rbx 2.0.0.rc1
111
+ #
112
+ RubyLint.global_scope.define_constant('Errno::EADDRNOTAVAIL::Strerror') do |klass|
113
+ end
114
+
115
+ ##
116
+ # Constant: Errno::EADV
117
+ # Created: 2013-04-01 18:33:53 +0200
118
+ # Platform: rbx 2.0.0.rc1
119
+ #
120
+ RubyLint.global_scope.define_constant('Errno::EADV') do |klass|
121
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
122
+ end
123
+
124
+ ##
125
+ # Constant: Errno::EADV::Errno
126
+ # Created: 2013-04-01 18:33:53 +0200
127
+ # Platform: rbx 2.0.0.rc1
128
+ #
129
+ RubyLint.global_scope.define_constant('Errno::EADV::Errno') do |klass|
130
+ end
131
+
132
+ ##
133
+ # Constant: Errno::EADV::Strerror
134
+ # Created: 2013-04-01 18:33:53 +0200
135
+ # Platform: rbx 2.0.0.rc1
136
+ #
137
+ RubyLint.global_scope.define_constant('Errno::EADV::Strerror') do |klass|
138
+ end
139
+
140
+ ##
141
+ # Constant: Errno::EAFNOSUPPORT
142
+ # Created: 2013-04-01 18:33:53 +0200
143
+ # Platform: rbx 2.0.0.rc1
144
+ #
145
+ RubyLint.global_scope.define_constant('Errno::EAFNOSUPPORT') do |klass|
146
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
147
+ end
148
+
149
+ ##
150
+ # Constant: Errno::EAFNOSUPPORT::Errno
151
+ # Created: 2013-04-01 18:33:53 +0200
152
+ # Platform: rbx 2.0.0.rc1
153
+ #
154
+ RubyLint.global_scope.define_constant('Errno::EAFNOSUPPORT::Errno') do |klass|
155
+ end
156
+
157
+ ##
158
+ # Constant: Errno::EAFNOSUPPORT::Strerror
159
+ # Created: 2013-04-01 18:33:53 +0200
160
+ # Platform: rbx 2.0.0.rc1
161
+ #
162
+ RubyLint.global_scope.define_constant('Errno::EAFNOSUPPORT::Strerror') do |klass|
163
+ end
164
+
165
+ ##
166
+ # Constant: Errno::EAGAIN
167
+ # Created: 2013-04-01 18:33:53 +0200
168
+ # Platform: rbx 2.0.0.rc1
169
+ #
170
+ RubyLint.global_scope.define_constant('Errno::EAGAIN') do |klass|
171
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
172
+ end
173
+
174
+ ##
175
+ # Constant: Errno::EAGAIN::Errno
176
+ # Created: 2013-04-01 18:33:53 +0200
177
+ # Platform: rbx 2.0.0.rc1
178
+ #
179
+ RubyLint.global_scope.define_constant('Errno::EAGAIN::Errno') do |klass|
180
+ end
181
+
182
+ ##
183
+ # Constant: Errno::EAGAIN::Strerror
184
+ # Created: 2013-04-01 18:33:53 +0200
185
+ # Platform: rbx 2.0.0.rc1
186
+ #
187
+ RubyLint.global_scope.define_constant('Errno::EAGAIN::Strerror') do |klass|
188
+ end
189
+
190
+ ##
191
+ # Constant: Errno::EALREADY
192
+ # Created: 2013-04-01 18:33:53 +0200
193
+ # Platform: rbx 2.0.0.rc1
194
+ #
195
+ RubyLint.global_scope.define_constant('Errno::EALREADY') do |klass|
196
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
197
+ end
198
+
199
+ ##
200
+ # Constant: Errno::EALREADY::Errno
201
+ # Created: 2013-04-01 18:33:53 +0200
202
+ # Platform: rbx 2.0.0.rc1
203
+ #
204
+ RubyLint.global_scope.define_constant('Errno::EALREADY::Errno') do |klass|
205
+ end
206
+
207
+ ##
208
+ # Constant: Errno::EALREADY::Strerror
209
+ # Created: 2013-04-01 18:33:53 +0200
210
+ # Platform: rbx 2.0.0.rc1
211
+ #
212
+ RubyLint.global_scope.define_constant('Errno::EALREADY::Strerror') do |klass|
213
+ end
214
+
215
+ ##
216
+ # Constant: Errno::EBADE
217
+ # Created: 2013-04-01 18:33:53 +0200
218
+ # Platform: rbx 2.0.0.rc1
219
+ #
220
+ RubyLint.global_scope.define_constant('Errno::EBADE') do |klass|
221
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
222
+ end
223
+
224
+ ##
225
+ # Constant: Errno::EBADE::Errno
226
+ # Created: 2013-04-01 18:33:53 +0200
227
+ # Platform: rbx 2.0.0.rc1
228
+ #
229
+ RubyLint.global_scope.define_constant('Errno::EBADE::Errno') do |klass|
230
+ end
231
+
232
+ ##
233
+ # Constant: Errno::EBADE::Strerror
234
+ # Created: 2013-04-01 18:33:53 +0200
235
+ # Platform: rbx 2.0.0.rc1
236
+ #
237
+ RubyLint.global_scope.define_constant('Errno::EBADE::Strerror') do |klass|
238
+ end
239
+
240
+ ##
241
+ # Constant: Errno::EBADF
242
+ # Created: 2013-04-01 18:33:53 +0200
243
+ # Platform: rbx 2.0.0.rc1
244
+ #
245
+ RubyLint.global_scope.define_constant('Errno::EBADF') do |klass|
246
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
247
+ end
248
+
249
+ ##
250
+ # Constant: Errno::EBADF::Errno
251
+ # Created: 2013-04-01 18:33:53 +0200
252
+ # Platform: rbx 2.0.0.rc1
253
+ #
254
+ RubyLint.global_scope.define_constant('Errno::EBADF::Errno') do |klass|
255
+ end
256
+
257
+ ##
258
+ # Constant: Errno::EBADF::Strerror
259
+ # Created: 2013-04-01 18:33:53 +0200
260
+ # Platform: rbx 2.0.0.rc1
261
+ #
262
+ RubyLint.global_scope.define_constant('Errno::EBADF::Strerror') do |klass|
263
+ end
264
+
265
+ ##
266
+ # Constant: Errno::EBADFD
267
+ # Created: 2013-04-01 18:33:53 +0200
268
+ # Platform: rbx 2.0.0.rc1
269
+ #
270
+ RubyLint.global_scope.define_constant('Errno::EBADFD') do |klass|
271
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
272
+ end
273
+
274
+ ##
275
+ # Constant: Errno::EBADFD::Errno
276
+ # Created: 2013-04-01 18:33:53 +0200
277
+ # Platform: rbx 2.0.0.rc1
278
+ #
279
+ RubyLint.global_scope.define_constant('Errno::EBADFD::Errno') do |klass|
280
+ end
281
+
282
+ ##
283
+ # Constant: Errno::EBADFD::Strerror
284
+ # Created: 2013-04-01 18:33:53 +0200
285
+ # Platform: rbx 2.0.0.rc1
286
+ #
287
+ RubyLint.global_scope.define_constant('Errno::EBADFD::Strerror') do |klass|
288
+ end
289
+
290
+ ##
291
+ # Constant: Errno::EBADMSG
292
+ # Created: 2013-04-01 18:33:53 +0200
293
+ # Platform: rbx 2.0.0.rc1
294
+ #
295
+ RubyLint.global_scope.define_constant('Errno::EBADMSG') do |klass|
296
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
297
+ end
298
+
299
+ ##
300
+ # Constant: Errno::EBADMSG::Errno
301
+ # Created: 2013-04-01 18:33:53 +0200
302
+ # Platform: rbx 2.0.0.rc1
303
+ #
304
+ RubyLint.global_scope.define_constant('Errno::EBADMSG::Errno') do |klass|
305
+ end
306
+
307
+ ##
308
+ # Constant: Errno::EBADMSG::Strerror
309
+ # Created: 2013-04-01 18:33:53 +0200
310
+ # Platform: rbx 2.0.0.rc1
311
+ #
312
+ RubyLint.global_scope.define_constant('Errno::EBADMSG::Strerror') do |klass|
313
+ end
314
+
315
+ ##
316
+ # Constant: Errno::EBADR
317
+ # Created: 2013-04-01 18:33:53 +0200
318
+ # Platform: rbx 2.0.0.rc1
319
+ #
320
+ RubyLint.global_scope.define_constant('Errno::EBADR') do |klass|
321
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
322
+ end
323
+
324
+ ##
325
+ # Constant: Errno::EBADR::Errno
326
+ # Created: 2013-04-01 18:33:53 +0200
327
+ # Platform: rbx 2.0.0.rc1
328
+ #
329
+ RubyLint.global_scope.define_constant('Errno::EBADR::Errno') do |klass|
330
+ end
331
+
332
+ ##
333
+ # Constant: Errno::EBADR::Strerror
334
+ # Created: 2013-04-01 18:33:53 +0200
335
+ # Platform: rbx 2.0.0.rc1
336
+ #
337
+ RubyLint.global_scope.define_constant('Errno::EBADR::Strerror') do |klass|
338
+ end
339
+
340
+ ##
341
+ # Constant: Errno::EBADRQC
342
+ # Created: 2013-04-01 18:33:53 +0200
343
+ # Platform: rbx 2.0.0.rc1
344
+ #
345
+ RubyLint.global_scope.define_constant('Errno::EBADRQC') do |klass|
346
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
347
+ end
348
+
349
+ ##
350
+ # Constant: Errno::EBADRQC::Errno
351
+ # Created: 2013-04-01 18:33:53 +0200
352
+ # Platform: rbx 2.0.0.rc1
353
+ #
354
+ RubyLint.global_scope.define_constant('Errno::EBADRQC::Errno') do |klass|
355
+ end
356
+
357
+ ##
358
+ # Constant: Errno::EBADRQC::Strerror
359
+ # Created: 2013-04-01 18:33:53 +0200
360
+ # Platform: rbx 2.0.0.rc1
361
+ #
362
+ RubyLint.global_scope.define_constant('Errno::EBADRQC::Strerror') do |klass|
363
+ end
364
+
365
+ ##
366
+ # Constant: Errno::EBADSLT
367
+ # Created: 2013-04-01 18:33:53 +0200
368
+ # Platform: rbx 2.0.0.rc1
369
+ #
370
+ RubyLint.global_scope.define_constant('Errno::EBADSLT') do |klass|
371
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
372
+ end
373
+
374
+ ##
375
+ # Constant: Errno::EBADSLT::Errno
376
+ # Created: 2013-04-01 18:33:53 +0200
377
+ # Platform: rbx 2.0.0.rc1
378
+ #
379
+ RubyLint.global_scope.define_constant('Errno::EBADSLT::Errno') do |klass|
380
+ end
381
+
382
+ ##
383
+ # Constant: Errno::EBADSLT::Strerror
384
+ # Created: 2013-04-01 18:33:53 +0200
385
+ # Platform: rbx 2.0.0.rc1
386
+ #
387
+ RubyLint.global_scope.define_constant('Errno::EBADSLT::Strerror') do |klass|
388
+ end
389
+
390
+ ##
391
+ # Constant: Errno::EBFONT
392
+ # Created: 2013-04-01 18:33:53 +0200
393
+ # Platform: rbx 2.0.0.rc1
394
+ #
395
+ RubyLint.global_scope.define_constant('Errno::EBFONT') do |klass|
396
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
397
+ end
398
+
399
+ ##
400
+ # Constant: Errno::EBFONT::Errno
401
+ # Created: 2013-04-01 18:33:53 +0200
402
+ # Platform: rbx 2.0.0.rc1
403
+ #
404
+ RubyLint.global_scope.define_constant('Errno::EBFONT::Errno') do |klass|
405
+ end
406
+
407
+ ##
408
+ # Constant: Errno::EBFONT::Strerror
409
+ # Created: 2013-04-01 18:33:53 +0200
410
+ # Platform: rbx 2.0.0.rc1
411
+ #
412
+ RubyLint.global_scope.define_constant('Errno::EBFONT::Strerror') do |klass|
413
+ end
414
+
415
+ ##
416
+ # Constant: Errno::EBUSY
417
+ # Created: 2013-04-01 18:33:53 +0200
418
+ # Platform: rbx 2.0.0.rc1
419
+ #
420
+ RubyLint.global_scope.define_constant('Errno::EBUSY') do |klass|
421
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
422
+ end
423
+
424
+ ##
425
+ # Constant: Errno::EBUSY::Errno
426
+ # Created: 2013-04-01 18:33:53 +0200
427
+ # Platform: rbx 2.0.0.rc1
428
+ #
429
+ RubyLint.global_scope.define_constant('Errno::EBUSY::Errno') do |klass|
430
+ end
431
+
432
+ ##
433
+ # Constant: Errno::EBUSY::Strerror
434
+ # Created: 2013-04-01 18:33:53 +0200
435
+ # Platform: rbx 2.0.0.rc1
436
+ #
437
+ RubyLint.global_scope.define_constant('Errno::EBUSY::Strerror') do |klass|
438
+ end
439
+
440
+ ##
441
+ # Constant: Errno::ECANCELED
442
+ # Created: 2013-04-01 18:33:53 +0200
443
+ # Platform: rbx 2.0.0.rc1
444
+ #
445
+ RubyLint.global_scope.define_constant('Errno::ECANCELED') do |klass|
446
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
447
+ end
448
+
449
+ ##
450
+ # Constant: Errno::ECANCELED::Errno
451
+ # Created: 2013-04-01 18:33:53 +0200
452
+ # Platform: rbx 2.0.0.rc1
453
+ #
454
+ RubyLint.global_scope.define_constant('Errno::ECANCELED::Errno') do |klass|
455
+ end
456
+
457
+ ##
458
+ # Constant: Errno::ECANCELED::Strerror
459
+ # Created: 2013-04-01 18:33:53 +0200
460
+ # Platform: rbx 2.0.0.rc1
461
+ #
462
+ RubyLint.global_scope.define_constant('Errno::ECANCELED::Strerror') do |klass|
463
+ end
464
+
465
+ ##
466
+ # Constant: Errno::ECHILD
467
+ # Created: 2013-04-01 18:33:53 +0200
468
+ # Platform: rbx 2.0.0.rc1
469
+ #
470
+ RubyLint.global_scope.define_constant('Errno::ECHILD') do |klass|
471
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
472
+ end
473
+
474
+ ##
475
+ # Constant: Errno::ECHILD::Errno
476
+ # Created: 2013-04-01 18:33:53 +0200
477
+ # Platform: rbx 2.0.0.rc1
478
+ #
479
+ RubyLint.global_scope.define_constant('Errno::ECHILD::Errno') do |klass|
480
+ end
481
+
482
+ ##
483
+ # Constant: Errno::ECHILD::Strerror
484
+ # Created: 2013-04-01 18:33:53 +0200
485
+ # Platform: rbx 2.0.0.rc1
486
+ #
487
+ RubyLint.global_scope.define_constant('Errno::ECHILD::Strerror') do |klass|
488
+ end
489
+
490
+ ##
491
+ # Constant: Errno::ECHRNG
492
+ # Created: 2013-04-01 18:33:53 +0200
493
+ # Platform: rbx 2.0.0.rc1
494
+ #
495
+ RubyLint.global_scope.define_constant('Errno::ECHRNG') do |klass|
496
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
497
+ end
498
+
499
+ ##
500
+ # Constant: Errno::ECHRNG::Errno
501
+ # Created: 2013-04-01 18:33:53 +0200
502
+ # Platform: rbx 2.0.0.rc1
503
+ #
504
+ RubyLint.global_scope.define_constant('Errno::ECHRNG::Errno') do |klass|
505
+ end
506
+
507
+ ##
508
+ # Constant: Errno::ECHRNG::Strerror
509
+ # Created: 2013-04-01 18:33:53 +0200
510
+ # Platform: rbx 2.0.0.rc1
511
+ #
512
+ RubyLint.global_scope.define_constant('Errno::ECHRNG::Strerror') do |klass|
513
+ end
514
+
515
+ ##
516
+ # Constant: Errno::ECOMM
517
+ # Created: 2013-04-01 18:33:53 +0200
518
+ # Platform: rbx 2.0.0.rc1
519
+ #
520
+ RubyLint.global_scope.define_constant('Errno::ECOMM') do |klass|
521
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
522
+ end
523
+
524
+ ##
525
+ # Constant: Errno::ECOMM::Errno
526
+ # Created: 2013-04-01 18:33:53 +0200
527
+ # Platform: rbx 2.0.0.rc1
528
+ #
529
+ RubyLint.global_scope.define_constant('Errno::ECOMM::Errno') do |klass|
530
+ end
531
+
532
+ ##
533
+ # Constant: Errno::ECOMM::Strerror
534
+ # Created: 2013-04-01 18:33:53 +0200
535
+ # Platform: rbx 2.0.0.rc1
536
+ #
537
+ RubyLint.global_scope.define_constant('Errno::ECOMM::Strerror') do |klass|
538
+ end
539
+
540
+ ##
541
+ # Constant: Errno::ECONNABORTED
542
+ # Created: 2013-04-01 18:33:53 +0200
543
+ # Platform: rbx 2.0.0.rc1
544
+ #
545
+ RubyLint.global_scope.define_constant('Errno::ECONNABORTED') do |klass|
546
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
547
+ end
548
+
549
+ ##
550
+ # Constant: Errno::ECONNABORTED::Errno
551
+ # Created: 2013-04-01 18:33:53 +0200
552
+ # Platform: rbx 2.0.0.rc1
553
+ #
554
+ RubyLint.global_scope.define_constant('Errno::ECONNABORTED::Errno') do |klass|
555
+ end
556
+
557
+ ##
558
+ # Constant: Errno::ECONNABORTED::Strerror
559
+ # Created: 2013-04-01 18:33:53 +0200
560
+ # Platform: rbx 2.0.0.rc1
561
+ #
562
+ RubyLint.global_scope.define_constant('Errno::ECONNABORTED::Strerror') do |klass|
563
+ end
564
+
565
+ ##
566
+ # Constant: Errno::ECONNREFUSED
567
+ # Created: 2013-04-01 18:33:53 +0200
568
+ # Platform: rbx 2.0.0.rc1
569
+ #
570
+ RubyLint.global_scope.define_constant('Errno::ECONNREFUSED') do |klass|
571
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
572
+ end
573
+
574
+ ##
575
+ # Constant: Errno::ECONNREFUSED::Errno
576
+ # Created: 2013-04-01 18:33:53 +0200
577
+ # Platform: rbx 2.0.0.rc1
578
+ #
579
+ RubyLint.global_scope.define_constant('Errno::ECONNREFUSED::Errno') do |klass|
580
+ end
581
+
582
+ ##
583
+ # Constant: Errno::ECONNREFUSED::Strerror
584
+ # Created: 2013-04-01 18:33:53 +0200
585
+ # Platform: rbx 2.0.0.rc1
586
+ #
587
+ RubyLint.global_scope.define_constant('Errno::ECONNREFUSED::Strerror') do |klass|
588
+ end
589
+
590
+ ##
591
+ # Constant: Errno::ECONNRESET
592
+ # Created: 2013-04-01 18:33:53 +0200
593
+ # Platform: rbx 2.0.0.rc1
594
+ #
595
+ RubyLint.global_scope.define_constant('Errno::ECONNRESET') do |klass|
596
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
597
+ end
598
+
599
+ ##
600
+ # Constant: Errno::ECONNRESET::Errno
601
+ # Created: 2013-04-01 18:33:53 +0200
602
+ # Platform: rbx 2.0.0.rc1
603
+ #
604
+ RubyLint.global_scope.define_constant('Errno::ECONNRESET::Errno') do |klass|
605
+ end
606
+
607
+ ##
608
+ # Constant: Errno::ECONNRESET::Strerror
609
+ # Created: 2013-04-01 18:33:53 +0200
610
+ # Platform: rbx 2.0.0.rc1
611
+ #
612
+ RubyLint.global_scope.define_constant('Errno::ECONNRESET::Strerror') do |klass|
613
+ end
614
+
615
+ ##
616
+ # Constant: Errno::EDEADLK
617
+ # Created: 2013-04-01 18:33:53 +0200
618
+ # Platform: rbx 2.0.0.rc1
619
+ #
620
+ RubyLint.global_scope.define_constant('Errno::EDEADLK') do |klass|
621
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
622
+ end
623
+
624
+ ##
625
+ # Constant: Errno::EDEADLK::Errno
626
+ # Created: 2013-04-01 18:33:53 +0200
627
+ # Platform: rbx 2.0.0.rc1
628
+ #
629
+ RubyLint.global_scope.define_constant('Errno::EDEADLK::Errno') do |klass|
630
+ end
631
+
632
+ ##
633
+ # Constant: Errno::EDEADLK::Strerror
634
+ # Created: 2013-04-01 18:33:53 +0200
635
+ # Platform: rbx 2.0.0.rc1
636
+ #
637
+ RubyLint.global_scope.define_constant('Errno::EDEADLK::Strerror') do |klass|
638
+ end
639
+
640
+ ##
641
+ # Constant: Errno::EDESTADDRREQ
642
+ # Created: 2013-04-01 18:33:53 +0200
643
+ # Platform: rbx 2.0.0.rc1
644
+ #
645
+ RubyLint.global_scope.define_constant('Errno::EDESTADDRREQ') do |klass|
646
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
647
+ end
648
+
649
+ ##
650
+ # Constant: Errno::EDESTADDRREQ::Errno
651
+ # Created: 2013-04-01 18:33:53 +0200
652
+ # Platform: rbx 2.0.0.rc1
653
+ #
654
+ RubyLint.global_scope.define_constant('Errno::EDESTADDRREQ::Errno') do |klass|
655
+ end
656
+
657
+ ##
658
+ # Constant: Errno::EDESTADDRREQ::Strerror
659
+ # Created: 2013-04-01 18:33:53 +0200
660
+ # Platform: rbx 2.0.0.rc1
661
+ #
662
+ RubyLint.global_scope.define_constant('Errno::EDESTADDRREQ::Strerror') do |klass|
663
+ end
664
+
665
+ ##
666
+ # Constant: Errno::EDOM
667
+ # Created: 2013-04-01 18:33:53 +0200
668
+ # Platform: rbx 2.0.0.rc1
669
+ #
670
+ RubyLint.global_scope.define_constant('Errno::EDOM') do |klass|
671
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
672
+ end
673
+
674
+ ##
675
+ # Constant: Errno::EDOM::Errno
676
+ # Created: 2013-04-01 18:33:53 +0200
677
+ # Platform: rbx 2.0.0.rc1
678
+ #
679
+ RubyLint.global_scope.define_constant('Errno::EDOM::Errno') do |klass|
680
+ end
681
+
682
+ ##
683
+ # Constant: Errno::EDOM::Strerror
684
+ # Created: 2013-04-01 18:33:53 +0200
685
+ # Platform: rbx 2.0.0.rc1
686
+ #
687
+ RubyLint.global_scope.define_constant('Errno::EDOM::Strerror') do |klass|
688
+ end
689
+
690
+ ##
691
+ # Constant: Errno::EDOTDOT
692
+ # Created: 2013-04-01 18:33:53 +0200
693
+ # Platform: rbx 2.0.0.rc1
694
+ #
695
+ RubyLint.global_scope.define_constant('Errno::EDOTDOT') do |klass|
696
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
697
+ end
698
+
699
+ ##
700
+ # Constant: Errno::EDOTDOT::Errno
701
+ # Created: 2013-04-01 18:33:53 +0200
702
+ # Platform: rbx 2.0.0.rc1
703
+ #
704
+ RubyLint.global_scope.define_constant('Errno::EDOTDOT::Errno') do |klass|
705
+ end
706
+
707
+ ##
708
+ # Constant: Errno::EDOTDOT::Strerror
709
+ # Created: 2013-04-01 18:33:53 +0200
710
+ # Platform: rbx 2.0.0.rc1
711
+ #
712
+ RubyLint.global_scope.define_constant('Errno::EDOTDOT::Strerror') do |klass|
713
+ end
714
+
715
+ ##
716
+ # Constant: Errno::EDQUOT
717
+ # Created: 2013-04-01 18:33:53 +0200
718
+ # Platform: rbx 2.0.0.rc1
719
+ #
720
+ RubyLint.global_scope.define_constant('Errno::EDQUOT') do |klass|
721
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
722
+ end
723
+
724
+ ##
725
+ # Constant: Errno::EDQUOT::Errno
726
+ # Created: 2013-04-01 18:33:53 +0200
727
+ # Platform: rbx 2.0.0.rc1
728
+ #
729
+ RubyLint.global_scope.define_constant('Errno::EDQUOT::Errno') do |klass|
730
+ end
731
+
732
+ ##
733
+ # Constant: Errno::EDQUOT::Strerror
734
+ # Created: 2013-04-01 18:33:53 +0200
735
+ # Platform: rbx 2.0.0.rc1
736
+ #
737
+ RubyLint.global_scope.define_constant('Errno::EDQUOT::Strerror') do |klass|
738
+ end
739
+
740
+ ##
741
+ # Constant: Errno::EEXIST
742
+ # Created: 2013-04-01 18:33:53 +0200
743
+ # Platform: rbx 2.0.0.rc1
744
+ #
745
+ RubyLint.global_scope.define_constant('Errno::EEXIST') do |klass|
746
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
747
+ end
748
+
749
+ ##
750
+ # Constant: Errno::EEXIST::Errno
751
+ # Created: 2013-04-01 18:33:53 +0200
752
+ # Platform: rbx 2.0.0.rc1
753
+ #
754
+ RubyLint.global_scope.define_constant('Errno::EEXIST::Errno') do |klass|
755
+ end
756
+
757
+ ##
758
+ # Constant: Errno::EEXIST::Strerror
759
+ # Created: 2013-04-01 18:33:53 +0200
760
+ # Platform: rbx 2.0.0.rc1
761
+ #
762
+ RubyLint.global_scope.define_constant('Errno::EEXIST::Strerror') do |klass|
763
+ end
764
+
765
+ ##
766
+ # Constant: Errno::EFAULT
767
+ # Created: 2013-04-01 18:33:53 +0200
768
+ # Platform: rbx 2.0.0.rc1
769
+ #
770
+ RubyLint.global_scope.define_constant('Errno::EFAULT') do |klass|
771
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
772
+ end
773
+
774
+ ##
775
+ # Constant: Errno::EFAULT::Errno
776
+ # Created: 2013-04-01 18:33:53 +0200
777
+ # Platform: rbx 2.0.0.rc1
778
+ #
779
+ RubyLint.global_scope.define_constant('Errno::EFAULT::Errno') do |klass|
780
+ end
781
+
782
+ ##
783
+ # Constant: Errno::EFAULT::Strerror
784
+ # Created: 2013-04-01 18:33:53 +0200
785
+ # Platform: rbx 2.0.0.rc1
786
+ #
787
+ RubyLint.global_scope.define_constant('Errno::EFAULT::Strerror') do |klass|
788
+ end
789
+
790
+ ##
791
+ # Constant: Errno::EFBIG
792
+ # Created: 2013-04-01 18:33:53 +0200
793
+ # Platform: rbx 2.0.0.rc1
794
+ #
795
+ RubyLint.global_scope.define_constant('Errno::EFBIG') do |klass|
796
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
797
+ end
798
+
799
+ ##
800
+ # Constant: Errno::EFBIG::Errno
801
+ # Created: 2013-04-01 18:33:53 +0200
802
+ # Platform: rbx 2.0.0.rc1
803
+ #
804
+ RubyLint.global_scope.define_constant('Errno::EFBIG::Errno') do |klass|
805
+ end
806
+
807
+ ##
808
+ # Constant: Errno::EFBIG::Strerror
809
+ # Created: 2013-04-01 18:33:53 +0200
810
+ # Platform: rbx 2.0.0.rc1
811
+ #
812
+ RubyLint.global_scope.define_constant('Errno::EFBIG::Strerror') do |klass|
813
+ end
814
+
815
+ ##
816
+ # Constant: Errno::EHOSTDOWN
817
+ # Created: 2013-04-01 18:33:53 +0200
818
+ # Platform: rbx 2.0.0.rc1
819
+ #
820
+ RubyLint.global_scope.define_constant('Errno::EHOSTDOWN') do |klass|
821
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
822
+ end
823
+
824
+ ##
825
+ # Constant: Errno::EHOSTDOWN::Errno
826
+ # Created: 2013-04-01 18:33:53 +0200
827
+ # Platform: rbx 2.0.0.rc1
828
+ #
829
+ RubyLint.global_scope.define_constant('Errno::EHOSTDOWN::Errno') do |klass|
830
+ end
831
+
832
+ ##
833
+ # Constant: Errno::EHOSTDOWN::Strerror
834
+ # Created: 2013-04-01 18:33:53 +0200
835
+ # Platform: rbx 2.0.0.rc1
836
+ #
837
+ RubyLint.global_scope.define_constant('Errno::EHOSTDOWN::Strerror') do |klass|
838
+ end
839
+
840
+ ##
841
+ # Constant: Errno::EHOSTUNREACH
842
+ # Created: 2013-04-01 18:33:53 +0200
843
+ # Platform: rbx 2.0.0.rc1
844
+ #
845
+ RubyLint.global_scope.define_constant('Errno::EHOSTUNREACH') do |klass|
846
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
847
+ end
848
+
849
+ ##
850
+ # Constant: Errno::EHOSTUNREACH::Errno
851
+ # Created: 2013-04-01 18:33:53 +0200
852
+ # Platform: rbx 2.0.0.rc1
853
+ #
854
+ RubyLint.global_scope.define_constant('Errno::EHOSTUNREACH::Errno') do |klass|
855
+ end
856
+
857
+ ##
858
+ # Constant: Errno::EHOSTUNREACH::Strerror
859
+ # Created: 2013-04-01 18:33:53 +0200
860
+ # Platform: rbx 2.0.0.rc1
861
+ #
862
+ RubyLint.global_scope.define_constant('Errno::EHOSTUNREACH::Strerror') do |klass|
863
+ end
864
+
865
+ ##
866
+ # Constant: Errno::EIDRM
867
+ # Created: 2013-04-01 18:33:53 +0200
868
+ # Platform: rbx 2.0.0.rc1
869
+ #
870
+ RubyLint.global_scope.define_constant('Errno::EIDRM') do |klass|
871
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
872
+ end
873
+
874
+ ##
875
+ # Constant: Errno::EIDRM::Errno
876
+ # Created: 2013-04-01 18:33:53 +0200
877
+ # Platform: rbx 2.0.0.rc1
878
+ #
879
+ RubyLint.global_scope.define_constant('Errno::EIDRM::Errno') do |klass|
880
+ end
881
+
882
+ ##
883
+ # Constant: Errno::EIDRM::Strerror
884
+ # Created: 2013-04-01 18:33:53 +0200
885
+ # Platform: rbx 2.0.0.rc1
886
+ #
887
+ RubyLint.global_scope.define_constant('Errno::EIDRM::Strerror') do |klass|
888
+ end
889
+
890
+ ##
891
+ # Constant: Errno::EILSEQ
892
+ # Created: 2013-04-01 18:33:53 +0200
893
+ # Platform: rbx 2.0.0.rc1
894
+ #
895
+ RubyLint.global_scope.define_constant('Errno::EILSEQ') do |klass|
896
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
897
+ end
898
+
899
+ ##
900
+ # Constant: Errno::EILSEQ::Errno
901
+ # Created: 2013-04-01 18:33:53 +0200
902
+ # Platform: rbx 2.0.0.rc1
903
+ #
904
+ RubyLint.global_scope.define_constant('Errno::EILSEQ::Errno') do |klass|
905
+ end
906
+
907
+ ##
908
+ # Constant: Errno::EILSEQ::Strerror
909
+ # Created: 2013-04-01 18:33:53 +0200
910
+ # Platform: rbx 2.0.0.rc1
911
+ #
912
+ RubyLint.global_scope.define_constant('Errno::EILSEQ::Strerror') do |klass|
913
+ end
914
+
915
+ ##
916
+ # Constant: Errno::EINPROGRESS
917
+ # Created: 2013-04-01 18:33:53 +0200
918
+ # Platform: rbx 2.0.0.rc1
919
+ #
920
+ RubyLint.global_scope.define_constant('Errno::EINPROGRESS') do |klass|
921
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
922
+ end
923
+
924
+ ##
925
+ # Constant: Errno::EINPROGRESS::Errno
926
+ # Created: 2013-04-01 18:33:53 +0200
927
+ # Platform: rbx 2.0.0.rc1
928
+ #
929
+ RubyLint.global_scope.define_constant('Errno::EINPROGRESS::Errno') do |klass|
930
+ end
931
+
932
+ ##
933
+ # Constant: Errno::EINPROGRESS::Strerror
934
+ # Created: 2013-04-01 18:33:53 +0200
935
+ # Platform: rbx 2.0.0.rc1
936
+ #
937
+ RubyLint.global_scope.define_constant('Errno::EINPROGRESS::Strerror') do |klass|
938
+ end
939
+
940
+ ##
941
+ # Constant: Errno::EINTR
942
+ # Created: 2013-04-01 18:33:53 +0200
943
+ # Platform: rbx 2.0.0.rc1
944
+ #
945
+ RubyLint.global_scope.define_constant('Errno::EINTR') do |klass|
946
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
947
+ end
948
+
949
+ ##
950
+ # Constant: Errno::EINTR::Errno
951
+ # Created: 2013-04-01 18:33:53 +0200
952
+ # Platform: rbx 2.0.0.rc1
953
+ #
954
+ RubyLint.global_scope.define_constant('Errno::EINTR::Errno') do |klass|
955
+ end
956
+
957
+ ##
958
+ # Constant: Errno::EINTR::Strerror
959
+ # Created: 2013-04-01 18:33:53 +0200
960
+ # Platform: rbx 2.0.0.rc1
961
+ #
962
+ RubyLint.global_scope.define_constant('Errno::EINTR::Strerror') do |klass|
963
+ end
964
+
965
+ ##
966
+ # Constant: Errno::EINVAL
967
+ # Created: 2013-04-01 18:33:53 +0200
968
+ # Platform: rbx 2.0.0.rc1
969
+ #
970
+ RubyLint.global_scope.define_constant('Errno::EINVAL') do |klass|
971
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
972
+ end
973
+
974
+ ##
975
+ # Constant: Errno::EINVAL::Errno
976
+ # Created: 2013-04-01 18:33:53 +0200
977
+ # Platform: rbx 2.0.0.rc1
978
+ #
979
+ RubyLint.global_scope.define_constant('Errno::EINVAL::Errno') do |klass|
980
+ end
981
+
982
+ ##
983
+ # Constant: Errno::EINVAL::Strerror
984
+ # Created: 2013-04-01 18:33:53 +0200
985
+ # Platform: rbx 2.0.0.rc1
986
+ #
987
+ RubyLint.global_scope.define_constant('Errno::EINVAL::Strerror') do |klass|
988
+ end
989
+
990
+ ##
991
+ # Constant: Errno::EIO
992
+ # Created: 2013-04-01 18:33:53 +0200
993
+ # Platform: rbx 2.0.0.rc1
994
+ #
995
+ RubyLint.global_scope.define_constant('Errno::EIO') do |klass|
996
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
997
+ end
998
+
999
+ ##
1000
+ # Constant: Errno::EIO::Errno
1001
+ # Created: 2013-04-01 18:33:53 +0200
1002
+ # Platform: rbx 2.0.0.rc1
1003
+ #
1004
+ RubyLint.global_scope.define_constant('Errno::EIO::Errno') do |klass|
1005
+ end
1006
+
1007
+ ##
1008
+ # Constant: Errno::EIO::Strerror
1009
+ # Created: 2013-04-01 18:33:53 +0200
1010
+ # Platform: rbx 2.0.0.rc1
1011
+ #
1012
+ RubyLint.global_scope.define_constant('Errno::EIO::Strerror') do |klass|
1013
+ end
1014
+
1015
+ ##
1016
+ # Constant: Errno::EISCONN
1017
+ # Created: 2013-04-01 18:33:53 +0200
1018
+ # Platform: rbx 2.0.0.rc1
1019
+ #
1020
+ RubyLint.global_scope.define_constant('Errno::EISCONN') do |klass|
1021
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1022
+ end
1023
+
1024
+ ##
1025
+ # Constant: Errno::EISCONN::Errno
1026
+ # Created: 2013-04-01 18:33:53 +0200
1027
+ # Platform: rbx 2.0.0.rc1
1028
+ #
1029
+ RubyLint.global_scope.define_constant('Errno::EISCONN::Errno') do |klass|
1030
+ end
1031
+
1032
+ ##
1033
+ # Constant: Errno::EISCONN::Strerror
1034
+ # Created: 2013-04-01 18:33:53 +0200
1035
+ # Platform: rbx 2.0.0.rc1
1036
+ #
1037
+ RubyLint.global_scope.define_constant('Errno::EISCONN::Strerror') do |klass|
1038
+ end
1039
+
1040
+ ##
1041
+ # Constant: Errno::EISDIR
1042
+ # Created: 2013-04-01 18:33:53 +0200
1043
+ # Platform: rbx 2.0.0.rc1
1044
+ #
1045
+ RubyLint.global_scope.define_constant('Errno::EISDIR') do |klass|
1046
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1047
+ end
1048
+
1049
+ ##
1050
+ # Constant: Errno::EISDIR::Errno
1051
+ # Created: 2013-04-01 18:33:53 +0200
1052
+ # Platform: rbx 2.0.0.rc1
1053
+ #
1054
+ RubyLint.global_scope.define_constant('Errno::EISDIR::Errno') do |klass|
1055
+ end
1056
+
1057
+ ##
1058
+ # Constant: Errno::EISDIR::Strerror
1059
+ # Created: 2013-04-01 18:33:53 +0200
1060
+ # Platform: rbx 2.0.0.rc1
1061
+ #
1062
+ RubyLint.global_scope.define_constant('Errno::EISDIR::Strerror') do |klass|
1063
+ end
1064
+
1065
+ ##
1066
+ # Constant: Errno::EISNAM
1067
+ # Created: 2013-04-01 18:33:53 +0200
1068
+ # Platform: rbx 2.0.0.rc1
1069
+ #
1070
+ RubyLint.global_scope.define_constant('Errno::EISNAM') do |klass|
1071
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1072
+ end
1073
+
1074
+ ##
1075
+ # Constant: Errno::EISNAM::Errno
1076
+ # Created: 2013-04-01 18:33:53 +0200
1077
+ # Platform: rbx 2.0.0.rc1
1078
+ #
1079
+ RubyLint.global_scope.define_constant('Errno::EISNAM::Errno') do |klass|
1080
+ end
1081
+
1082
+ ##
1083
+ # Constant: Errno::EISNAM::Strerror
1084
+ # Created: 2013-04-01 18:33:53 +0200
1085
+ # Platform: rbx 2.0.0.rc1
1086
+ #
1087
+ RubyLint.global_scope.define_constant('Errno::EISNAM::Strerror') do |klass|
1088
+ end
1089
+
1090
+ ##
1091
+ # Constant: Errno::EKEYEXPIRED
1092
+ # Created: 2013-04-01 18:33:53 +0200
1093
+ # Platform: rbx 2.0.0.rc1
1094
+ #
1095
+ RubyLint.global_scope.define_constant('Errno::EKEYEXPIRED') do |klass|
1096
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1097
+ end
1098
+
1099
+ ##
1100
+ # Constant: Errno::EKEYEXPIRED::Errno
1101
+ # Created: 2013-04-01 18:33:53 +0200
1102
+ # Platform: rbx 2.0.0.rc1
1103
+ #
1104
+ RubyLint.global_scope.define_constant('Errno::EKEYEXPIRED::Errno') do |klass|
1105
+ end
1106
+
1107
+ ##
1108
+ # Constant: Errno::EKEYEXPIRED::Strerror
1109
+ # Created: 2013-04-01 18:33:53 +0200
1110
+ # Platform: rbx 2.0.0.rc1
1111
+ #
1112
+ RubyLint.global_scope.define_constant('Errno::EKEYEXPIRED::Strerror') do |klass|
1113
+ end
1114
+
1115
+ ##
1116
+ # Constant: Errno::EKEYREJECTED
1117
+ # Created: 2013-04-01 18:33:53 +0200
1118
+ # Platform: rbx 2.0.0.rc1
1119
+ #
1120
+ RubyLint.global_scope.define_constant('Errno::EKEYREJECTED') do |klass|
1121
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1122
+ end
1123
+
1124
+ ##
1125
+ # Constant: Errno::EKEYREJECTED::Errno
1126
+ # Created: 2013-04-01 18:33:53 +0200
1127
+ # Platform: rbx 2.0.0.rc1
1128
+ #
1129
+ RubyLint.global_scope.define_constant('Errno::EKEYREJECTED::Errno') do |klass|
1130
+ end
1131
+
1132
+ ##
1133
+ # Constant: Errno::EKEYREJECTED::Strerror
1134
+ # Created: 2013-04-01 18:33:53 +0200
1135
+ # Platform: rbx 2.0.0.rc1
1136
+ #
1137
+ RubyLint.global_scope.define_constant('Errno::EKEYREJECTED::Strerror') do |klass|
1138
+ end
1139
+
1140
+ ##
1141
+ # Constant: Errno::EKEYREVOKED
1142
+ # Created: 2013-04-01 18:33:53 +0200
1143
+ # Platform: rbx 2.0.0.rc1
1144
+ #
1145
+ RubyLint.global_scope.define_constant('Errno::EKEYREVOKED') do |klass|
1146
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1147
+ end
1148
+
1149
+ ##
1150
+ # Constant: Errno::EKEYREVOKED::Errno
1151
+ # Created: 2013-04-01 18:33:53 +0200
1152
+ # Platform: rbx 2.0.0.rc1
1153
+ #
1154
+ RubyLint.global_scope.define_constant('Errno::EKEYREVOKED::Errno') do |klass|
1155
+ end
1156
+
1157
+ ##
1158
+ # Constant: Errno::EKEYREVOKED::Strerror
1159
+ # Created: 2013-04-01 18:33:53 +0200
1160
+ # Platform: rbx 2.0.0.rc1
1161
+ #
1162
+ RubyLint.global_scope.define_constant('Errno::EKEYREVOKED::Strerror') do |klass|
1163
+ end
1164
+
1165
+ ##
1166
+ # Constant: Errno::EL2HLT
1167
+ # Created: 2013-04-01 18:33:53 +0200
1168
+ # Platform: rbx 2.0.0.rc1
1169
+ #
1170
+ RubyLint.global_scope.define_constant('Errno::EL2HLT') do |klass|
1171
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1172
+ end
1173
+
1174
+ ##
1175
+ # Constant: Errno::EL2HLT::Errno
1176
+ # Created: 2013-04-01 18:33:53 +0200
1177
+ # Platform: rbx 2.0.0.rc1
1178
+ #
1179
+ RubyLint.global_scope.define_constant('Errno::EL2HLT::Errno') do |klass|
1180
+ end
1181
+
1182
+ ##
1183
+ # Constant: Errno::EL2HLT::Strerror
1184
+ # Created: 2013-04-01 18:33:53 +0200
1185
+ # Platform: rbx 2.0.0.rc1
1186
+ #
1187
+ RubyLint.global_scope.define_constant('Errno::EL2HLT::Strerror') do |klass|
1188
+ end
1189
+
1190
+ ##
1191
+ # Constant: Errno::EL2NSYNC
1192
+ # Created: 2013-04-01 18:33:53 +0200
1193
+ # Platform: rbx 2.0.0.rc1
1194
+ #
1195
+ RubyLint.global_scope.define_constant('Errno::EL2NSYNC') do |klass|
1196
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1197
+ end
1198
+
1199
+ ##
1200
+ # Constant: Errno::EL2NSYNC::Errno
1201
+ # Created: 2013-04-01 18:33:53 +0200
1202
+ # Platform: rbx 2.0.0.rc1
1203
+ #
1204
+ RubyLint.global_scope.define_constant('Errno::EL2NSYNC::Errno') do |klass|
1205
+ end
1206
+
1207
+ ##
1208
+ # Constant: Errno::EL2NSYNC::Strerror
1209
+ # Created: 2013-04-01 18:33:53 +0200
1210
+ # Platform: rbx 2.0.0.rc1
1211
+ #
1212
+ RubyLint.global_scope.define_constant('Errno::EL2NSYNC::Strerror') do |klass|
1213
+ end
1214
+
1215
+ ##
1216
+ # Constant: Errno::EL3HLT
1217
+ # Created: 2013-04-01 18:33:53 +0200
1218
+ # Platform: rbx 2.0.0.rc1
1219
+ #
1220
+ RubyLint.global_scope.define_constant('Errno::EL3HLT') do |klass|
1221
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1222
+ end
1223
+
1224
+ ##
1225
+ # Constant: Errno::EL3HLT::Errno
1226
+ # Created: 2013-04-01 18:33:53 +0200
1227
+ # Platform: rbx 2.0.0.rc1
1228
+ #
1229
+ RubyLint.global_scope.define_constant('Errno::EL3HLT::Errno') do |klass|
1230
+ end
1231
+
1232
+ ##
1233
+ # Constant: Errno::EL3HLT::Strerror
1234
+ # Created: 2013-04-01 18:33:53 +0200
1235
+ # Platform: rbx 2.0.0.rc1
1236
+ #
1237
+ RubyLint.global_scope.define_constant('Errno::EL3HLT::Strerror') do |klass|
1238
+ end
1239
+
1240
+ ##
1241
+ # Constant: Errno::EL3RST
1242
+ # Created: 2013-04-01 18:33:53 +0200
1243
+ # Platform: rbx 2.0.0.rc1
1244
+ #
1245
+ RubyLint.global_scope.define_constant('Errno::EL3RST') do |klass|
1246
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1247
+ end
1248
+
1249
+ ##
1250
+ # Constant: Errno::EL3RST::Errno
1251
+ # Created: 2013-04-01 18:33:53 +0200
1252
+ # Platform: rbx 2.0.0.rc1
1253
+ #
1254
+ RubyLint.global_scope.define_constant('Errno::EL3RST::Errno') do |klass|
1255
+ end
1256
+
1257
+ ##
1258
+ # Constant: Errno::EL3RST::Strerror
1259
+ # Created: 2013-04-01 18:33:53 +0200
1260
+ # Platform: rbx 2.0.0.rc1
1261
+ #
1262
+ RubyLint.global_scope.define_constant('Errno::EL3RST::Strerror') do |klass|
1263
+ end
1264
+
1265
+ ##
1266
+ # Constant: Errno::ELIBACC
1267
+ # Created: 2013-04-01 18:33:53 +0200
1268
+ # Platform: rbx 2.0.0.rc1
1269
+ #
1270
+ RubyLint.global_scope.define_constant('Errno::ELIBACC') do |klass|
1271
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1272
+ end
1273
+
1274
+ ##
1275
+ # Constant: Errno::ELIBACC::Errno
1276
+ # Created: 2013-04-01 18:33:53 +0200
1277
+ # Platform: rbx 2.0.0.rc1
1278
+ #
1279
+ RubyLint.global_scope.define_constant('Errno::ELIBACC::Errno') do |klass|
1280
+ end
1281
+
1282
+ ##
1283
+ # Constant: Errno::ELIBACC::Strerror
1284
+ # Created: 2013-04-01 18:33:53 +0200
1285
+ # Platform: rbx 2.0.0.rc1
1286
+ #
1287
+ RubyLint.global_scope.define_constant('Errno::ELIBACC::Strerror') do |klass|
1288
+ end
1289
+
1290
+ ##
1291
+ # Constant: Errno::ELIBBAD
1292
+ # Created: 2013-04-01 18:33:53 +0200
1293
+ # Platform: rbx 2.0.0.rc1
1294
+ #
1295
+ RubyLint.global_scope.define_constant('Errno::ELIBBAD') do |klass|
1296
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1297
+ end
1298
+
1299
+ ##
1300
+ # Constant: Errno::ELIBBAD::Errno
1301
+ # Created: 2013-04-01 18:33:53 +0200
1302
+ # Platform: rbx 2.0.0.rc1
1303
+ #
1304
+ RubyLint.global_scope.define_constant('Errno::ELIBBAD::Errno') do |klass|
1305
+ end
1306
+
1307
+ ##
1308
+ # Constant: Errno::ELIBBAD::Strerror
1309
+ # Created: 2013-04-01 18:33:53 +0200
1310
+ # Platform: rbx 2.0.0.rc1
1311
+ #
1312
+ RubyLint.global_scope.define_constant('Errno::ELIBBAD::Strerror') do |klass|
1313
+ end
1314
+
1315
+ ##
1316
+ # Constant: Errno::ELIBEXEC
1317
+ # Created: 2013-04-01 18:33:53 +0200
1318
+ # Platform: rbx 2.0.0.rc1
1319
+ #
1320
+ RubyLint.global_scope.define_constant('Errno::ELIBEXEC') do |klass|
1321
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1322
+ end
1323
+
1324
+ ##
1325
+ # Constant: Errno::ELIBEXEC::Errno
1326
+ # Created: 2013-04-01 18:33:53 +0200
1327
+ # Platform: rbx 2.0.0.rc1
1328
+ #
1329
+ RubyLint.global_scope.define_constant('Errno::ELIBEXEC::Errno') do |klass|
1330
+ end
1331
+
1332
+ ##
1333
+ # Constant: Errno::ELIBEXEC::Strerror
1334
+ # Created: 2013-04-01 18:33:53 +0200
1335
+ # Platform: rbx 2.0.0.rc1
1336
+ #
1337
+ RubyLint.global_scope.define_constant('Errno::ELIBEXEC::Strerror') do |klass|
1338
+ end
1339
+
1340
+ ##
1341
+ # Constant: Errno::ELIBMAX
1342
+ # Created: 2013-04-01 18:33:53 +0200
1343
+ # Platform: rbx 2.0.0.rc1
1344
+ #
1345
+ RubyLint.global_scope.define_constant('Errno::ELIBMAX') do |klass|
1346
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1347
+ end
1348
+
1349
+ ##
1350
+ # Constant: Errno::ELIBMAX::Errno
1351
+ # Created: 2013-04-01 18:33:53 +0200
1352
+ # Platform: rbx 2.0.0.rc1
1353
+ #
1354
+ RubyLint.global_scope.define_constant('Errno::ELIBMAX::Errno') do |klass|
1355
+ end
1356
+
1357
+ ##
1358
+ # Constant: Errno::ELIBMAX::Strerror
1359
+ # Created: 2013-04-01 18:33:53 +0200
1360
+ # Platform: rbx 2.0.0.rc1
1361
+ #
1362
+ RubyLint.global_scope.define_constant('Errno::ELIBMAX::Strerror') do |klass|
1363
+ end
1364
+
1365
+ ##
1366
+ # Constant: Errno::ELIBSCN
1367
+ # Created: 2013-04-01 18:33:53 +0200
1368
+ # Platform: rbx 2.0.0.rc1
1369
+ #
1370
+ RubyLint.global_scope.define_constant('Errno::ELIBSCN') do |klass|
1371
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1372
+ end
1373
+
1374
+ ##
1375
+ # Constant: Errno::ELIBSCN::Errno
1376
+ # Created: 2013-04-01 18:33:53 +0200
1377
+ # Platform: rbx 2.0.0.rc1
1378
+ #
1379
+ RubyLint.global_scope.define_constant('Errno::ELIBSCN::Errno') do |klass|
1380
+ end
1381
+
1382
+ ##
1383
+ # Constant: Errno::ELIBSCN::Strerror
1384
+ # Created: 2013-04-01 18:33:53 +0200
1385
+ # Platform: rbx 2.0.0.rc1
1386
+ #
1387
+ RubyLint.global_scope.define_constant('Errno::ELIBSCN::Strerror') do |klass|
1388
+ end
1389
+
1390
+ ##
1391
+ # Constant: Errno::ELNRNG
1392
+ # Created: 2013-04-01 18:33:53 +0200
1393
+ # Platform: rbx 2.0.0.rc1
1394
+ #
1395
+ RubyLint.global_scope.define_constant('Errno::ELNRNG') do |klass|
1396
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1397
+ end
1398
+
1399
+ ##
1400
+ # Constant: Errno::ELNRNG::Errno
1401
+ # Created: 2013-04-01 18:33:53 +0200
1402
+ # Platform: rbx 2.0.0.rc1
1403
+ #
1404
+ RubyLint.global_scope.define_constant('Errno::ELNRNG::Errno') do |klass|
1405
+ end
1406
+
1407
+ ##
1408
+ # Constant: Errno::ELNRNG::Strerror
1409
+ # Created: 2013-04-01 18:33:53 +0200
1410
+ # Platform: rbx 2.0.0.rc1
1411
+ #
1412
+ RubyLint.global_scope.define_constant('Errno::ELNRNG::Strerror') do |klass|
1413
+ end
1414
+
1415
+ ##
1416
+ # Constant: Errno::ELOOP
1417
+ # Created: 2013-04-01 18:33:53 +0200
1418
+ # Platform: rbx 2.0.0.rc1
1419
+ #
1420
+ RubyLint.global_scope.define_constant('Errno::ELOOP') do |klass|
1421
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1422
+ end
1423
+
1424
+ ##
1425
+ # Constant: Errno::ELOOP::Errno
1426
+ # Created: 2013-04-01 18:33:53 +0200
1427
+ # Platform: rbx 2.0.0.rc1
1428
+ #
1429
+ RubyLint.global_scope.define_constant('Errno::ELOOP::Errno') do |klass|
1430
+ end
1431
+
1432
+ ##
1433
+ # Constant: Errno::ELOOP::Strerror
1434
+ # Created: 2013-04-01 18:33:53 +0200
1435
+ # Platform: rbx 2.0.0.rc1
1436
+ #
1437
+ RubyLint.global_scope.define_constant('Errno::ELOOP::Strerror') do |klass|
1438
+ end
1439
+
1440
+ ##
1441
+ # Constant: Errno::EMEDIUMTYPE
1442
+ # Created: 2013-04-01 18:33:53 +0200
1443
+ # Platform: rbx 2.0.0.rc1
1444
+ #
1445
+ RubyLint.global_scope.define_constant('Errno::EMEDIUMTYPE') do |klass|
1446
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1447
+ end
1448
+
1449
+ ##
1450
+ # Constant: Errno::EMEDIUMTYPE::Errno
1451
+ # Created: 2013-04-01 18:33:53 +0200
1452
+ # Platform: rbx 2.0.0.rc1
1453
+ #
1454
+ RubyLint.global_scope.define_constant('Errno::EMEDIUMTYPE::Errno') do |klass|
1455
+ end
1456
+
1457
+ ##
1458
+ # Constant: Errno::EMEDIUMTYPE::Strerror
1459
+ # Created: 2013-04-01 18:33:53 +0200
1460
+ # Platform: rbx 2.0.0.rc1
1461
+ #
1462
+ RubyLint.global_scope.define_constant('Errno::EMEDIUMTYPE::Strerror') do |klass|
1463
+ end
1464
+
1465
+ ##
1466
+ # Constant: Errno::EMFILE
1467
+ # Created: 2013-04-01 18:33:53 +0200
1468
+ # Platform: rbx 2.0.0.rc1
1469
+ #
1470
+ RubyLint.global_scope.define_constant('Errno::EMFILE') do |klass|
1471
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1472
+ end
1473
+
1474
+ ##
1475
+ # Constant: Errno::EMFILE::Errno
1476
+ # Created: 2013-04-01 18:33:53 +0200
1477
+ # Platform: rbx 2.0.0.rc1
1478
+ #
1479
+ RubyLint.global_scope.define_constant('Errno::EMFILE::Errno') do |klass|
1480
+ end
1481
+
1482
+ ##
1483
+ # Constant: Errno::EMFILE::Strerror
1484
+ # Created: 2013-04-01 18:33:53 +0200
1485
+ # Platform: rbx 2.0.0.rc1
1486
+ #
1487
+ RubyLint.global_scope.define_constant('Errno::EMFILE::Strerror') do |klass|
1488
+ end
1489
+
1490
+ ##
1491
+ # Constant: Errno::EMLINK
1492
+ # Created: 2013-04-01 18:33:53 +0200
1493
+ # Platform: rbx 2.0.0.rc1
1494
+ #
1495
+ RubyLint.global_scope.define_constant('Errno::EMLINK') do |klass|
1496
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1497
+ end
1498
+
1499
+ ##
1500
+ # Constant: Errno::EMLINK::Errno
1501
+ # Created: 2013-04-01 18:33:53 +0200
1502
+ # Platform: rbx 2.0.0.rc1
1503
+ #
1504
+ RubyLint.global_scope.define_constant('Errno::EMLINK::Errno') do |klass|
1505
+ end
1506
+
1507
+ ##
1508
+ # Constant: Errno::EMLINK::Strerror
1509
+ # Created: 2013-04-01 18:33:53 +0200
1510
+ # Platform: rbx 2.0.0.rc1
1511
+ #
1512
+ RubyLint.global_scope.define_constant('Errno::EMLINK::Strerror') do |klass|
1513
+ end
1514
+
1515
+ ##
1516
+ # Constant: Errno::EMSGSIZE
1517
+ # Created: 2013-04-01 18:33:53 +0200
1518
+ # Platform: rbx 2.0.0.rc1
1519
+ #
1520
+ RubyLint.global_scope.define_constant('Errno::EMSGSIZE') do |klass|
1521
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1522
+ end
1523
+
1524
+ ##
1525
+ # Constant: Errno::EMSGSIZE::Errno
1526
+ # Created: 2013-04-01 18:33:53 +0200
1527
+ # Platform: rbx 2.0.0.rc1
1528
+ #
1529
+ RubyLint.global_scope.define_constant('Errno::EMSGSIZE::Errno') do |klass|
1530
+ end
1531
+
1532
+ ##
1533
+ # Constant: Errno::EMSGSIZE::Strerror
1534
+ # Created: 2013-04-01 18:33:53 +0200
1535
+ # Platform: rbx 2.0.0.rc1
1536
+ #
1537
+ RubyLint.global_scope.define_constant('Errno::EMSGSIZE::Strerror') do |klass|
1538
+ end
1539
+
1540
+ ##
1541
+ # Constant: Errno::EMULTIHOP
1542
+ # Created: 2013-04-01 18:33:53 +0200
1543
+ # Platform: rbx 2.0.0.rc1
1544
+ #
1545
+ RubyLint.global_scope.define_constant('Errno::EMULTIHOP') do |klass|
1546
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1547
+ end
1548
+
1549
+ ##
1550
+ # Constant: Errno::EMULTIHOP::Errno
1551
+ # Created: 2013-04-01 18:33:53 +0200
1552
+ # Platform: rbx 2.0.0.rc1
1553
+ #
1554
+ RubyLint.global_scope.define_constant('Errno::EMULTIHOP::Errno') do |klass|
1555
+ end
1556
+
1557
+ ##
1558
+ # Constant: Errno::EMULTIHOP::Strerror
1559
+ # Created: 2013-04-01 18:33:53 +0200
1560
+ # Platform: rbx 2.0.0.rc1
1561
+ #
1562
+ RubyLint.global_scope.define_constant('Errno::EMULTIHOP::Strerror') do |klass|
1563
+ end
1564
+
1565
+ ##
1566
+ # Constant: Errno::ENAMETOOLONG
1567
+ # Created: 2013-04-01 18:33:53 +0200
1568
+ # Platform: rbx 2.0.0.rc1
1569
+ #
1570
+ RubyLint.global_scope.define_constant('Errno::ENAMETOOLONG') do |klass|
1571
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1572
+ end
1573
+
1574
+ ##
1575
+ # Constant: Errno::ENAMETOOLONG::Errno
1576
+ # Created: 2013-04-01 18:33:53 +0200
1577
+ # Platform: rbx 2.0.0.rc1
1578
+ #
1579
+ RubyLint.global_scope.define_constant('Errno::ENAMETOOLONG::Errno') do |klass|
1580
+ end
1581
+
1582
+ ##
1583
+ # Constant: Errno::ENAMETOOLONG::Strerror
1584
+ # Created: 2013-04-01 18:33:53 +0200
1585
+ # Platform: rbx 2.0.0.rc1
1586
+ #
1587
+ RubyLint.global_scope.define_constant('Errno::ENAMETOOLONG::Strerror') do |klass|
1588
+ end
1589
+
1590
+ ##
1591
+ # Constant: Errno::ENAVAIL
1592
+ # Created: 2013-04-01 18:33:53 +0200
1593
+ # Platform: rbx 2.0.0.rc1
1594
+ #
1595
+ RubyLint.global_scope.define_constant('Errno::ENAVAIL') do |klass|
1596
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1597
+ end
1598
+
1599
+ ##
1600
+ # Constant: Errno::ENAVAIL::Errno
1601
+ # Created: 2013-04-01 18:33:53 +0200
1602
+ # Platform: rbx 2.0.0.rc1
1603
+ #
1604
+ RubyLint.global_scope.define_constant('Errno::ENAVAIL::Errno') do |klass|
1605
+ end
1606
+
1607
+ ##
1608
+ # Constant: Errno::ENAVAIL::Strerror
1609
+ # Created: 2013-04-01 18:33:53 +0200
1610
+ # Platform: rbx 2.0.0.rc1
1611
+ #
1612
+ RubyLint.global_scope.define_constant('Errno::ENAVAIL::Strerror') do |klass|
1613
+ end
1614
+
1615
+ ##
1616
+ # Constant: Errno::ENETDOWN
1617
+ # Created: 2013-04-01 18:33:53 +0200
1618
+ # Platform: rbx 2.0.0.rc1
1619
+ #
1620
+ RubyLint.global_scope.define_constant('Errno::ENETDOWN') do |klass|
1621
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1622
+ end
1623
+
1624
+ ##
1625
+ # Constant: Errno::ENETDOWN::Errno
1626
+ # Created: 2013-04-01 18:33:53 +0200
1627
+ # Platform: rbx 2.0.0.rc1
1628
+ #
1629
+ RubyLint.global_scope.define_constant('Errno::ENETDOWN::Errno') do |klass|
1630
+ end
1631
+
1632
+ ##
1633
+ # Constant: Errno::ENETDOWN::Strerror
1634
+ # Created: 2013-04-01 18:33:53 +0200
1635
+ # Platform: rbx 2.0.0.rc1
1636
+ #
1637
+ RubyLint.global_scope.define_constant('Errno::ENETDOWN::Strerror') do |klass|
1638
+ end
1639
+
1640
+ ##
1641
+ # Constant: Errno::ENETRESET
1642
+ # Created: 2013-04-01 18:33:53 +0200
1643
+ # Platform: rbx 2.0.0.rc1
1644
+ #
1645
+ RubyLint.global_scope.define_constant('Errno::ENETRESET') do |klass|
1646
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1647
+ end
1648
+
1649
+ ##
1650
+ # Constant: Errno::ENETRESET::Errno
1651
+ # Created: 2013-04-01 18:33:53 +0200
1652
+ # Platform: rbx 2.0.0.rc1
1653
+ #
1654
+ RubyLint.global_scope.define_constant('Errno::ENETRESET::Errno') do |klass|
1655
+ end
1656
+
1657
+ ##
1658
+ # Constant: Errno::ENETRESET::Strerror
1659
+ # Created: 2013-04-01 18:33:53 +0200
1660
+ # Platform: rbx 2.0.0.rc1
1661
+ #
1662
+ RubyLint.global_scope.define_constant('Errno::ENETRESET::Strerror') do |klass|
1663
+ end
1664
+
1665
+ ##
1666
+ # Constant: Errno::ENETUNREACH
1667
+ # Created: 2013-04-01 18:33:53 +0200
1668
+ # Platform: rbx 2.0.0.rc1
1669
+ #
1670
+ RubyLint.global_scope.define_constant('Errno::ENETUNREACH') do |klass|
1671
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1672
+ end
1673
+
1674
+ ##
1675
+ # Constant: Errno::ENETUNREACH::Errno
1676
+ # Created: 2013-04-01 18:33:53 +0200
1677
+ # Platform: rbx 2.0.0.rc1
1678
+ #
1679
+ RubyLint.global_scope.define_constant('Errno::ENETUNREACH::Errno') do |klass|
1680
+ end
1681
+
1682
+ ##
1683
+ # Constant: Errno::ENETUNREACH::Strerror
1684
+ # Created: 2013-04-01 18:33:53 +0200
1685
+ # Platform: rbx 2.0.0.rc1
1686
+ #
1687
+ RubyLint.global_scope.define_constant('Errno::ENETUNREACH::Strerror') do |klass|
1688
+ end
1689
+
1690
+ ##
1691
+ # Constant: Errno::ENFILE
1692
+ # Created: 2013-04-01 18:33:53 +0200
1693
+ # Platform: rbx 2.0.0.rc1
1694
+ #
1695
+ RubyLint.global_scope.define_constant('Errno::ENFILE') do |klass|
1696
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1697
+ end
1698
+
1699
+ ##
1700
+ # Constant: Errno::ENFILE::Errno
1701
+ # Created: 2013-04-01 18:33:53 +0200
1702
+ # Platform: rbx 2.0.0.rc1
1703
+ #
1704
+ RubyLint.global_scope.define_constant('Errno::ENFILE::Errno') do |klass|
1705
+ end
1706
+
1707
+ ##
1708
+ # Constant: Errno::ENFILE::Strerror
1709
+ # Created: 2013-04-01 18:33:53 +0200
1710
+ # Platform: rbx 2.0.0.rc1
1711
+ #
1712
+ RubyLint.global_scope.define_constant('Errno::ENFILE::Strerror') do |klass|
1713
+ end
1714
+
1715
+ ##
1716
+ # Constant: Errno::ENOANO
1717
+ # Created: 2013-04-01 18:33:53 +0200
1718
+ # Platform: rbx 2.0.0.rc1
1719
+ #
1720
+ RubyLint.global_scope.define_constant('Errno::ENOANO') do |klass|
1721
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1722
+ end
1723
+
1724
+ ##
1725
+ # Constant: Errno::ENOANO::Errno
1726
+ # Created: 2013-04-01 18:33:53 +0200
1727
+ # Platform: rbx 2.0.0.rc1
1728
+ #
1729
+ RubyLint.global_scope.define_constant('Errno::ENOANO::Errno') do |klass|
1730
+ end
1731
+
1732
+ ##
1733
+ # Constant: Errno::ENOANO::Strerror
1734
+ # Created: 2013-04-01 18:33:53 +0200
1735
+ # Platform: rbx 2.0.0.rc1
1736
+ #
1737
+ RubyLint.global_scope.define_constant('Errno::ENOANO::Strerror') do |klass|
1738
+ end
1739
+
1740
+ ##
1741
+ # Constant: Errno::ENOBUFS
1742
+ # Created: 2013-04-01 18:33:53 +0200
1743
+ # Platform: rbx 2.0.0.rc1
1744
+ #
1745
+ RubyLint.global_scope.define_constant('Errno::ENOBUFS') do |klass|
1746
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1747
+ end
1748
+
1749
+ ##
1750
+ # Constant: Errno::ENOBUFS::Errno
1751
+ # Created: 2013-04-01 18:33:53 +0200
1752
+ # Platform: rbx 2.0.0.rc1
1753
+ #
1754
+ RubyLint.global_scope.define_constant('Errno::ENOBUFS::Errno') do |klass|
1755
+ end
1756
+
1757
+ ##
1758
+ # Constant: Errno::ENOBUFS::Strerror
1759
+ # Created: 2013-04-01 18:33:53 +0200
1760
+ # Platform: rbx 2.0.0.rc1
1761
+ #
1762
+ RubyLint.global_scope.define_constant('Errno::ENOBUFS::Strerror') do |klass|
1763
+ end
1764
+
1765
+ ##
1766
+ # Constant: Errno::ENOCSI
1767
+ # Created: 2013-04-01 18:33:53 +0200
1768
+ # Platform: rbx 2.0.0.rc1
1769
+ #
1770
+ RubyLint.global_scope.define_constant('Errno::ENOCSI') do |klass|
1771
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1772
+ end
1773
+
1774
+ ##
1775
+ # Constant: Errno::ENOCSI::Errno
1776
+ # Created: 2013-04-01 18:33:53 +0200
1777
+ # Platform: rbx 2.0.0.rc1
1778
+ #
1779
+ RubyLint.global_scope.define_constant('Errno::ENOCSI::Errno') do |klass|
1780
+ end
1781
+
1782
+ ##
1783
+ # Constant: Errno::ENOCSI::Strerror
1784
+ # Created: 2013-04-01 18:33:53 +0200
1785
+ # Platform: rbx 2.0.0.rc1
1786
+ #
1787
+ RubyLint.global_scope.define_constant('Errno::ENOCSI::Strerror') do |klass|
1788
+ end
1789
+
1790
+ ##
1791
+ # Constant: Errno::ENODATA
1792
+ # Created: 2013-04-01 18:33:53 +0200
1793
+ # Platform: rbx 2.0.0.rc1
1794
+ #
1795
+ RubyLint.global_scope.define_constant('Errno::ENODATA') do |klass|
1796
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1797
+ end
1798
+
1799
+ ##
1800
+ # Constant: Errno::ENODATA::Errno
1801
+ # Created: 2013-04-01 18:33:53 +0200
1802
+ # Platform: rbx 2.0.0.rc1
1803
+ #
1804
+ RubyLint.global_scope.define_constant('Errno::ENODATA::Errno') do |klass|
1805
+ end
1806
+
1807
+ ##
1808
+ # Constant: Errno::ENODATA::Strerror
1809
+ # Created: 2013-04-01 18:33:53 +0200
1810
+ # Platform: rbx 2.0.0.rc1
1811
+ #
1812
+ RubyLint.global_scope.define_constant('Errno::ENODATA::Strerror') do |klass|
1813
+ end
1814
+
1815
+ ##
1816
+ # Constant: Errno::ENODEV
1817
+ # Created: 2013-04-01 18:33:53 +0200
1818
+ # Platform: rbx 2.0.0.rc1
1819
+ #
1820
+ RubyLint.global_scope.define_constant('Errno::ENODEV') do |klass|
1821
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1822
+ end
1823
+
1824
+ ##
1825
+ # Constant: Errno::ENODEV::Errno
1826
+ # Created: 2013-04-01 18:33:53 +0200
1827
+ # Platform: rbx 2.0.0.rc1
1828
+ #
1829
+ RubyLint.global_scope.define_constant('Errno::ENODEV::Errno') do |klass|
1830
+ end
1831
+
1832
+ ##
1833
+ # Constant: Errno::ENODEV::Strerror
1834
+ # Created: 2013-04-01 18:33:53 +0200
1835
+ # Platform: rbx 2.0.0.rc1
1836
+ #
1837
+ RubyLint.global_scope.define_constant('Errno::ENODEV::Strerror') do |klass|
1838
+ end
1839
+
1840
+ ##
1841
+ # Constant: Errno::ENOENT
1842
+ # Created: 2013-04-01 18:33:53 +0200
1843
+ # Platform: rbx 2.0.0.rc1
1844
+ #
1845
+ RubyLint.global_scope.define_constant('Errno::ENOENT') do |klass|
1846
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1847
+ end
1848
+
1849
+ ##
1850
+ # Constant: Errno::ENOENT::Errno
1851
+ # Created: 2013-04-01 18:33:53 +0200
1852
+ # Platform: rbx 2.0.0.rc1
1853
+ #
1854
+ RubyLint.global_scope.define_constant('Errno::ENOENT::Errno') do |klass|
1855
+ end
1856
+
1857
+ ##
1858
+ # Constant: Errno::ENOENT::Strerror
1859
+ # Created: 2013-04-01 18:33:53 +0200
1860
+ # Platform: rbx 2.0.0.rc1
1861
+ #
1862
+ RubyLint.global_scope.define_constant('Errno::ENOENT::Strerror') do |klass|
1863
+ end
1864
+
1865
+ ##
1866
+ # Constant: Errno::ENOEXEC
1867
+ # Created: 2013-04-01 18:33:53 +0200
1868
+ # Platform: rbx 2.0.0.rc1
1869
+ #
1870
+ RubyLint.global_scope.define_constant('Errno::ENOEXEC') do |klass|
1871
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1872
+ end
1873
+
1874
+ ##
1875
+ # Constant: Errno::ENOEXEC::Errno
1876
+ # Created: 2013-04-01 18:33:53 +0200
1877
+ # Platform: rbx 2.0.0.rc1
1878
+ #
1879
+ RubyLint.global_scope.define_constant('Errno::ENOEXEC::Errno') do |klass|
1880
+ end
1881
+
1882
+ ##
1883
+ # Constant: Errno::ENOEXEC::Strerror
1884
+ # Created: 2013-04-01 18:33:53 +0200
1885
+ # Platform: rbx 2.0.0.rc1
1886
+ #
1887
+ RubyLint.global_scope.define_constant('Errno::ENOEXEC::Strerror') do |klass|
1888
+ end
1889
+
1890
+ ##
1891
+ # Constant: Errno::ENOKEY
1892
+ # Created: 2013-04-01 18:33:53 +0200
1893
+ # Platform: rbx 2.0.0.rc1
1894
+ #
1895
+ RubyLint.global_scope.define_constant('Errno::ENOKEY') do |klass|
1896
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1897
+ end
1898
+
1899
+ ##
1900
+ # Constant: Errno::ENOKEY::Errno
1901
+ # Created: 2013-04-01 18:33:53 +0200
1902
+ # Platform: rbx 2.0.0.rc1
1903
+ #
1904
+ RubyLint.global_scope.define_constant('Errno::ENOKEY::Errno') do |klass|
1905
+ end
1906
+
1907
+ ##
1908
+ # Constant: Errno::ENOKEY::Strerror
1909
+ # Created: 2013-04-01 18:33:53 +0200
1910
+ # Platform: rbx 2.0.0.rc1
1911
+ #
1912
+ RubyLint.global_scope.define_constant('Errno::ENOKEY::Strerror') do |klass|
1913
+ end
1914
+
1915
+ ##
1916
+ # Constant: Errno::ENOLCK
1917
+ # Created: 2013-04-01 18:33:53 +0200
1918
+ # Platform: rbx 2.0.0.rc1
1919
+ #
1920
+ RubyLint.global_scope.define_constant('Errno::ENOLCK') do |klass|
1921
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1922
+ end
1923
+
1924
+ ##
1925
+ # Constant: Errno::ENOLCK::Errno
1926
+ # Created: 2013-04-01 18:33:53 +0200
1927
+ # Platform: rbx 2.0.0.rc1
1928
+ #
1929
+ RubyLint.global_scope.define_constant('Errno::ENOLCK::Errno') do |klass|
1930
+ end
1931
+
1932
+ ##
1933
+ # Constant: Errno::ENOLCK::Strerror
1934
+ # Created: 2013-04-01 18:33:53 +0200
1935
+ # Platform: rbx 2.0.0.rc1
1936
+ #
1937
+ RubyLint.global_scope.define_constant('Errno::ENOLCK::Strerror') do |klass|
1938
+ end
1939
+
1940
+ ##
1941
+ # Constant: Errno::ENOLINK
1942
+ # Created: 2013-04-01 18:33:53 +0200
1943
+ # Platform: rbx 2.0.0.rc1
1944
+ #
1945
+ RubyLint.global_scope.define_constant('Errno::ENOLINK') do |klass|
1946
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1947
+ end
1948
+
1949
+ ##
1950
+ # Constant: Errno::ENOLINK::Errno
1951
+ # Created: 2013-04-01 18:33:53 +0200
1952
+ # Platform: rbx 2.0.0.rc1
1953
+ #
1954
+ RubyLint.global_scope.define_constant('Errno::ENOLINK::Errno') do |klass|
1955
+ end
1956
+
1957
+ ##
1958
+ # Constant: Errno::ENOLINK::Strerror
1959
+ # Created: 2013-04-01 18:33:53 +0200
1960
+ # Platform: rbx 2.0.0.rc1
1961
+ #
1962
+ RubyLint.global_scope.define_constant('Errno::ENOLINK::Strerror') do |klass|
1963
+ end
1964
+
1965
+ ##
1966
+ # Constant: Errno::ENOMEDIUM
1967
+ # Created: 2013-04-01 18:33:53 +0200
1968
+ # Platform: rbx 2.0.0.rc1
1969
+ #
1970
+ RubyLint.global_scope.define_constant('Errno::ENOMEDIUM') do |klass|
1971
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1972
+ end
1973
+
1974
+ ##
1975
+ # Constant: Errno::ENOMEDIUM::Errno
1976
+ # Created: 2013-04-01 18:33:53 +0200
1977
+ # Platform: rbx 2.0.0.rc1
1978
+ #
1979
+ RubyLint.global_scope.define_constant('Errno::ENOMEDIUM::Errno') do |klass|
1980
+ end
1981
+
1982
+ ##
1983
+ # Constant: Errno::ENOMEDIUM::Strerror
1984
+ # Created: 2013-04-01 18:33:53 +0200
1985
+ # Platform: rbx 2.0.0.rc1
1986
+ #
1987
+ RubyLint.global_scope.define_constant('Errno::ENOMEDIUM::Strerror') do |klass|
1988
+ end
1989
+
1990
+ ##
1991
+ # Constant: Errno::ENOMEM
1992
+ # Created: 2013-04-01 18:33:53 +0200
1993
+ # Platform: rbx 2.0.0.rc1
1994
+ #
1995
+ RubyLint.global_scope.define_constant('Errno::ENOMEM') do |klass|
1996
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
1997
+ end
1998
+
1999
+ ##
2000
+ # Constant: Errno::ENOMEM::Errno
2001
+ # Created: 2013-04-01 18:33:53 +0200
2002
+ # Platform: rbx 2.0.0.rc1
2003
+ #
2004
+ RubyLint.global_scope.define_constant('Errno::ENOMEM::Errno') do |klass|
2005
+ end
2006
+
2007
+ ##
2008
+ # Constant: Errno::ENOMEM::Strerror
2009
+ # Created: 2013-04-01 18:33:53 +0200
2010
+ # Platform: rbx 2.0.0.rc1
2011
+ #
2012
+ RubyLint.global_scope.define_constant('Errno::ENOMEM::Strerror') do |klass|
2013
+ end
2014
+
2015
+ ##
2016
+ # Constant: Errno::ENOMSG
2017
+ # Created: 2013-04-01 18:33:53 +0200
2018
+ # Platform: rbx 2.0.0.rc1
2019
+ #
2020
+ RubyLint.global_scope.define_constant('Errno::ENOMSG') do |klass|
2021
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2022
+ end
2023
+
2024
+ ##
2025
+ # Constant: Errno::ENOMSG::Errno
2026
+ # Created: 2013-04-01 18:33:53 +0200
2027
+ # Platform: rbx 2.0.0.rc1
2028
+ #
2029
+ RubyLint.global_scope.define_constant('Errno::ENOMSG::Errno') do |klass|
2030
+ end
2031
+
2032
+ ##
2033
+ # Constant: Errno::ENOMSG::Strerror
2034
+ # Created: 2013-04-01 18:33:53 +0200
2035
+ # Platform: rbx 2.0.0.rc1
2036
+ #
2037
+ RubyLint.global_scope.define_constant('Errno::ENOMSG::Strerror') do |klass|
2038
+ end
2039
+
2040
+ ##
2041
+ # Constant: Errno::ENONET
2042
+ # Created: 2013-04-01 18:33:53 +0200
2043
+ # Platform: rbx 2.0.0.rc1
2044
+ #
2045
+ RubyLint.global_scope.define_constant('Errno::ENONET') do |klass|
2046
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2047
+ end
2048
+
2049
+ ##
2050
+ # Constant: Errno::ENONET::Errno
2051
+ # Created: 2013-04-01 18:33:53 +0200
2052
+ # Platform: rbx 2.0.0.rc1
2053
+ #
2054
+ RubyLint.global_scope.define_constant('Errno::ENONET::Errno') do |klass|
2055
+ end
2056
+
2057
+ ##
2058
+ # Constant: Errno::ENONET::Strerror
2059
+ # Created: 2013-04-01 18:33:53 +0200
2060
+ # Platform: rbx 2.0.0.rc1
2061
+ #
2062
+ RubyLint.global_scope.define_constant('Errno::ENONET::Strerror') do |klass|
2063
+ end
2064
+
2065
+ ##
2066
+ # Constant: Errno::ENOPKG
2067
+ # Created: 2013-04-01 18:33:53 +0200
2068
+ # Platform: rbx 2.0.0.rc1
2069
+ #
2070
+ RubyLint.global_scope.define_constant('Errno::ENOPKG') do |klass|
2071
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2072
+ end
2073
+
2074
+ ##
2075
+ # Constant: Errno::ENOPKG::Errno
2076
+ # Created: 2013-04-01 18:33:53 +0200
2077
+ # Platform: rbx 2.0.0.rc1
2078
+ #
2079
+ RubyLint.global_scope.define_constant('Errno::ENOPKG::Errno') do |klass|
2080
+ end
2081
+
2082
+ ##
2083
+ # Constant: Errno::ENOPKG::Strerror
2084
+ # Created: 2013-04-01 18:33:53 +0200
2085
+ # Platform: rbx 2.0.0.rc1
2086
+ #
2087
+ RubyLint.global_scope.define_constant('Errno::ENOPKG::Strerror') do |klass|
2088
+ end
2089
+
2090
+ ##
2091
+ # Constant: Errno::ENOPROTOOPT
2092
+ # Created: 2013-04-01 18:33:53 +0200
2093
+ # Platform: rbx 2.0.0.rc1
2094
+ #
2095
+ RubyLint.global_scope.define_constant('Errno::ENOPROTOOPT') do |klass|
2096
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2097
+ end
2098
+
2099
+ ##
2100
+ # Constant: Errno::ENOPROTOOPT::Errno
2101
+ # Created: 2013-04-01 18:33:53 +0200
2102
+ # Platform: rbx 2.0.0.rc1
2103
+ #
2104
+ RubyLint.global_scope.define_constant('Errno::ENOPROTOOPT::Errno') do |klass|
2105
+ end
2106
+
2107
+ ##
2108
+ # Constant: Errno::ENOPROTOOPT::Strerror
2109
+ # Created: 2013-04-01 18:33:53 +0200
2110
+ # Platform: rbx 2.0.0.rc1
2111
+ #
2112
+ RubyLint.global_scope.define_constant('Errno::ENOPROTOOPT::Strerror') do |klass|
2113
+ end
2114
+
2115
+ ##
2116
+ # Constant: Errno::ENOSPC
2117
+ # Created: 2013-04-01 18:33:53 +0200
2118
+ # Platform: rbx 2.0.0.rc1
2119
+ #
2120
+ RubyLint.global_scope.define_constant('Errno::ENOSPC') do |klass|
2121
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2122
+ end
2123
+
2124
+ ##
2125
+ # Constant: Errno::ENOSPC::Errno
2126
+ # Created: 2013-04-01 18:33:53 +0200
2127
+ # Platform: rbx 2.0.0.rc1
2128
+ #
2129
+ RubyLint.global_scope.define_constant('Errno::ENOSPC::Errno') do |klass|
2130
+ end
2131
+
2132
+ ##
2133
+ # Constant: Errno::ENOSPC::Strerror
2134
+ # Created: 2013-04-01 18:33:53 +0200
2135
+ # Platform: rbx 2.0.0.rc1
2136
+ #
2137
+ RubyLint.global_scope.define_constant('Errno::ENOSPC::Strerror') do |klass|
2138
+ end
2139
+
2140
+ ##
2141
+ # Constant: Errno::ENOSR
2142
+ # Created: 2013-04-01 18:33:53 +0200
2143
+ # Platform: rbx 2.0.0.rc1
2144
+ #
2145
+ RubyLint.global_scope.define_constant('Errno::ENOSR') do |klass|
2146
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2147
+ end
2148
+
2149
+ ##
2150
+ # Constant: Errno::ENOSR::Errno
2151
+ # Created: 2013-04-01 18:33:53 +0200
2152
+ # Platform: rbx 2.0.0.rc1
2153
+ #
2154
+ RubyLint.global_scope.define_constant('Errno::ENOSR::Errno') do |klass|
2155
+ end
2156
+
2157
+ ##
2158
+ # Constant: Errno::ENOSR::Strerror
2159
+ # Created: 2013-04-01 18:33:53 +0200
2160
+ # Platform: rbx 2.0.0.rc1
2161
+ #
2162
+ RubyLint.global_scope.define_constant('Errno::ENOSR::Strerror') do |klass|
2163
+ end
2164
+
2165
+ ##
2166
+ # Constant: Errno::ENOSTR
2167
+ # Created: 2013-04-01 18:33:53 +0200
2168
+ # Platform: rbx 2.0.0.rc1
2169
+ #
2170
+ RubyLint.global_scope.define_constant('Errno::ENOSTR') do |klass|
2171
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2172
+ end
2173
+
2174
+ ##
2175
+ # Constant: Errno::ENOSTR::Errno
2176
+ # Created: 2013-04-01 18:33:53 +0200
2177
+ # Platform: rbx 2.0.0.rc1
2178
+ #
2179
+ RubyLint.global_scope.define_constant('Errno::ENOSTR::Errno') do |klass|
2180
+ end
2181
+
2182
+ ##
2183
+ # Constant: Errno::ENOSTR::Strerror
2184
+ # Created: 2013-04-01 18:33:53 +0200
2185
+ # Platform: rbx 2.0.0.rc1
2186
+ #
2187
+ RubyLint.global_scope.define_constant('Errno::ENOSTR::Strerror') do |klass|
2188
+ end
2189
+
2190
+ ##
2191
+ # Constant: Errno::ENOSYS
2192
+ # Created: 2013-04-01 18:33:53 +0200
2193
+ # Platform: rbx 2.0.0.rc1
2194
+ #
2195
+ RubyLint.global_scope.define_constant('Errno::ENOSYS') do |klass|
2196
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2197
+ end
2198
+
2199
+ ##
2200
+ # Constant: Errno::ENOSYS::Errno
2201
+ # Created: 2013-04-01 18:33:53 +0200
2202
+ # Platform: rbx 2.0.0.rc1
2203
+ #
2204
+ RubyLint.global_scope.define_constant('Errno::ENOSYS::Errno') do |klass|
2205
+ end
2206
+
2207
+ ##
2208
+ # Constant: Errno::ENOSYS::Strerror
2209
+ # Created: 2013-04-01 18:33:53 +0200
2210
+ # Platform: rbx 2.0.0.rc1
2211
+ #
2212
+ RubyLint.global_scope.define_constant('Errno::ENOSYS::Strerror') do |klass|
2213
+ end
2214
+
2215
+ ##
2216
+ # Constant: Errno::ENOTBLK
2217
+ # Created: 2013-04-01 18:33:53 +0200
2218
+ # Platform: rbx 2.0.0.rc1
2219
+ #
2220
+ RubyLint.global_scope.define_constant('Errno::ENOTBLK') do |klass|
2221
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2222
+ end
2223
+
2224
+ ##
2225
+ # Constant: Errno::ENOTBLK::Errno
2226
+ # Created: 2013-04-01 18:33:53 +0200
2227
+ # Platform: rbx 2.0.0.rc1
2228
+ #
2229
+ RubyLint.global_scope.define_constant('Errno::ENOTBLK::Errno') do |klass|
2230
+ end
2231
+
2232
+ ##
2233
+ # Constant: Errno::ENOTBLK::Strerror
2234
+ # Created: 2013-04-01 18:33:53 +0200
2235
+ # Platform: rbx 2.0.0.rc1
2236
+ #
2237
+ RubyLint.global_scope.define_constant('Errno::ENOTBLK::Strerror') do |klass|
2238
+ end
2239
+
2240
+ ##
2241
+ # Constant: Errno::ENOTCONN
2242
+ # Created: 2013-04-01 18:33:53 +0200
2243
+ # Platform: rbx 2.0.0.rc1
2244
+ #
2245
+ RubyLint.global_scope.define_constant('Errno::ENOTCONN') do |klass|
2246
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2247
+ end
2248
+
2249
+ ##
2250
+ # Constant: Errno::ENOTCONN::Errno
2251
+ # Created: 2013-04-01 18:33:53 +0200
2252
+ # Platform: rbx 2.0.0.rc1
2253
+ #
2254
+ RubyLint.global_scope.define_constant('Errno::ENOTCONN::Errno') do |klass|
2255
+ end
2256
+
2257
+ ##
2258
+ # Constant: Errno::ENOTCONN::Strerror
2259
+ # Created: 2013-04-01 18:33:53 +0200
2260
+ # Platform: rbx 2.0.0.rc1
2261
+ #
2262
+ RubyLint.global_scope.define_constant('Errno::ENOTCONN::Strerror') do |klass|
2263
+ end
2264
+
2265
+ ##
2266
+ # Constant: Errno::ENOTDIR
2267
+ # Created: 2013-04-01 18:33:53 +0200
2268
+ # Platform: rbx 2.0.0.rc1
2269
+ #
2270
+ RubyLint.global_scope.define_constant('Errno::ENOTDIR') do |klass|
2271
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2272
+ end
2273
+
2274
+ ##
2275
+ # Constant: Errno::ENOTDIR::Errno
2276
+ # Created: 2013-04-01 18:33:53 +0200
2277
+ # Platform: rbx 2.0.0.rc1
2278
+ #
2279
+ RubyLint.global_scope.define_constant('Errno::ENOTDIR::Errno') do |klass|
2280
+ end
2281
+
2282
+ ##
2283
+ # Constant: Errno::ENOTDIR::Strerror
2284
+ # Created: 2013-04-01 18:33:53 +0200
2285
+ # Platform: rbx 2.0.0.rc1
2286
+ #
2287
+ RubyLint.global_scope.define_constant('Errno::ENOTDIR::Strerror') do |klass|
2288
+ end
2289
+
2290
+ ##
2291
+ # Constant: Errno::ENOTEMPTY
2292
+ # Created: 2013-04-01 18:33:53 +0200
2293
+ # Platform: rbx 2.0.0.rc1
2294
+ #
2295
+ RubyLint.global_scope.define_constant('Errno::ENOTEMPTY') do |klass|
2296
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2297
+ end
2298
+
2299
+ ##
2300
+ # Constant: Errno::ENOTEMPTY::Errno
2301
+ # Created: 2013-04-01 18:33:53 +0200
2302
+ # Platform: rbx 2.0.0.rc1
2303
+ #
2304
+ RubyLint.global_scope.define_constant('Errno::ENOTEMPTY::Errno') do |klass|
2305
+ end
2306
+
2307
+ ##
2308
+ # Constant: Errno::ENOTEMPTY::Strerror
2309
+ # Created: 2013-04-01 18:33:53 +0200
2310
+ # Platform: rbx 2.0.0.rc1
2311
+ #
2312
+ RubyLint.global_scope.define_constant('Errno::ENOTEMPTY::Strerror') do |klass|
2313
+ end
2314
+
2315
+ ##
2316
+ # Constant: Errno::ENOTNAM
2317
+ # Created: 2013-04-01 18:33:53 +0200
2318
+ # Platform: rbx 2.0.0.rc1
2319
+ #
2320
+ RubyLint.global_scope.define_constant('Errno::ENOTNAM') do |klass|
2321
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2322
+ end
2323
+
2324
+ ##
2325
+ # Constant: Errno::ENOTNAM::Errno
2326
+ # Created: 2013-04-01 18:33:53 +0200
2327
+ # Platform: rbx 2.0.0.rc1
2328
+ #
2329
+ RubyLint.global_scope.define_constant('Errno::ENOTNAM::Errno') do |klass|
2330
+ end
2331
+
2332
+ ##
2333
+ # Constant: Errno::ENOTNAM::Strerror
2334
+ # Created: 2013-04-01 18:33:53 +0200
2335
+ # Platform: rbx 2.0.0.rc1
2336
+ #
2337
+ RubyLint.global_scope.define_constant('Errno::ENOTNAM::Strerror') do |klass|
2338
+ end
2339
+
2340
+ ##
2341
+ # Constant: Errno::ENOTRECOVERABLE
2342
+ # Created: 2013-04-01 18:33:53 +0200
2343
+ # Platform: rbx 2.0.0.rc1
2344
+ #
2345
+ RubyLint.global_scope.define_constant('Errno::ENOTRECOVERABLE') do |klass|
2346
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2347
+ end
2348
+
2349
+ ##
2350
+ # Constant: Errno::ENOTRECOVERABLE::Errno
2351
+ # Created: 2013-04-01 18:33:53 +0200
2352
+ # Platform: rbx 2.0.0.rc1
2353
+ #
2354
+ RubyLint.global_scope.define_constant('Errno::ENOTRECOVERABLE::Errno') do |klass|
2355
+ end
2356
+
2357
+ ##
2358
+ # Constant: Errno::ENOTRECOVERABLE::Strerror
2359
+ # Created: 2013-04-01 18:33:53 +0200
2360
+ # Platform: rbx 2.0.0.rc1
2361
+ #
2362
+ RubyLint.global_scope.define_constant('Errno::ENOTRECOVERABLE::Strerror') do |klass|
2363
+ end
2364
+
2365
+ ##
2366
+ # Constant: Errno::ENOTSOCK
2367
+ # Created: 2013-04-01 18:33:53 +0200
2368
+ # Platform: rbx 2.0.0.rc1
2369
+ #
2370
+ RubyLint.global_scope.define_constant('Errno::ENOTSOCK') do |klass|
2371
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2372
+ end
2373
+
2374
+ ##
2375
+ # Constant: Errno::ENOTSOCK::Errno
2376
+ # Created: 2013-04-01 18:33:53 +0200
2377
+ # Platform: rbx 2.0.0.rc1
2378
+ #
2379
+ RubyLint.global_scope.define_constant('Errno::ENOTSOCK::Errno') do |klass|
2380
+ end
2381
+
2382
+ ##
2383
+ # Constant: Errno::ENOTSOCK::Strerror
2384
+ # Created: 2013-04-01 18:33:53 +0200
2385
+ # Platform: rbx 2.0.0.rc1
2386
+ #
2387
+ RubyLint.global_scope.define_constant('Errno::ENOTSOCK::Strerror') do |klass|
2388
+ end
2389
+
2390
+ ##
2391
+ # Constant: Errno::ENOTTY
2392
+ # Created: 2013-04-01 18:33:53 +0200
2393
+ # Platform: rbx 2.0.0.rc1
2394
+ #
2395
+ RubyLint.global_scope.define_constant('Errno::ENOTTY') do |klass|
2396
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2397
+ end
2398
+
2399
+ ##
2400
+ # Constant: Errno::ENOTTY::Errno
2401
+ # Created: 2013-04-01 18:33:53 +0200
2402
+ # Platform: rbx 2.0.0.rc1
2403
+ #
2404
+ RubyLint.global_scope.define_constant('Errno::ENOTTY::Errno') do |klass|
2405
+ end
2406
+
2407
+ ##
2408
+ # Constant: Errno::ENOTTY::Strerror
2409
+ # Created: 2013-04-01 18:33:53 +0200
2410
+ # Platform: rbx 2.0.0.rc1
2411
+ #
2412
+ RubyLint.global_scope.define_constant('Errno::ENOTTY::Strerror') do |klass|
2413
+ end
2414
+
2415
+ ##
2416
+ # Constant: Errno::ENOTUNIQ
2417
+ # Created: 2013-04-01 18:33:53 +0200
2418
+ # Platform: rbx 2.0.0.rc1
2419
+ #
2420
+ RubyLint.global_scope.define_constant('Errno::ENOTUNIQ') do |klass|
2421
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2422
+ end
2423
+
2424
+ ##
2425
+ # Constant: Errno::ENOTUNIQ::Errno
2426
+ # Created: 2013-04-01 18:33:53 +0200
2427
+ # Platform: rbx 2.0.0.rc1
2428
+ #
2429
+ RubyLint.global_scope.define_constant('Errno::ENOTUNIQ::Errno') do |klass|
2430
+ end
2431
+
2432
+ ##
2433
+ # Constant: Errno::ENOTUNIQ::Strerror
2434
+ # Created: 2013-04-01 18:33:53 +0200
2435
+ # Platform: rbx 2.0.0.rc1
2436
+ #
2437
+ RubyLint.global_scope.define_constant('Errno::ENOTUNIQ::Strerror') do |klass|
2438
+ end
2439
+
2440
+ ##
2441
+ # Constant: Errno::ENXIO
2442
+ # Created: 2013-04-01 18:33:53 +0200
2443
+ # Platform: rbx 2.0.0.rc1
2444
+ #
2445
+ RubyLint.global_scope.define_constant('Errno::ENXIO') do |klass|
2446
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2447
+ end
2448
+
2449
+ ##
2450
+ # Constant: Errno::ENXIO::Errno
2451
+ # Created: 2013-04-01 18:33:53 +0200
2452
+ # Platform: rbx 2.0.0.rc1
2453
+ #
2454
+ RubyLint.global_scope.define_constant('Errno::ENXIO::Errno') do |klass|
2455
+ end
2456
+
2457
+ ##
2458
+ # Constant: Errno::ENXIO::Strerror
2459
+ # Created: 2013-04-01 18:33:53 +0200
2460
+ # Platform: rbx 2.0.0.rc1
2461
+ #
2462
+ RubyLint.global_scope.define_constant('Errno::ENXIO::Strerror') do |klass|
2463
+ end
2464
+
2465
+ ##
2466
+ # Constant: Errno::EOPNOTSUPP
2467
+ # Created: 2013-04-01 18:33:53 +0200
2468
+ # Platform: rbx 2.0.0.rc1
2469
+ #
2470
+ RubyLint.global_scope.define_constant('Errno::EOPNOTSUPP') do |klass|
2471
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2472
+ end
2473
+
2474
+ ##
2475
+ # Constant: Errno::EOPNOTSUPP::Errno
2476
+ # Created: 2013-04-01 18:33:53 +0200
2477
+ # Platform: rbx 2.0.0.rc1
2478
+ #
2479
+ RubyLint.global_scope.define_constant('Errno::EOPNOTSUPP::Errno') do |klass|
2480
+ end
2481
+
2482
+ ##
2483
+ # Constant: Errno::EOPNOTSUPP::Strerror
2484
+ # Created: 2013-04-01 18:33:53 +0200
2485
+ # Platform: rbx 2.0.0.rc1
2486
+ #
2487
+ RubyLint.global_scope.define_constant('Errno::EOPNOTSUPP::Strerror') do |klass|
2488
+ end
2489
+
2490
+ ##
2491
+ # Constant: Errno::EOVERFLOW
2492
+ # Created: 2013-04-01 18:33:53 +0200
2493
+ # Platform: rbx 2.0.0.rc1
2494
+ #
2495
+ RubyLint.global_scope.define_constant('Errno::EOVERFLOW') do |klass|
2496
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2497
+ end
2498
+
2499
+ ##
2500
+ # Constant: Errno::EOVERFLOW::Errno
2501
+ # Created: 2013-04-01 18:33:53 +0200
2502
+ # Platform: rbx 2.0.0.rc1
2503
+ #
2504
+ RubyLint.global_scope.define_constant('Errno::EOVERFLOW::Errno') do |klass|
2505
+ end
2506
+
2507
+ ##
2508
+ # Constant: Errno::EOVERFLOW::Strerror
2509
+ # Created: 2013-04-01 18:33:53 +0200
2510
+ # Platform: rbx 2.0.0.rc1
2511
+ #
2512
+ RubyLint.global_scope.define_constant('Errno::EOVERFLOW::Strerror') do |klass|
2513
+ end
2514
+
2515
+ ##
2516
+ # Constant: Errno::EOWNERDEAD
2517
+ # Created: 2013-04-01 18:33:53 +0200
2518
+ # Platform: rbx 2.0.0.rc1
2519
+ #
2520
+ RubyLint.global_scope.define_constant('Errno::EOWNERDEAD') do |klass|
2521
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2522
+ end
2523
+
2524
+ ##
2525
+ # Constant: Errno::EOWNERDEAD::Errno
2526
+ # Created: 2013-04-01 18:33:53 +0200
2527
+ # Platform: rbx 2.0.0.rc1
2528
+ #
2529
+ RubyLint.global_scope.define_constant('Errno::EOWNERDEAD::Errno') do |klass|
2530
+ end
2531
+
2532
+ ##
2533
+ # Constant: Errno::EOWNERDEAD::Strerror
2534
+ # Created: 2013-04-01 18:33:53 +0200
2535
+ # Platform: rbx 2.0.0.rc1
2536
+ #
2537
+ RubyLint.global_scope.define_constant('Errno::EOWNERDEAD::Strerror') do |klass|
2538
+ end
2539
+
2540
+ ##
2541
+ # Constant: Errno::EPERM
2542
+ # Created: 2013-04-01 18:33:53 +0200
2543
+ # Platform: rbx 2.0.0.rc1
2544
+ #
2545
+ RubyLint.global_scope.define_constant('Errno::EPERM') do |klass|
2546
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2547
+ end
2548
+
2549
+ ##
2550
+ # Constant: Errno::EPERM::Errno
2551
+ # Created: 2013-04-01 18:33:53 +0200
2552
+ # Platform: rbx 2.0.0.rc1
2553
+ #
2554
+ RubyLint.global_scope.define_constant('Errno::EPERM::Errno') do |klass|
2555
+ end
2556
+
2557
+ ##
2558
+ # Constant: Errno::EPERM::Strerror
2559
+ # Created: 2013-04-01 18:33:53 +0200
2560
+ # Platform: rbx 2.0.0.rc1
2561
+ #
2562
+ RubyLint.global_scope.define_constant('Errno::EPERM::Strerror') do |klass|
2563
+ end
2564
+
2565
+ ##
2566
+ # Constant: Errno::EPFNOSUPPORT
2567
+ # Created: 2013-04-01 18:33:53 +0200
2568
+ # Platform: rbx 2.0.0.rc1
2569
+ #
2570
+ RubyLint.global_scope.define_constant('Errno::EPFNOSUPPORT') do |klass|
2571
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2572
+ end
2573
+
2574
+ ##
2575
+ # Constant: Errno::EPFNOSUPPORT::Errno
2576
+ # Created: 2013-04-01 18:33:53 +0200
2577
+ # Platform: rbx 2.0.0.rc1
2578
+ #
2579
+ RubyLint.global_scope.define_constant('Errno::EPFNOSUPPORT::Errno') do |klass|
2580
+ end
2581
+
2582
+ ##
2583
+ # Constant: Errno::EPFNOSUPPORT::Strerror
2584
+ # Created: 2013-04-01 18:33:53 +0200
2585
+ # Platform: rbx 2.0.0.rc1
2586
+ #
2587
+ RubyLint.global_scope.define_constant('Errno::EPFNOSUPPORT::Strerror') do |klass|
2588
+ end
2589
+
2590
+ ##
2591
+ # Constant: Errno::EPIPE
2592
+ # Created: 2013-04-01 18:33:53 +0200
2593
+ # Platform: rbx 2.0.0.rc1
2594
+ #
2595
+ RubyLint.global_scope.define_constant('Errno::EPIPE') do |klass|
2596
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2597
+ end
2598
+
2599
+ ##
2600
+ # Constant: Errno::EPIPE::Errno
2601
+ # Created: 2013-04-01 18:33:53 +0200
2602
+ # Platform: rbx 2.0.0.rc1
2603
+ #
2604
+ RubyLint.global_scope.define_constant('Errno::EPIPE::Errno') do |klass|
2605
+ end
2606
+
2607
+ ##
2608
+ # Constant: Errno::EPIPE::Strerror
2609
+ # Created: 2013-04-01 18:33:53 +0200
2610
+ # Platform: rbx 2.0.0.rc1
2611
+ #
2612
+ RubyLint.global_scope.define_constant('Errno::EPIPE::Strerror') do |klass|
2613
+ end
2614
+
2615
+ ##
2616
+ # Constant: Errno::EPROTO
2617
+ # Created: 2013-04-01 18:33:53 +0200
2618
+ # Platform: rbx 2.0.0.rc1
2619
+ #
2620
+ RubyLint.global_scope.define_constant('Errno::EPROTO') do |klass|
2621
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2622
+ end
2623
+
2624
+ ##
2625
+ # Constant: Errno::EPROTO::Errno
2626
+ # Created: 2013-04-01 18:33:53 +0200
2627
+ # Platform: rbx 2.0.0.rc1
2628
+ #
2629
+ RubyLint.global_scope.define_constant('Errno::EPROTO::Errno') do |klass|
2630
+ end
2631
+
2632
+ ##
2633
+ # Constant: Errno::EPROTO::Strerror
2634
+ # Created: 2013-04-01 18:33:53 +0200
2635
+ # Platform: rbx 2.0.0.rc1
2636
+ #
2637
+ RubyLint.global_scope.define_constant('Errno::EPROTO::Strerror') do |klass|
2638
+ end
2639
+
2640
+ ##
2641
+ # Constant: Errno::EPROTONOSUPPORT
2642
+ # Created: 2013-04-01 18:33:53 +0200
2643
+ # Platform: rbx 2.0.0.rc1
2644
+ #
2645
+ RubyLint.global_scope.define_constant('Errno::EPROTONOSUPPORT') do |klass|
2646
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2647
+ end
2648
+
2649
+ ##
2650
+ # Constant: Errno::EPROTONOSUPPORT::Errno
2651
+ # Created: 2013-04-01 18:33:53 +0200
2652
+ # Platform: rbx 2.0.0.rc1
2653
+ #
2654
+ RubyLint.global_scope.define_constant('Errno::EPROTONOSUPPORT::Errno') do |klass|
2655
+ end
2656
+
2657
+ ##
2658
+ # Constant: Errno::EPROTONOSUPPORT::Strerror
2659
+ # Created: 2013-04-01 18:33:53 +0200
2660
+ # Platform: rbx 2.0.0.rc1
2661
+ #
2662
+ RubyLint.global_scope.define_constant('Errno::EPROTONOSUPPORT::Strerror') do |klass|
2663
+ end
2664
+
2665
+ ##
2666
+ # Constant: Errno::EPROTOTYPE
2667
+ # Created: 2013-04-01 18:33:53 +0200
2668
+ # Platform: rbx 2.0.0.rc1
2669
+ #
2670
+ RubyLint.global_scope.define_constant('Errno::EPROTOTYPE') do |klass|
2671
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2672
+ end
2673
+
2674
+ ##
2675
+ # Constant: Errno::EPROTOTYPE::Errno
2676
+ # Created: 2013-04-01 18:33:53 +0200
2677
+ # Platform: rbx 2.0.0.rc1
2678
+ #
2679
+ RubyLint.global_scope.define_constant('Errno::EPROTOTYPE::Errno') do |klass|
2680
+ end
2681
+
2682
+ ##
2683
+ # Constant: Errno::EPROTOTYPE::Strerror
2684
+ # Created: 2013-04-01 18:33:53 +0200
2685
+ # Platform: rbx 2.0.0.rc1
2686
+ #
2687
+ RubyLint.global_scope.define_constant('Errno::EPROTOTYPE::Strerror') do |klass|
2688
+ end
2689
+
2690
+ ##
2691
+ # Constant: Errno::ERANGE
2692
+ # Created: 2013-04-01 18:33:53 +0200
2693
+ # Platform: rbx 2.0.0.rc1
2694
+ #
2695
+ RubyLint.global_scope.define_constant('Errno::ERANGE') do |klass|
2696
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2697
+ end
2698
+
2699
+ ##
2700
+ # Constant: Errno::ERANGE::Errno
2701
+ # Created: 2013-04-01 18:33:53 +0200
2702
+ # Platform: rbx 2.0.0.rc1
2703
+ #
2704
+ RubyLint.global_scope.define_constant('Errno::ERANGE::Errno') do |klass|
2705
+ end
2706
+
2707
+ ##
2708
+ # Constant: Errno::ERANGE::Strerror
2709
+ # Created: 2013-04-01 18:33:53 +0200
2710
+ # Platform: rbx 2.0.0.rc1
2711
+ #
2712
+ RubyLint.global_scope.define_constant('Errno::ERANGE::Strerror') do |klass|
2713
+ end
2714
+
2715
+ ##
2716
+ # Constant: Errno::EREMCHG
2717
+ # Created: 2013-04-01 18:33:53 +0200
2718
+ # Platform: rbx 2.0.0.rc1
2719
+ #
2720
+ RubyLint.global_scope.define_constant('Errno::EREMCHG') do |klass|
2721
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2722
+ end
2723
+
2724
+ ##
2725
+ # Constant: Errno::EREMCHG::Errno
2726
+ # Created: 2013-04-01 18:33:53 +0200
2727
+ # Platform: rbx 2.0.0.rc1
2728
+ #
2729
+ RubyLint.global_scope.define_constant('Errno::EREMCHG::Errno') do |klass|
2730
+ end
2731
+
2732
+ ##
2733
+ # Constant: Errno::EREMCHG::Strerror
2734
+ # Created: 2013-04-01 18:33:53 +0200
2735
+ # Platform: rbx 2.0.0.rc1
2736
+ #
2737
+ RubyLint.global_scope.define_constant('Errno::EREMCHG::Strerror') do |klass|
2738
+ end
2739
+
2740
+ ##
2741
+ # Constant: Errno::EREMOTE
2742
+ # Created: 2013-04-01 18:33:53 +0200
2743
+ # Platform: rbx 2.0.0.rc1
2744
+ #
2745
+ RubyLint.global_scope.define_constant('Errno::EREMOTE') do |klass|
2746
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2747
+ end
2748
+
2749
+ ##
2750
+ # Constant: Errno::EREMOTE::Errno
2751
+ # Created: 2013-04-01 18:33:53 +0200
2752
+ # Platform: rbx 2.0.0.rc1
2753
+ #
2754
+ RubyLint.global_scope.define_constant('Errno::EREMOTE::Errno') do |klass|
2755
+ end
2756
+
2757
+ ##
2758
+ # Constant: Errno::EREMOTE::Strerror
2759
+ # Created: 2013-04-01 18:33:53 +0200
2760
+ # Platform: rbx 2.0.0.rc1
2761
+ #
2762
+ RubyLint.global_scope.define_constant('Errno::EREMOTE::Strerror') do |klass|
2763
+ end
2764
+
2765
+ ##
2766
+ # Constant: Errno::EREMOTEIO
2767
+ # Created: 2013-04-01 18:33:53 +0200
2768
+ # Platform: rbx 2.0.0.rc1
2769
+ #
2770
+ RubyLint.global_scope.define_constant('Errno::EREMOTEIO') do |klass|
2771
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2772
+ end
2773
+
2774
+ ##
2775
+ # Constant: Errno::EREMOTEIO::Errno
2776
+ # Created: 2013-04-01 18:33:53 +0200
2777
+ # Platform: rbx 2.0.0.rc1
2778
+ #
2779
+ RubyLint.global_scope.define_constant('Errno::EREMOTEIO::Errno') do |klass|
2780
+ end
2781
+
2782
+ ##
2783
+ # Constant: Errno::EREMOTEIO::Strerror
2784
+ # Created: 2013-04-01 18:33:53 +0200
2785
+ # Platform: rbx 2.0.0.rc1
2786
+ #
2787
+ RubyLint.global_scope.define_constant('Errno::EREMOTEIO::Strerror') do |klass|
2788
+ end
2789
+
2790
+ ##
2791
+ # Constant: Errno::ERESTART
2792
+ # Created: 2013-04-01 18:33:53 +0200
2793
+ # Platform: rbx 2.0.0.rc1
2794
+ #
2795
+ RubyLint.global_scope.define_constant('Errno::ERESTART') do |klass|
2796
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2797
+ end
2798
+
2799
+ ##
2800
+ # Constant: Errno::ERESTART::Errno
2801
+ # Created: 2013-04-01 18:33:53 +0200
2802
+ # Platform: rbx 2.0.0.rc1
2803
+ #
2804
+ RubyLint.global_scope.define_constant('Errno::ERESTART::Errno') do |klass|
2805
+ end
2806
+
2807
+ ##
2808
+ # Constant: Errno::ERESTART::Strerror
2809
+ # Created: 2013-04-01 18:33:53 +0200
2810
+ # Platform: rbx 2.0.0.rc1
2811
+ #
2812
+ RubyLint.global_scope.define_constant('Errno::ERESTART::Strerror') do |klass|
2813
+ end
2814
+
2815
+ ##
2816
+ # Constant: Errno::ERFKILL
2817
+ # Created: 2013-04-01 18:33:53 +0200
2818
+ # Platform: rbx 2.0.0.rc1
2819
+ #
2820
+ RubyLint.global_scope.define_constant('Errno::ERFKILL') do |klass|
2821
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2822
+ end
2823
+
2824
+ ##
2825
+ # Constant: Errno::ERFKILL::Errno
2826
+ # Created: 2013-04-01 18:33:53 +0200
2827
+ # Platform: rbx 2.0.0.rc1
2828
+ #
2829
+ RubyLint.global_scope.define_constant('Errno::ERFKILL::Errno') do |klass|
2830
+ end
2831
+
2832
+ ##
2833
+ # Constant: Errno::ERFKILL::Strerror
2834
+ # Created: 2013-04-01 18:33:53 +0200
2835
+ # Platform: rbx 2.0.0.rc1
2836
+ #
2837
+ RubyLint.global_scope.define_constant('Errno::ERFKILL::Strerror') do |klass|
2838
+ end
2839
+
2840
+ ##
2841
+ # Constant: Errno::EROFS
2842
+ # Created: 2013-04-01 18:33:53 +0200
2843
+ # Platform: rbx 2.0.0.rc1
2844
+ #
2845
+ RubyLint.global_scope.define_constant('Errno::EROFS') do |klass|
2846
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2847
+ end
2848
+
2849
+ ##
2850
+ # Constant: Errno::EROFS::Errno
2851
+ # Created: 2013-04-01 18:33:53 +0200
2852
+ # Platform: rbx 2.0.0.rc1
2853
+ #
2854
+ RubyLint.global_scope.define_constant('Errno::EROFS::Errno') do |klass|
2855
+ end
2856
+
2857
+ ##
2858
+ # Constant: Errno::EROFS::Strerror
2859
+ # Created: 2013-04-01 18:33:53 +0200
2860
+ # Platform: rbx 2.0.0.rc1
2861
+ #
2862
+ RubyLint.global_scope.define_constant('Errno::EROFS::Strerror') do |klass|
2863
+ end
2864
+
2865
+ ##
2866
+ # Constant: Errno::ESHUTDOWN
2867
+ # Created: 2013-04-01 18:33:53 +0200
2868
+ # Platform: rbx 2.0.0.rc1
2869
+ #
2870
+ RubyLint.global_scope.define_constant('Errno::ESHUTDOWN') do |klass|
2871
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2872
+ end
2873
+
2874
+ ##
2875
+ # Constant: Errno::ESHUTDOWN::Errno
2876
+ # Created: 2013-04-01 18:33:53 +0200
2877
+ # Platform: rbx 2.0.0.rc1
2878
+ #
2879
+ RubyLint.global_scope.define_constant('Errno::ESHUTDOWN::Errno') do |klass|
2880
+ end
2881
+
2882
+ ##
2883
+ # Constant: Errno::ESHUTDOWN::Strerror
2884
+ # Created: 2013-04-01 18:33:53 +0200
2885
+ # Platform: rbx 2.0.0.rc1
2886
+ #
2887
+ RubyLint.global_scope.define_constant('Errno::ESHUTDOWN::Strerror') do |klass|
2888
+ end
2889
+
2890
+ ##
2891
+ # Constant: Errno::ESOCKTNOSUPPORT
2892
+ # Created: 2013-04-01 18:33:53 +0200
2893
+ # Platform: rbx 2.0.0.rc1
2894
+ #
2895
+ RubyLint.global_scope.define_constant('Errno::ESOCKTNOSUPPORT') do |klass|
2896
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2897
+ end
2898
+
2899
+ ##
2900
+ # Constant: Errno::ESOCKTNOSUPPORT::Errno
2901
+ # Created: 2013-04-01 18:33:53 +0200
2902
+ # Platform: rbx 2.0.0.rc1
2903
+ #
2904
+ RubyLint.global_scope.define_constant('Errno::ESOCKTNOSUPPORT::Errno') do |klass|
2905
+ end
2906
+
2907
+ ##
2908
+ # Constant: Errno::ESOCKTNOSUPPORT::Strerror
2909
+ # Created: 2013-04-01 18:33:53 +0200
2910
+ # Platform: rbx 2.0.0.rc1
2911
+ #
2912
+ RubyLint.global_scope.define_constant('Errno::ESOCKTNOSUPPORT::Strerror') do |klass|
2913
+ end
2914
+
2915
+ ##
2916
+ # Constant: Errno::ESPIPE
2917
+ # Created: 2013-04-01 18:33:53 +0200
2918
+ # Platform: rbx 2.0.0.rc1
2919
+ #
2920
+ RubyLint.global_scope.define_constant('Errno::ESPIPE') do |klass|
2921
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2922
+ end
2923
+
2924
+ ##
2925
+ # Constant: Errno::ESPIPE::Errno
2926
+ # Created: 2013-04-01 18:33:53 +0200
2927
+ # Platform: rbx 2.0.0.rc1
2928
+ #
2929
+ RubyLint.global_scope.define_constant('Errno::ESPIPE::Errno') do |klass|
2930
+ end
2931
+
2932
+ ##
2933
+ # Constant: Errno::ESPIPE::Strerror
2934
+ # Created: 2013-04-01 18:33:53 +0200
2935
+ # Platform: rbx 2.0.0.rc1
2936
+ #
2937
+ RubyLint.global_scope.define_constant('Errno::ESPIPE::Strerror') do |klass|
2938
+ end
2939
+
2940
+ ##
2941
+ # Constant: Errno::ESRCH
2942
+ # Created: 2013-04-01 18:33:53 +0200
2943
+ # Platform: rbx 2.0.0.rc1
2944
+ #
2945
+ RubyLint.global_scope.define_constant('Errno::ESRCH') do |klass|
2946
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2947
+ end
2948
+
2949
+ ##
2950
+ # Constant: Errno::ESRCH::Errno
2951
+ # Created: 2013-04-01 18:33:53 +0200
2952
+ # Platform: rbx 2.0.0.rc1
2953
+ #
2954
+ RubyLint.global_scope.define_constant('Errno::ESRCH::Errno') do |klass|
2955
+ end
2956
+
2957
+ ##
2958
+ # Constant: Errno::ESRCH::Strerror
2959
+ # Created: 2013-04-01 18:33:53 +0200
2960
+ # Platform: rbx 2.0.0.rc1
2961
+ #
2962
+ RubyLint.global_scope.define_constant('Errno::ESRCH::Strerror') do |klass|
2963
+ end
2964
+
2965
+ ##
2966
+ # Constant: Errno::ESRMNT
2967
+ # Created: 2013-04-01 18:33:53 +0200
2968
+ # Platform: rbx 2.0.0.rc1
2969
+ #
2970
+ RubyLint.global_scope.define_constant('Errno::ESRMNT') do |klass|
2971
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2972
+ end
2973
+
2974
+ ##
2975
+ # Constant: Errno::ESRMNT::Errno
2976
+ # Created: 2013-04-01 18:33:53 +0200
2977
+ # Platform: rbx 2.0.0.rc1
2978
+ #
2979
+ RubyLint.global_scope.define_constant('Errno::ESRMNT::Errno') do |klass|
2980
+ end
2981
+
2982
+ ##
2983
+ # Constant: Errno::ESRMNT::Strerror
2984
+ # Created: 2013-04-01 18:33:53 +0200
2985
+ # Platform: rbx 2.0.0.rc1
2986
+ #
2987
+ RubyLint.global_scope.define_constant('Errno::ESRMNT::Strerror') do |klass|
2988
+ end
2989
+
2990
+ ##
2991
+ # Constant: Errno::ESTALE
2992
+ # Created: 2013-04-01 18:33:53 +0200
2993
+ # Platform: rbx 2.0.0.rc1
2994
+ #
2995
+ RubyLint.global_scope.define_constant('Errno::ESTALE') do |klass|
2996
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
2997
+ end
2998
+
2999
+ ##
3000
+ # Constant: Errno::ESTALE::Errno
3001
+ # Created: 2013-04-01 18:33:53 +0200
3002
+ # Platform: rbx 2.0.0.rc1
3003
+ #
3004
+ RubyLint.global_scope.define_constant('Errno::ESTALE::Errno') do |klass|
3005
+ end
3006
+
3007
+ ##
3008
+ # Constant: Errno::ESTALE::Strerror
3009
+ # Created: 2013-04-01 18:33:53 +0200
3010
+ # Platform: rbx 2.0.0.rc1
3011
+ #
3012
+ RubyLint.global_scope.define_constant('Errno::ESTALE::Strerror') do |klass|
3013
+ end
3014
+
3015
+ ##
3016
+ # Constant: Errno::ESTRPIPE
3017
+ # Created: 2013-04-01 18:33:53 +0200
3018
+ # Platform: rbx 2.0.0.rc1
3019
+ #
3020
+ RubyLint.global_scope.define_constant('Errno::ESTRPIPE') do |klass|
3021
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
3022
+ end
3023
+
3024
+ ##
3025
+ # Constant: Errno::ESTRPIPE::Errno
3026
+ # Created: 2013-04-01 18:33:54 +0200
3027
+ # Platform: rbx 2.0.0.rc1
3028
+ #
3029
+ RubyLint.global_scope.define_constant('Errno::ESTRPIPE::Errno') do |klass|
3030
+ end
3031
+
3032
+ ##
3033
+ # Constant: Errno::ESTRPIPE::Strerror
3034
+ # Created: 2013-04-01 18:33:54 +0200
3035
+ # Platform: rbx 2.0.0.rc1
3036
+ #
3037
+ RubyLint.global_scope.define_constant('Errno::ESTRPIPE::Strerror') do |klass|
3038
+ end
3039
+
3040
+ ##
3041
+ # Constant: Errno::ETIME
3042
+ # Created: 2013-04-01 18:33:54 +0200
3043
+ # Platform: rbx 2.0.0.rc1
3044
+ #
3045
+ RubyLint.global_scope.define_constant('Errno::ETIME') do |klass|
3046
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
3047
+ end
3048
+
3049
+ ##
3050
+ # Constant: Errno::ETIME::Errno
3051
+ # Created: 2013-04-01 18:33:54 +0200
3052
+ # Platform: rbx 2.0.0.rc1
3053
+ #
3054
+ RubyLint.global_scope.define_constant('Errno::ETIME::Errno') do |klass|
3055
+ end
3056
+
3057
+ ##
3058
+ # Constant: Errno::ETIME::Strerror
3059
+ # Created: 2013-04-01 18:33:54 +0200
3060
+ # Platform: rbx 2.0.0.rc1
3061
+ #
3062
+ RubyLint.global_scope.define_constant('Errno::ETIME::Strerror') do |klass|
3063
+ end
3064
+
3065
+ ##
3066
+ # Constant: Errno::ETIMEDOUT
3067
+ # Created: 2013-04-01 18:33:54 +0200
3068
+ # Platform: rbx 2.0.0.rc1
3069
+ #
3070
+ RubyLint.global_scope.define_constant('Errno::ETIMEDOUT') do |klass|
3071
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
3072
+ end
3073
+
3074
+ ##
3075
+ # Constant: Errno::ETIMEDOUT::Errno
3076
+ # Created: 2013-04-01 18:33:54 +0200
3077
+ # Platform: rbx 2.0.0.rc1
3078
+ #
3079
+ RubyLint.global_scope.define_constant('Errno::ETIMEDOUT::Errno') do |klass|
3080
+ end
3081
+
3082
+ ##
3083
+ # Constant: Errno::ETIMEDOUT::Strerror
3084
+ # Created: 2013-04-01 18:33:54 +0200
3085
+ # Platform: rbx 2.0.0.rc1
3086
+ #
3087
+ RubyLint.global_scope.define_constant('Errno::ETIMEDOUT::Strerror') do |klass|
3088
+ end
3089
+
3090
+ ##
3091
+ # Constant: Errno::ETOOMANYREFS
3092
+ # Created: 2013-04-01 18:33:54 +0200
3093
+ # Platform: rbx 2.0.0.rc1
3094
+ #
3095
+ RubyLint.global_scope.define_constant('Errno::ETOOMANYREFS') do |klass|
3096
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
3097
+ end
3098
+
3099
+ ##
3100
+ # Constant: Errno::ETOOMANYREFS::Errno
3101
+ # Created: 2013-04-01 18:33:54 +0200
3102
+ # Platform: rbx 2.0.0.rc1
3103
+ #
3104
+ RubyLint.global_scope.define_constant('Errno::ETOOMANYREFS::Errno') do |klass|
3105
+ end
3106
+
3107
+ ##
3108
+ # Constant: Errno::ETOOMANYREFS::Strerror
3109
+ # Created: 2013-04-01 18:33:54 +0200
3110
+ # Platform: rbx 2.0.0.rc1
3111
+ #
3112
+ RubyLint.global_scope.define_constant('Errno::ETOOMANYREFS::Strerror') do |klass|
3113
+ end
3114
+
3115
+ ##
3116
+ # Constant: Errno::ETXTBSY
3117
+ # Created: 2013-04-01 18:33:54 +0200
3118
+ # Platform: rbx 2.0.0.rc1
3119
+ #
3120
+ RubyLint.global_scope.define_constant('Errno::ETXTBSY') do |klass|
3121
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
3122
+ end
3123
+
3124
+ ##
3125
+ # Constant: Errno::ETXTBSY::Errno
3126
+ # Created: 2013-04-01 18:33:54 +0200
3127
+ # Platform: rbx 2.0.0.rc1
3128
+ #
3129
+ RubyLint.global_scope.define_constant('Errno::ETXTBSY::Errno') do |klass|
3130
+ end
3131
+
3132
+ ##
3133
+ # Constant: Errno::ETXTBSY::Strerror
3134
+ # Created: 2013-04-01 18:33:54 +0200
3135
+ # Platform: rbx 2.0.0.rc1
3136
+ #
3137
+ RubyLint.global_scope.define_constant('Errno::ETXTBSY::Strerror') do |klass|
3138
+ end
3139
+
3140
+ ##
3141
+ # Constant: Errno::EUCLEAN
3142
+ # Created: 2013-04-01 18:33:54 +0200
3143
+ # Platform: rbx 2.0.0.rc1
3144
+ #
3145
+ RubyLint.global_scope.define_constant('Errno::EUCLEAN') do |klass|
3146
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
3147
+ end
3148
+
3149
+ ##
3150
+ # Constant: Errno::EUCLEAN::Errno
3151
+ # Created: 2013-04-01 18:33:54 +0200
3152
+ # Platform: rbx 2.0.0.rc1
3153
+ #
3154
+ RubyLint.global_scope.define_constant('Errno::EUCLEAN::Errno') do |klass|
3155
+ end
3156
+
3157
+ ##
3158
+ # Constant: Errno::EUCLEAN::Strerror
3159
+ # Created: 2013-04-01 18:33:54 +0200
3160
+ # Platform: rbx 2.0.0.rc1
3161
+ #
3162
+ RubyLint.global_scope.define_constant('Errno::EUCLEAN::Strerror') do |klass|
3163
+ end
3164
+
3165
+ ##
3166
+ # Constant: Errno::EUNATCH
3167
+ # Created: 2013-04-01 18:33:54 +0200
3168
+ # Platform: rbx 2.0.0.rc1
3169
+ #
3170
+ RubyLint.global_scope.define_constant('Errno::EUNATCH') do |klass|
3171
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
3172
+ end
3173
+
3174
+ ##
3175
+ # Constant: Errno::EUNATCH::Errno
3176
+ # Created: 2013-04-01 18:33:54 +0200
3177
+ # Platform: rbx 2.0.0.rc1
3178
+ #
3179
+ RubyLint.global_scope.define_constant('Errno::EUNATCH::Errno') do |klass|
3180
+ end
3181
+
3182
+ ##
3183
+ # Constant: Errno::EUNATCH::Strerror
3184
+ # Created: 2013-04-01 18:33:54 +0200
3185
+ # Platform: rbx 2.0.0.rc1
3186
+ #
3187
+ RubyLint.global_scope.define_constant('Errno::EUNATCH::Strerror') do |klass|
3188
+ end
3189
+
3190
+ ##
3191
+ # Constant: Errno::EUSERS
3192
+ # Created: 2013-04-01 18:33:54 +0200
3193
+ # Platform: rbx 2.0.0.rc1
3194
+ #
3195
+ RubyLint.global_scope.define_constant('Errno::EUSERS') do |klass|
3196
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
3197
+ end
3198
+
3199
+ ##
3200
+ # Constant: Errno::EUSERS::Errno
3201
+ # Created: 2013-04-01 18:33:54 +0200
3202
+ # Platform: rbx 2.0.0.rc1
3203
+ #
3204
+ RubyLint.global_scope.define_constant('Errno::EUSERS::Errno') do |klass|
3205
+ end
3206
+
3207
+ ##
3208
+ # Constant: Errno::EUSERS::Strerror
3209
+ # Created: 2013-04-01 18:33:54 +0200
3210
+ # Platform: rbx 2.0.0.rc1
3211
+ #
3212
+ RubyLint.global_scope.define_constant('Errno::EUSERS::Strerror') do |klass|
3213
+ end
3214
+
3215
+ ##
3216
+ # Constant: Errno::EWOULDBLOCK
3217
+ # Created: 2013-04-01 18:33:54 +0200
3218
+ # Platform: rbx 2.0.0.rc1
3219
+ #
3220
+ RubyLint.global_scope.define_constant('Errno::EWOULDBLOCK') do |klass|
3221
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
3222
+ end
3223
+
3224
+ ##
3225
+ # Constant: Errno::EXDEV
3226
+ # Created: 2013-04-01 18:33:54 +0200
3227
+ # Platform: rbx 2.0.0.rc1
3228
+ #
3229
+ RubyLint.global_scope.define_constant('Errno::EXDEV') do |klass|
3230
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
3231
+ end
3232
+
3233
+ ##
3234
+ # Constant: Errno::EXDEV::Errno
3235
+ # Created: 2013-04-01 18:33:54 +0200
3236
+ # Platform: rbx 2.0.0.rc1
3237
+ #
3238
+ RubyLint.global_scope.define_constant('Errno::EXDEV::Errno') do |klass|
3239
+ end
3240
+
3241
+ ##
3242
+ # Constant: Errno::EXDEV::Strerror
3243
+ # Created: 2013-04-01 18:33:54 +0200
3244
+ # Platform: rbx 2.0.0.rc1
3245
+ #
3246
+ RubyLint.global_scope.define_constant('Errno::EXDEV::Strerror') do |klass|
3247
+ end
3248
+
3249
+ ##
3250
+ # Constant: Errno::EXFULL
3251
+ # Created: 2013-04-01 18:33:54 +0200
3252
+ # Platform: rbx 2.0.0.rc1
3253
+ #
3254
+ RubyLint.global_scope.define_constant('Errno::EXFULL') do |klass|
3255
+ klass.inherits(RubyLint.global_constant('SystemCallError'))
3256
+ end
3257
+
3258
+ ##
3259
+ # Constant: Errno::EXFULL::Errno
3260
+ # Created: 2013-04-01 18:33:54 +0200
3261
+ # Platform: rbx 2.0.0.rc1
3262
+ #
3263
+ RubyLint.global_scope.define_constant('Errno::EXFULL::Errno') do |klass|
3264
+ end
3265
+
3266
+ ##
3267
+ # Constant: Errno::EXFULL::Strerror
3268
+ # Created: 2013-04-01 18:33:54 +0200
3269
+ # Platform: rbx 2.0.0.rc1
3270
+ #
3271
+ RubyLint.global_scope.define_constant('Errno::EXFULL::Strerror') do |klass|
3272
+ end
3273
+
3274
+ ##
3275
+ # Constant: Errno::FFI
3276
+ # Created: 2013-04-01 18:33:54 +0200
3277
+ # Platform: rbx 2.0.0.rc1
3278
+ #
3279
+ RubyLint.global_scope.define_constant('Errno::FFI') do |klass|
3280
+
3281
+ klass.define_method('__module_init__')
3282
+
3283
+ klass.define_method('add_typedef') do |method|
3284
+ method.define_argument('current')
3285
+ method.define_argument('add')
3286
+ end
3287
+
3288
+ klass.define_method('config') do |method|
3289
+ method.define_argument('name')
3290
+ end
3291
+
3292
+ klass.define_method('config_hash') do |method|
3293
+ method.define_argument('name')
3294
+ end
3295
+
3296
+ klass.define_method('errno')
3297
+
3298
+ klass.define_method('find_type') do |method|
3299
+ method.define_argument('name')
3300
+ end
3301
+
3302
+ klass.define_method('generate_function') do |method|
3303
+ method.define_argument('ptr')
3304
+ method.define_argument('name')
3305
+ method.define_argument('args')
3306
+ method.define_argument('ret')
3307
+ end
3308
+
3309
+ klass.define_method('generate_trampoline') do |method|
3310
+ method.define_argument('obj')
3311
+ method.define_argument('name')
3312
+ method.define_argument('args')
3313
+ method.define_argument('ret')
3314
+ end
3315
+
3316
+ klass.define_method('size_to_type') do |method|
3317
+ method.define_argument('size')
3318
+ end
3319
+
3320
+ klass.define_method('type_size') do |method|
3321
+ method.define_argument('type')
3322
+ end
3323
+ end
3324
+
3325
+ ##
3326
+ # Constant: Errno::Mapping
3327
+ # Created: 2013-04-01 18:33:54 +0200
3328
+ # Platform: rbx 2.0.0.rc1
3329
+ #
3330
+ RubyLint.global_scope.define_constant('Errno::Mapping') do |klass|
3331
+ end