ruby-lint 1.0.3 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (341) hide show
  1. checksums.yaml +4 -4
  2. data/.ruby-version +1 -1
  3. data/.travis.yml +2 -5
  4. data/Gemfile +9 -4
  5. data/MANIFEST +32 -28
  6. data/README.md +18 -5
  7. data/Rakefile +7 -3
  8. data/checksum/ruby-lint-1.0.2.gem.sha512 +1 -0
  9. data/checksum/ruby-lint-1.0.3.gem.sha512 +1 -0
  10. data/doc/changelog.md +40 -0
  11. data/doc/definitions.md +182 -0
  12. data/gen/rails/constants.txt +12 -0
  13. data/gen/rails/requires.rb +2 -0
  14. data/gen/stdlib/constants.rb +30 -0
  15. data/gen/stdlib/constants.txt +214 -0
  16. data/gen/stdlib/requires.rb +64 -0
  17. data/lib/ruby-lint.rb +7 -14
  18. data/lib/ruby-lint/analysis/undefined_methods.rb +8 -1
  19. data/lib/ruby-lint/analysis/useless_equality_checks.rb +92 -0
  20. data/lib/ruby-lint/cli.rb +1 -2
  21. data/lib/ruby-lint/cli/analyze.rb +55 -26
  22. data/lib/ruby-lint/cli/cache.rb +60 -0
  23. data/lib/ruby-lint/configuration.rb +10 -4
  24. data/lib/ruby-lint/constant_loader.rb +75 -22
  25. data/lib/ruby-lint/definition/constant_proxy.rb +51 -3
  26. data/lib/ruby-lint/definition/registry.rb +126 -0
  27. data/lib/ruby-lint/definition/ruby_method.rb +0 -11
  28. data/lib/ruby-lint/definition/ruby_object.rb +32 -24
  29. data/lib/ruby-lint/definition_builder/base.rb +9 -12
  30. data/lib/ruby-lint/definition_builder/primitive.rb +1 -1
  31. data/lib/ruby-lint/definition_builder/ruby_array.rb +1 -1
  32. data/lib/ruby-lint/definition_builder/ruby_block.rb +3 -3
  33. data/lib/ruby-lint/definition_builder/ruby_class.rb +2 -2
  34. data/lib/ruby-lint/definition_builder/ruby_hash.rb +1 -1
  35. data/lib/ruby-lint/definition_builder/ruby_method.rb +1 -1
  36. data/lib/ruby-lint/definition_builder/ruby_module.rb +4 -4
  37. data/lib/ruby-lint/definition_generator.rb +12 -2
  38. data/lib/ruby-lint/definitions/core/abbrev.rb +8 -11
  39. data/lib/ruby-lint/definitions/core/argf.rb +9 -7
  40. data/lib/ruby-lint/definitions/core/argument_error.rb +8 -10
  41. data/lib/ruby-lint/definitions/core/argv.rb +9 -9
  42. data/lib/ruby-lint/definitions/core/array.rb +296 -534
  43. data/lib/ruby-lint/definitions/core/base64.rb +22 -25
  44. data/lib/ruby-lint/definitions/core/basic_object.rb +30 -30
  45. data/lib/ruby-lint/definitions/core/basic_socket.rb +341 -455
  46. data/lib/ruby-lint/definitions/core/benchmark.rb +157 -24
  47. data/lib/ruby-lint/definitions/core/bignum.rb +110 -95
  48. data/lib/ruby-lint/definitions/core/binding.rb +38 -35
  49. data/lib/ruby-lint/definitions/core/cgi.rb +333 -49
  50. data/lib/ruby-lint/definitions/core/class.rb +16 -16
  51. data/lib/ruby-lint/definitions/core/common_headers.rb +4 -548
  52. data/lib/ruby-lint/definitions/core/common_libs.rb +4 -421
  53. data/lib/ruby-lint/definitions/core/comparable.rb +28 -29
  54. data/lib/ruby-lint/definitions/core/complex.rb +103 -141
  55. data/lib/ruby-lint/definitions/core/condition_variable.rb +14 -14
  56. data/lib/ruby-lint/definitions/core/config.rb +4 -318
  57. data/lib/ruby-lint/definitions/core/conftest_c.rb +4 -548
  58. data/lib/ruby-lint/definitions/core/coutflag.rb +4 -548
  59. data/lib/ruby-lint/definitions/core/csv.rb +729 -329
  60. data/lib/ruby-lint/definitions/core/data.rb +9 -8
  61. data/lib/ruby-lint/definitions/core/date.rb +452 -526
  62. data/lib/ruby-lint/definitions/core/date_time.rb +234 -303
  63. data/lib/ruby-lint/definitions/core/delegator.rb +57 -48
  64. data/lib/ruby-lint/definitions/core/digest.rb +94 -115
  65. data/lib/ruby-lint/definitions/core/dir.rb +89 -459
  66. data/lib/ruby-lint/definitions/core/drb.rb +531 -36
  67. data/lib/ruby-lint/definitions/core/drb_id_conv.rb +10 -19
  68. data/lib/ruby-lint/definitions/core/drb_object.rb +53 -58
  69. data/lib/ruby-lint/definitions/core/drb_undumped.rb +7 -10
  70. data/lib/ruby-lint/definitions/core/encoding.rb +1026 -1718
  71. data/lib/ruby-lint/definitions/core/encoding_error.rb +9 -8
  72. data/lib/ruby-lint/definitions/core/enumerable.rb +123 -292
  73. data/lib/ruby-lint/definitions/core/enumerator.rb +28 -26
  74. data/lib/ruby-lint/definitions/core/env.rb +8 -9
  75. data/lib/ruby-lint/definitions/core/eoferror.rb +9 -8
  76. data/lib/ruby-lint/definitions/core/erb.rb +201 -226
  77. data/lib/ruby-lint/definitions/core/errno.rb +1593 -2917
  78. data/lib/ruby-lint/definitions/core/etc.rb +86 -107
  79. data/lib/ruby-lint/definitions/core/exception.rb +70 -50
  80. data/lib/ruby-lint/definitions/core/exception_for_matrix.rb +24 -37
  81. data/lib/ruby-lint/definitions/core/export_prefix.rb +4 -16
  82. data/lib/ruby-lint/definitions/core/failed_message.rb +4 -548
  83. data/lib/ruby-lint/definitions/core/false.rb +9 -7
  84. data/lib/ruby-lint/definitions/core/false_class.rb +40 -22
  85. data/lib/ruby-lint/definitions/core/fcntl.rb +120 -7
  86. data/lib/ruby-lint/definitions/core/fiber.rb +25 -26
  87. data/lib/ruby-lint/definitions/core/fiber_error.rb +9 -8
  88. data/lib/ruby-lint/definitions/core/file.rb +1119 -860
  89. data/lib/ruby-lint/definitions/core/file_test.rb +79 -80
  90. data/lib/ruby-lint/definitions/core/file_utils.rb +1203 -765
  91. data/lib/ruby-lint/definitions/core/find.rb +9 -12
  92. data/lib/ruby-lint/definitions/core/fixnum.rb +113 -663
  93. data/lib/ruby-lint/definitions/core/float.rb +171 -2755
  94. data/lib/ruby-lint/definitions/core/float_domain_error.rb +9 -8
  95. data/lib/ruby-lint/definitions/core/forwardable.rb +37 -30
  96. data/lib/ruby-lint/definitions/core/gc.rb +31 -38
  97. data/lib/ruby-lint/definitions/core/gem.rb +2324 -2183
  98. data/lib/ruby-lint/definitions/core/getopt_long.rb +107 -32
  99. data/lib/ruby-lint/definitions/core/gserver.rb +61 -61
  100. data/lib/ruby-lint/definitions/core/hash.rb +354 -1172
  101. data/lib/ruby-lint/definitions/core/hdr_ext.rb +4 -421
  102. data/lib/ruby-lint/definitions/core/index_error.rb +9 -8
  103. data/lib/ruby-lint/definitions/core/install_dirs.rb +4 -421
  104. data/lib/ruby-lint/definitions/core/integer.rb +93 -67
  105. data/lib/ruby-lint/definitions/core/interrupt.rb +11 -11
  106. data/lib/ruby-lint/definitions/core/io.rb +574 -673
  107. data/lib/ruby-lint/definitions/core/ioerror.rb +9 -8
  108. data/lib/ruby-lint/definitions/core/ipaddr.rb +115 -90
  109. data/lib/ruby-lint/definitions/core/ipsocket.rb +301 -472
  110. data/lib/ruby-lint/definitions/core/irb.rb +1206 -34
  111. data/lib/ruby-lint/definitions/core/json.rb +483 -74
  112. data/lib/ruby-lint/definitions/core/kconv.rb +88 -36
  113. data/lib/ruby-lint/definitions/core/kernel.rb +408 -412
  114. data/lib/ruby-lint/definitions/core/key_error.rb +9 -8
  115. data/lib/ruby-lint/definitions/core/libarg.rb +4 -548
  116. data/lib/ruby-lint/definitions/core/libpathflag.rb +4 -548
  117. data/lib/ruby-lint/definitions/core/link_so.rb +4 -548
  118. data/lib/ruby-lint/definitions/core/load_error.rb +24 -25
  119. data/lib/ruby-lint/definitions/core/local_jump_error.rb +9 -8
  120. data/lib/ruby-lint/definitions/core/logger.rb +294 -61
  121. data/lib/ruby-lint/definitions/core/logging.rb +17 -20
  122. data/lib/ruby-lint/definitions/core/make_makefile.rb +548 -384
  123. data/lib/ruby-lint/definitions/core/marshal.rb +260 -358
  124. data/lib/ruby-lint/definitions/core/match_data.rb +51 -48
  125. data/lib/ruby-lint/definitions/core/math.rb +170 -178
  126. data/lib/ruby-lint/definitions/core/matrix.rb +354 -297
  127. data/lib/ruby-lint/definitions/core/method.rb +41 -42
  128. data/lib/ruby-lint/definitions/core/module.rb +219 -223
  129. data/lib/ruby-lint/definitions/core/monitor.rb +26 -28
  130. data/lib/ruby-lint/definitions/core/monitor_mixin.rb +36 -42
  131. data/lib/ruby-lint/definitions/core/mutex.rb +20 -22
  132. data/lib/ruby-lint/definitions/core/mutex_m.rb +24 -27
  133. data/lib/ruby-lint/definitions/core/name_error.rb +13 -13
  134. data/lib/ruby-lint/definitions/core/nil.rb +9 -7
  135. data/lib/ruby-lint/definitions/core/nil_class.rb +47 -31
  136. data/lib/ruby-lint/definitions/core/nkf.rb +76 -9
  137. data/lib/ruby-lint/definitions/core/no_memory_error.rb +9 -8
  138. data/lib/ruby-lint/definitions/core/no_method_error.rb +14 -14
  139. data/lib/ruby-lint/definitions/core/not_implemented_error.rb +9 -8
  140. data/lib/ruby-lint/definitions/core/numeric.rb +88 -80
  141. data/lib/ruby-lint/definitions/core/object.rb +20 -20
  142. data/lib/ruby-lint/definitions/core/object_space.rb +28 -31
  143. data/lib/ruby-lint/definitions/core/observable.rb +20 -23
  144. data/lib/ruby-lint/definitions/core/open3.rb +47 -50
  145. data/lib/ruby-lint/definitions/core/open_ssl.rb +4158 -13
  146. data/lib/ruby-lint/definitions/core/open_struct.rb +40 -37
  147. data/lib/ruby-lint/definitions/core/open_uri.rb +142 -25
  148. data/lib/ruby-lint/definitions/core/option_parser.rb +919 -981
  149. data/lib/ruby-lint/definitions/core/orig_libpath.rb +4 -32
  150. data/lib/ruby-lint/definitions/core/outflag.rb +4 -548
  151. data/lib/ruby-lint/definitions/core/pathname.rb +211 -186
  152. data/lib/ruby-lint/definitions/core/pp.rb +160 -99
  153. data/lib/ruby-lint/definitions/core/pretty_print.rb +170 -56
  154. data/lib/ruby-lint/definitions/core/prime.rb +329 -234
  155. data/lib/ruby-lint/definitions/core/proc.rb +63 -75
  156. data/lib/ruby-lint/definitions/core/process.rb +504 -412
  157. data/lib/ruby-lint/definitions/core/profiler__.rb +13 -16
  158. data/lib/ruby-lint/definitions/core/pstore.rb +66 -36
  159. data/lib/ruby-lint/definitions/core/queue.rb +32 -32
  160. data/lib/ruby-lint/definitions/core/random.rb +29 -29
  161. data/lib/ruby-lint/definitions/core/range.rb +123 -77
  162. data/lib/ruby-lint/definitions/core/range_error.rb +9 -8
  163. data/lib/ruby-lint/definitions/core/rational.rb +84 -67
  164. data/lib/ruby-lint/definitions/core/rb_config.rb +18 -29
  165. data/lib/ruby-lint/definitions/core/readline.rb +85 -41
  166. data/lib/ruby-lint/definitions/core/regexp.rb +239 -293
  167. data/lib/ruby-lint/definitions/core/regexp_error.rb +9 -8
  168. data/lib/ruby-lint/definitions/core/resolv.rb +1365 -38
  169. data/lib/ruby-lint/definitions/core/rpathflag.rb +4 -548
  170. data/lib/ruby-lint/definitions/core/ruby_copyright.rb +9 -9
  171. data/lib/ruby-lint/definitions/core/ruby_description.rb +9 -9
  172. data/lib/ruby-lint/definitions/core/ruby_engine.rb +9 -9
  173. data/lib/ruby-lint/definitions/core/ruby_patchlevel.rb +9 -9
  174. data/lib/ruby-lint/definitions/core/ruby_platform.rb +9 -9
  175. data/lib/ruby-lint/definitions/core/ruby_release_date.rb +9 -9
  176. data/lib/ruby-lint/definitions/core/ruby_revision.rb +4 -246
  177. data/lib/ruby-lint/definitions/core/ruby_version.rb +9 -9
  178. data/lib/ruby-lint/definitions/core/runtime_error.rb +9 -8
  179. data/lib/ruby-lint/definitions/core/scan_error.rb +9 -8
  180. data/lib/ruby-lint/definitions/core/scanf.rb +83 -7
  181. data/lib/ruby-lint/definitions/core/script_error.rb +9 -8
  182. data/lib/ruby-lint/definitions/core/secure_random.rb +22 -25
  183. data/lib/ruby-lint/definitions/core/security_error.rb +9 -8
  184. data/lib/ruby-lint/definitions/core/set.rb +154 -504
  185. data/lib/ruby-lint/definitions/core/shellwords.rb +27 -28
  186. data/lib/ruby-lint/definitions/core/signal.rb +21 -29
  187. data/lib/ruby-lint/definitions/core/signal_exception.rb +15 -15
  188. data/lib/ruby-lint/definitions/core/simple_delegator.rb +10 -26
  189. data/lib/ruby-lint/definitions/core/single_forwardable.rb +35 -38
  190. data/lib/ruby-lint/definitions/core/singleton.rb +21 -28
  191. data/lib/ruby-lint/definitions/core/sized_queue.rb +35 -31
  192. data/lib/ruby-lint/definitions/core/socket.rb +2942 -438
  193. data/lib/ruby-lint/definitions/core/socket_error.rb +4 -54
  194. data/lib/ruby-lint/definitions/core/sorted_set.rb +49 -263
  195. data/lib/ruby-lint/definitions/core/src_ext.rb +4 -421
  196. data/lib/ruby-lint/definitions/core/standard_error.rb +9 -8
  197. data/lib/ruby-lint/definitions/core/stderr.rb +9 -9
  198. data/lib/ruby-lint/definitions/core/stdin.rb +9 -9
  199. data/lib/ruby-lint/definitions/core/stdout.rb +9 -9
  200. data/lib/ruby-lint/definitions/core/stop_iteration.rb +10 -8
  201. data/lib/ruby-lint/definitions/core/string.rb +451 -1222
  202. data/lib/ruby-lint/definitions/core/string_io.rb +226 -518
  203. data/lib/ruby-lint/definitions/core/string_scanner.rb +107 -108
  204. data/lib/ruby-lint/definitions/core/struct.rb +113 -761
  205. data/lib/ruby-lint/definitions/core/syck.rb +1292 -25
  206. data/lib/ruby-lint/definitions/core/symbol.rb +78 -59
  207. data/lib/ruby-lint/definitions/core/syntax_error.rb +23 -33
  208. data/lib/ruby-lint/definitions/core/system_call_error.rb +26 -24
  209. data/lib/ruby-lint/definitions/core/system_exit.rb +15 -15
  210. data/lib/ruby-lint/definitions/core/system_stack_error.rb +9 -8
  211. data/lib/ruby-lint/definitions/core/tcpserver.rb +291 -486
  212. data/lib/ruby-lint/definitions/core/tcpsocket.rb +302 -483
  213. data/lib/ruby-lint/definitions/core/tempfile.rb +39 -832
  214. data/lib/ruby-lint/definitions/core/th_wait.rb +35 -70
  215. data/lib/ruby-lint/definitions/core/thread.rb +131 -144
  216. data/lib/ruby-lint/definitions/core/thread_error.rb +9 -8
  217. data/lib/ruby-lint/definitions/core/thread_group.rb +23 -16
  218. data/lib/ruby-lint/definitions/core/threads_wait.rb +43 -63
  219. data/lib/ruby-lint/definitions/core/time.rb +236 -159
  220. data/lib/ruby-lint/definitions/core/timeout.rb +40 -14
  221. data/lib/ruby-lint/definitions/core/timeout_error.rb +4 -54
  222. data/lib/ruby-lint/definitions/core/toplevel_binding.rb +9 -7
  223. data/lib/ruby-lint/definitions/core/true.rb +9 -7
  224. data/lib/ruby-lint/definitions/core/true_class.rb +40 -22
  225. data/lib/ruby-lint/definitions/core/try_link.rb +4 -548
  226. data/lib/ruby-lint/definitions/core/tsort.rb +21 -19
  227. data/lib/ruby-lint/definitions/core/type_error.rb +9 -8
  228. data/lib/ruby-lint/definitions/core/udpsocket.rb +302 -487
  229. data/lib/ruby-lint/definitions/core/unbound_method.rb +35 -36
  230. data/lib/ruby-lint/definitions/core/universal_ints.rb +4 -421
  231. data/lib/ruby-lint/definitions/core/unixserver.rb +291 -490
  232. data/lib/ruby-lint/definitions/core/unixsocket.rb +314 -476
  233. data/lib/ruby-lint/definitions/core/uri.rb +1309 -38
  234. data/lib/ruby-lint/definitions/core/vector.rb +143 -242
  235. data/lib/ruby-lint/definitions/core/weak_ref.rb +29 -32
  236. data/lib/ruby-lint/definitions/core/webrick.rb +2430 -7
  237. data/lib/ruby-lint/definitions/core/xmlrpc.rb +5 -7
  238. data/lib/ruby-lint/definitions/core/yaml.rb +109 -2325
  239. data/lib/ruby-lint/definitions/core/zero_division_error.rb +9 -8
  240. data/lib/ruby-lint/definitions/core/zlib.rb +272 -8526
  241. data/lib/ruby-lint/definitions/gems/.gitkeep +0 -0
  242. data/lib/ruby-lint/definitions/gems/devise.rb +2271 -0
  243. data/lib/ruby-lint/definitions/gems/nokogiri.rb +7668 -0
  244. data/lib/ruby-lint/definitions/rails/abstract_controller.rb +508 -322
  245. data/lib/ruby-lint/definitions/rails/action_controller.rb +2252 -4462
  246. data/lib/ruby-lint/definitions/rails/action_dispatch.rb +3448 -1846
  247. data/lib/ruby-lint/definitions/rails/action_mailer.rb +750 -1349
  248. data/lib/ruby-lint/definitions/rails/action_pack.rb +31 -14
  249. data/lib/ruby-lint/definitions/rails/action_view.rb +5788 -5748
  250. data/lib/ruby-lint/definitions/rails/active_model.rb +1015 -1065
  251. data/lib/ruby-lint/definitions/rails/active_record.rb +8080 -8075
  252. data/lib/ruby-lint/definitions/rails/active_support.rb +3844 -4153
  253. data/lib/ruby-lint/definitions/rails/arel.rb +6752 -2301
  254. data/lib/ruby-lint/definitions/rails/rails.rb +1553 -2383
  255. data/lib/ruby-lint/definitions/rails/sprockets.rb +1131 -3140
  256. data/lib/ruby-lint/file_list.rb +43 -0
  257. data/lib/ruby-lint/file_scanner.rb +3 -3
  258. data/lib/ruby-lint/generated_constant.rb +5 -1
  259. data/lib/ruby-lint/inspector.rb +108 -46
  260. data/lib/ruby-lint/method_call/attribute.rb +3 -1
  261. data/lib/ruby-lint/rake_task.rb +98 -0
  262. data/lib/ruby-lint/ruby_lint.rb +11 -0
  263. data/lib/ruby-lint/runner.rb +0 -11
  264. data/lib/ruby-lint/template/definition.erb +26 -19
  265. data/lib/ruby-lint/template/scope.rb +12 -0
  266. data/lib/ruby-lint/variable_predicates.rb +14 -0
  267. data/lib/ruby-lint/version.rb +1 -1
  268. data/lib/ruby-lint/virtual_machine.rb +82 -46
  269. data/ruby-lint.gemspec +3 -14
  270. data/spec/ruby-lint/analysis/undefined_methods_spec.rb +20 -3
  271. data/spec/ruby-lint/analysis/useless_equality_checks_spec.rb +107 -0
  272. data/spec/ruby-lint/configuration_spec.rb +20 -0
  273. data/spec/ruby-lint/constant_loader_spec.rb +79 -0
  274. data/spec/ruby-lint/definition/constant_proxy_spec.rb +65 -34
  275. data/spec/ruby-lint/definition/registry_spec.rb +106 -0
  276. data/spec/ruby-lint/definition/ruby_object_spec.rb +25 -25
  277. data/spec/ruby-lint/definition_builder/primitive_spec.rb +10 -10
  278. data/spec/ruby-lint/definition_builder/ruby_class_spec.rb +18 -19
  279. data/spec/ruby-lint/definition_builder/ruby_method_spec.rb +12 -12
  280. data/spec/ruby-lint/definition_builder/ruby_module_spec.rb +14 -14
  281. data/spec/ruby-lint/definitions/argv_spec.rb +3 -2
  282. data/spec/ruby-lint/definitions/env_spec.rb +5 -3
  283. data/spec/ruby-lint/definitions/file_spec.rb +17 -0
  284. data/spec/ruby-lint/definitions/fixnum_spec.rb +18 -0
  285. data/spec/ruby-lint/definitions/io_spec.rb +5 -3
  286. data/spec/ruby-lint/definitions/kernel_spec.rb +18 -0
  287. data/spec/ruby-lint/definitions/range_spec.rb +21 -0
  288. data/spec/ruby-lint/definitions/string_spec.rb +20 -0
  289. data/spec/ruby-lint/file_list_spec.rb +25 -0
  290. data/spec/ruby-lint/file_scanner_spec.rb +12 -0
  291. data/spec/ruby-lint/inspector_spec.rb +203 -23
  292. data/spec/ruby-lint/method_call/.gitkeep +0 -0
  293. data/spec/ruby-lint/variable_predicates_spec.rb +30 -0
  294. data/spec/ruby-lint/virtual_machine/associate_nodes_spec.rb +6 -4
  295. data/spec/ruby-lint/virtual_machine/autoloading_spec.rb +3 -16
  296. data/spec/ruby-lint/virtual_machine/classes/redefining_spec.rb +28 -1
  297. data/spec/ruby-lint/virtual_machine/complex/rails_spec.rb +12 -9
  298. data/spec/ruby-lint/virtual_machine/global_variables_spec.rb +8 -5
  299. data/spec/ruby-lint/virtual_machine/method_call_tracking_spec.rb +0 -7
  300. data/spec/ruby-lint/virtual_machine/methods/attr_spec.rb +66 -0
  301. data/spec/ruby-lint/virtual_machine/methods/calls_spec.rb +25 -0
  302. data/spec/ruby-lint/virtual_machine/methods/define_method_spec.rb +1 -1
  303. data/spec/ruby-lint/virtual_machine/methods/docstrings_spec.rb +20 -9
  304. data/spec/ruby-lint/virtual_machine/methods/kernel_spec.rb +25 -0
  305. data/spec/ruby-lint/virtual_machine/methods/patching_spec.rb +0 -6
  306. data/spec/ruby-lint/virtual_machine/methods/square_bracket_spec.rb +32 -0
  307. data/spec/ruby-lint/virtual_machine/self_spec.rb +37 -0
  308. data/spec/spec_helper.rb +0 -1
  309. data/spec/support/building.rb +0 -4
  310. data/spec/support/definitions.rb +16 -0
  311. data/task/generate.rake +35 -33
  312. data/task/todo.rake +1 -1
  313. metadata +73 -100
  314. data/lib/ruby-lint/cli/ast.rb +0 -50
  315. data/lib/ruby-lint/cli/plot.rb +0 -94
  316. data/lib/ruby-lint/definitions/core/arg0.rb +0 -9
  317. data/lib/ruby-lint/definitions/core/autoload.rb +0 -41
  318. data/lib/ruby-lint/definitions/core/continuation.rb +0 -10
  319. data/lib/ruby-lint/definitions/core/default_record_separator.rb +0 -9
  320. data/lib/ruby-lint/definitions/core/fatal_error.rb +0 -10
  321. data/lib/ruby-lint/definitions/core/file_list.rb +0 -729
  322. data/lib/ruby-lint/definitions/core/immediate_value.rb +0 -21
  323. data/lib/ruby-lint/definitions/core/md5.rb +0 -80
  324. data/lib/ruby-lint/definitions/core/memory_segmention_error.rb +0 -10
  325. data/lib/ruby-lint/definitions/core/precision.rb +0 -23
  326. data/lib/ruby-lint/definitions/core/primitive_failure.rb +0 -10
  327. data/lib/ruby-lint/definitions/core/psych.rb +0 -139
  328. data/lib/ruby-lint/definitions/core/rake.rb +0 -4786
  329. data/lib/ruby-lint/definitions/core/rake_file_utils.rb +0 -205
  330. data/lib/ruby-lint/definitions/core/rakeversion.rb +0 -9
  331. data/lib/ruby-lint/definitions/core/rdoc.rb +0 -15
  332. data/lib/ruby-lint/definitions/core/rexml.rb +0 -13
  333. data/lib/ruby-lint/definitions/core/rss.rb +0 -13
  334. data/lib/ruby-lint/definitions/core/sha1.rb +0 -80
  335. data/lib/ruby-lint/definitions/core/unmarshalable.rb +0 -15
  336. data/lib/ruby-lint/definitions/core/unsupported_library_error.rb +0 -10
  337. data/lib/ruby-lint/definitions/global_variables.rb +0 -9
  338. data/lib/ruby-lint/definitions/rails.rb +0 -12
  339. data/lib/ruby-lint/global_scope.rb +0 -56
  340. data/spec/ruby-lint/cli/ast_spec.rb +0 -23
  341. data/spec/ruby-lint/method_call/assign_member_spec.rb +0 -25
@@ -1,3333 +1,2009 @@
1
- ##
2
- # Constant: Errno
3
- # Created: 2013-04-01 18:33:53 +0200
4
- # Platform: rbx 2.0.0.rc1
1
+ # This file was automatically generated, any manual changes will be lost the
2
+ # next time this file is generated.
5
3
  #
6
- RubyLint::GlobalScope.definitions.define_constant('Errno') do |klass|
4
+ # Platform: rbx 2.2.3.n364
7
5
 
8
- klass.define_method('__module_init__')
6
+ RubyLint.registry.register('Errno') do |defs|
7
+ defs.define_constant('Errno') do |klass|
8
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
9
9
 
10
- klass.define_method('handle') do |method|
11
- method.define_optional_argument('additional')
10
+ klass.define_method('handle') do |method|
11
+ method.define_optional_argument('additional')
12
+ end
12
13
  end
13
- end
14
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::GlobalScope.definitions.define_constant('Errno::E2BIG') do |klass|
21
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
22
- end
15
+ defs.define_constant('Errno::E2BIG') do |klass|
16
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
23
17
 
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::GlobalScope.definitions.define_constant('Errno::E2BIG::Errno') do |klass|
30
- end
18
+ end
31
19
 
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::GlobalScope.definitions.define_constant('Errno::E2BIG::Strerror') do |klass|
38
- end
20
+ defs.define_constant('Errno::E2BIG::Errno') do |klass|
21
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
39
22
 
40
- ##
41
- # Constant: Errno::EACCES
42
- # Created: 2013-04-01 18:33:53 +0200
43
- # Platform: rbx 2.0.0.rc1
44
- #
45
- RubyLint::GlobalScope.definitions.define_constant('Errno::EACCES') do |klass|
46
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
47
- end
23
+ end
48
24
 
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::GlobalScope.definitions.define_constant('Errno::EACCES::Errno') do |klass|
55
- end
25
+ defs.define_constant('Errno::E2BIG::Strerror') do |klass|
26
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
56
27
 
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::GlobalScope.definitions.define_constant('Errno::EACCES::Strerror') do |klass|
63
- end
28
+ end
64
29
 
65
- ##
66
- # Constant: Errno::EADDRINUSE
67
- # Created: 2013-04-01 18:33:53 +0200
68
- # Platform: rbx 2.0.0.rc1
69
- #
70
- RubyLint::GlobalScope.definitions.define_constant('Errno::EADDRINUSE') do |klass|
71
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
72
- end
30
+ defs.define_constant('Errno::EACCES') do |klass|
31
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
73
32
 
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::GlobalScope.definitions.define_constant('Errno::EADDRINUSE::Errno') do |klass|
80
- end
33
+ end
81
34
 
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::GlobalScope.definitions.define_constant('Errno::EADDRINUSE::Strerror') do |klass|
88
- end
35
+ defs.define_constant('Errno::EACCES::Errno') do |klass|
36
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
89
37
 
90
- ##
91
- # Constant: Errno::EADDRNOTAVAIL
92
- # Created: 2013-04-01 18:33:53 +0200
93
- # Platform: rbx 2.0.0.rc1
94
- #
95
- RubyLint::GlobalScope.definitions.define_constant('Errno::EADDRNOTAVAIL') do |klass|
96
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
97
- end
38
+ end
98
39
 
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::GlobalScope.definitions.define_constant('Errno::EADDRNOTAVAIL::Errno') do |klass|
105
- end
40
+ defs.define_constant('Errno::EACCES::Strerror') do |klass|
41
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
106
42
 
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::GlobalScope.definitions.define_constant('Errno::EADDRNOTAVAIL::Strerror') do |klass|
113
- end
43
+ end
114
44
 
115
- ##
116
- # Constant: Errno::EADV
117
- # Created: 2013-04-01 18:33:53 +0200
118
- # Platform: rbx 2.0.0.rc1
119
- #
120
- RubyLint::GlobalScope.definitions.define_constant('Errno::EADV') do |klass|
121
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
122
- end
45
+ defs.define_constant('Errno::EADDRINUSE') do |klass|
46
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
123
47
 
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::GlobalScope.definitions.define_constant('Errno::EADV::Errno') do |klass|
130
- end
48
+ end
131
49
 
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::GlobalScope.definitions.define_constant('Errno::EADV::Strerror') do |klass|
138
- end
50
+ defs.define_constant('Errno::EADDRINUSE::Errno') do |klass|
51
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
139
52
 
140
- ##
141
- # Constant: Errno::EAFNOSUPPORT
142
- # Created: 2013-04-01 18:33:53 +0200
143
- # Platform: rbx 2.0.0.rc1
144
- #
145
- RubyLint::GlobalScope.definitions.define_constant('Errno::EAFNOSUPPORT') do |klass|
146
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
147
- end
53
+ end
148
54
 
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::GlobalScope.definitions.define_constant('Errno::EAFNOSUPPORT::Errno') do |klass|
155
- end
55
+ defs.define_constant('Errno::EADDRINUSE::Strerror') do |klass|
56
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
156
57
 
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::GlobalScope.definitions.define_constant('Errno::EAFNOSUPPORT::Strerror') do |klass|
163
- end
58
+ end
164
59
 
165
- ##
166
- # Constant: Errno::EAGAIN
167
- # Created: 2013-04-01 18:33:53 +0200
168
- # Platform: rbx 2.0.0.rc1
169
- #
170
- RubyLint::GlobalScope.definitions.define_constant('Errno::EAGAIN') do |klass|
171
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
172
- end
60
+ defs.define_constant('Errno::EADDRNOTAVAIL') do |klass|
61
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
173
62
 
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::GlobalScope.definitions.define_constant('Errno::EAGAIN::Errno') do |klass|
180
- end
63
+ end
181
64
 
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::GlobalScope.definitions.define_constant('Errno::EAGAIN::Strerror') do |klass|
188
- end
65
+ defs.define_constant('Errno::EADDRNOTAVAIL::Errno') do |klass|
66
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
189
67
 
190
- ##
191
- # Constant: Errno::EALREADY
192
- # Created: 2013-04-01 18:33:53 +0200
193
- # Platform: rbx 2.0.0.rc1
194
- #
195
- RubyLint::GlobalScope.definitions.define_constant('Errno::EALREADY') do |klass|
196
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
197
- end
68
+ end
198
69
 
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::GlobalScope.definitions.define_constant('Errno::EALREADY::Errno') do |klass|
205
- end
70
+ defs.define_constant('Errno::EADDRNOTAVAIL::Strerror') do |klass|
71
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
206
72
 
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::GlobalScope.definitions.define_constant('Errno::EALREADY::Strerror') do |klass|
213
- end
73
+ end
214
74
 
215
- ##
216
- # Constant: Errno::EBADE
217
- # Created: 2013-04-01 18:33:53 +0200
218
- # Platform: rbx 2.0.0.rc1
219
- #
220
- RubyLint::GlobalScope.definitions.define_constant('Errno::EBADE') do |klass|
221
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
222
- end
75
+ defs.define_constant('Errno::EADV') do |klass|
76
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
223
77
 
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::GlobalScope.definitions.define_constant('Errno::EBADE::Errno') do |klass|
230
- end
78
+ end
231
79
 
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::GlobalScope.definitions.define_constant('Errno::EBADE::Strerror') do |klass|
238
- end
80
+ defs.define_constant('Errno::EADV::Errno') do |klass|
81
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
239
82
 
240
- ##
241
- # Constant: Errno::EBADF
242
- # Created: 2013-04-01 18:33:53 +0200
243
- # Platform: rbx 2.0.0.rc1
244
- #
245
- RubyLint::GlobalScope.definitions.define_constant('Errno::EBADF') do |klass|
246
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
247
- end
83
+ end
248
84
 
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::GlobalScope.definitions.define_constant('Errno::EBADF::Errno') do |klass|
255
- end
85
+ defs.define_constant('Errno::EADV::Strerror') do |klass|
86
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
256
87
 
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::GlobalScope.definitions.define_constant('Errno::EBADF::Strerror') do |klass|
263
- end
88
+ end
264
89
 
265
- ##
266
- # Constant: Errno::EBADFD
267
- # Created: 2013-04-01 18:33:53 +0200
268
- # Platform: rbx 2.0.0.rc1
269
- #
270
- RubyLint::GlobalScope.definitions.define_constant('Errno::EBADFD') do |klass|
271
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
272
- end
90
+ defs.define_constant('Errno::EAFNOSUPPORT') do |klass|
91
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
273
92
 
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::GlobalScope.definitions.define_constant('Errno::EBADFD::Errno') do |klass|
280
- end
93
+ end
281
94
 
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::GlobalScope.definitions.define_constant('Errno::EBADFD::Strerror') do |klass|
288
- end
95
+ defs.define_constant('Errno::EAFNOSUPPORT::Errno') do |klass|
96
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
289
97
 
290
- ##
291
- # Constant: Errno::EBADMSG
292
- # Created: 2013-04-01 18:33:53 +0200
293
- # Platform: rbx 2.0.0.rc1
294
- #
295
- RubyLint::GlobalScope.definitions.define_constant('Errno::EBADMSG') do |klass|
296
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
297
- end
98
+ end
298
99
 
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::GlobalScope.definitions.define_constant('Errno::EBADMSG::Errno') do |klass|
305
- end
100
+ defs.define_constant('Errno::EAFNOSUPPORT::Strerror') do |klass|
101
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
306
102
 
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::GlobalScope.definitions.define_constant('Errno::EBADMSG::Strerror') do |klass|
313
- end
103
+ end
314
104
 
315
- ##
316
- # Constant: Errno::EBADR
317
- # Created: 2013-04-01 18:33:53 +0200
318
- # Platform: rbx 2.0.0.rc1
319
- #
320
- RubyLint::GlobalScope.definitions.define_constant('Errno::EBADR') do |klass|
321
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
322
- end
105
+ defs.define_constant('Errno::EAGAIN') do |klass|
106
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
323
107
 
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::GlobalScope.definitions.define_constant('Errno::EBADR::Errno') do |klass|
330
- end
108
+ end
331
109
 
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::GlobalScope.definitions.define_constant('Errno::EBADR::Strerror') do |klass|
338
- end
110
+ defs.define_constant('Errno::EAGAIN::Errno') do |klass|
111
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
339
112
 
340
- ##
341
- # Constant: Errno::EBADRQC
342
- # Created: 2013-04-01 18:33:53 +0200
343
- # Platform: rbx 2.0.0.rc1
344
- #
345
- RubyLint::GlobalScope.definitions.define_constant('Errno::EBADRQC') do |klass|
346
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
347
- end
113
+ end
348
114
 
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::GlobalScope.definitions.define_constant('Errno::EBADRQC::Errno') do |klass|
355
- end
115
+ defs.define_constant('Errno::EAGAIN::Strerror') do |klass|
116
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
356
117
 
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::GlobalScope.definitions.define_constant('Errno::EBADRQC::Strerror') do |klass|
363
- end
118
+ end
364
119
 
365
- ##
366
- # Constant: Errno::EBADSLT
367
- # Created: 2013-04-01 18:33:53 +0200
368
- # Platform: rbx 2.0.0.rc1
369
- #
370
- RubyLint::GlobalScope.definitions.define_constant('Errno::EBADSLT') do |klass|
371
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
372
- end
120
+ defs.define_constant('Errno::EALREADY') do |klass|
121
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
373
122
 
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::GlobalScope.definitions.define_constant('Errno::EBADSLT::Errno') do |klass|
380
- end
123
+ end
381
124
 
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::GlobalScope.definitions.define_constant('Errno::EBADSLT::Strerror') do |klass|
388
- end
125
+ defs.define_constant('Errno::EALREADY::Errno') do |klass|
126
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
389
127
 
390
- ##
391
- # Constant: Errno::EBFONT
392
- # Created: 2013-04-01 18:33:53 +0200
393
- # Platform: rbx 2.0.0.rc1
394
- #
395
- RubyLint::GlobalScope.definitions.define_constant('Errno::EBFONT') do |klass|
396
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
397
- end
128
+ end
398
129
 
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::GlobalScope.definitions.define_constant('Errno::EBFONT::Errno') do |klass|
405
- end
130
+ defs.define_constant('Errno::EALREADY::Strerror') do |klass|
131
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
406
132
 
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::GlobalScope.definitions.define_constant('Errno::EBFONT::Strerror') do |klass|
413
- end
133
+ end
414
134
 
415
- ##
416
- # Constant: Errno::EBUSY
417
- # Created: 2013-04-01 18:33:53 +0200
418
- # Platform: rbx 2.0.0.rc1
419
- #
420
- RubyLint::GlobalScope.definitions.define_constant('Errno::EBUSY') do |klass|
421
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
422
- end
135
+ defs.define_constant('Errno::EBADE') do |klass|
136
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
423
137
 
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::GlobalScope.definitions.define_constant('Errno::EBUSY::Errno') do |klass|
430
- end
138
+ end
431
139
 
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::GlobalScope.definitions.define_constant('Errno::EBUSY::Strerror') do |klass|
438
- end
140
+ defs.define_constant('Errno::EBADE::Errno') do |klass|
141
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
439
142
 
440
- ##
441
- # Constant: Errno::ECANCELED
442
- # Created: 2013-04-01 18:33:53 +0200
443
- # Platform: rbx 2.0.0.rc1
444
- #
445
- RubyLint::GlobalScope.definitions.define_constant('Errno::ECANCELED') do |klass|
446
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
447
- end
143
+ end
448
144
 
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::GlobalScope.definitions.define_constant('Errno::ECANCELED::Errno') do |klass|
455
- end
145
+ defs.define_constant('Errno::EBADE::Strerror') do |klass|
146
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
456
147
 
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::GlobalScope.definitions.define_constant('Errno::ECANCELED::Strerror') do |klass|
463
- end
148
+ end
464
149
 
465
- ##
466
- # Constant: Errno::ECHILD
467
- # Created: 2013-04-01 18:33:53 +0200
468
- # Platform: rbx 2.0.0.rc1
469
- #
470
- RubyLint::GlobalScope.definitions.define_constant('Errno::ECHILD') do |klass|
471
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
472
- end
150
+ defs.define_constant('Errno::EBADF') do |klass|
151
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
473
152
 
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::GlobalScope.definitions.define_constant('Errno::ECHILD::Errno') do |klass|
480
- end
153
+ end
481
154
 
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::GlobalScope.definitions.define_constant('Errno::ECHILD::Strerror') do |klass|
488
- end
155
+ defs.define_constant('Errno::EBADF::Errno') do |klass|
156
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
489
157
 
490
- ##
491
- # Constant: Errno::ECHRNG
492
- # Created: 2013-04-01 18:33:53 +0200
493
- # Platform: rbx 2.0.0.rc1
494
- #
495
- RubyLint::GlobalScope.definitions.define_constant('Errno::ECHRNG') do |klass|
496
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
497
- end
158
+ end
498
159
 
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::GlobalScope.definitions.define_constant('Errno::ECHRNG::Errno') do |klass|
505
- end
160
+ defs.define_constant('Errno::EBADF::Strerror') do |klass|
161
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
506
162
 
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::GlobalScope.definitions.define_constant('Errno::ECHRNG::Strerror') do |klass|
513
- end
163
+ end
514
164
 
515
- ##
516
- # Constant: Errno::ECOMM
517
- # Created: 2013-04-01 18:33:53 +0200
518
- # Platform: rbx 2.0.0.rc1
519
- #
520
- RubyLint::GlobalScope.definitions.define_constant('Errno::ECOMM') do |klass|
521
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
522
- end
165
+ defs.define_constant('Errno::EBADFD') do |klass|
166
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
523
167
 
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::GlobalScope.definitions.define_constant('Errno::ECOMM::Errno') do |klass|
530
- end
168
+ end
531
169
 
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::GlobalScope.definitions.define_constant('Errno::ECOMM::Strerror') do |klass|
538
- end
170
+ defs.define_constant('Errno::EBADFD::Errno') do |klass|
171
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
539
172
 
540
- ##
541
- # Constant: Errno::ECONNABORTED
542
- # Created: 2013-04-01 18:33:53 +0200
543
- # Platform: rbx 2.0.0.rc1
544
- #
545
- RubyLint::GlobalScope.definitions.define_constant('Errno::ECONNABORTED') do |klass|
546
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
547
- end
173
+ end
548
174
 
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::GlobalScope.definitions.define_constant('Errno::ECONNABORTED::Errno') do |klass|
555
- end
175
+ defs.define_constant('Errno::EBADFD::Strerror') do |klass|
176
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
556
177
 
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::GlobalScope.definitions.define_constant('Errno::ECONNABORTED::Strerror') do |klass|
563
- end
178
+ end
564
179
 
565
- ##
566
- # Constant: Errno::ECONNREFUSED
567
- # Created: 2013-04-01 18:33:53 +0200
568
- # Platform: rbx 2.0.0.rc1
569
- #
570
- RubyLint::GlobalScope.definitions.define_constant('Errno::ECONNREFUSED') do |klass|
571
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
572
- end
180
+ defs.define_constant('Errno::EBADMSG') do |klass|
181
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
573
182
 
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::GlobalScope.definitions.define_constant('Errno::ECONNREFUSED::Errno') do |klass|
580
- end
183
+ end
581
184
 
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::GlobalScope.definitions.define_constant('Errno::ECONNREFUSED::Strerror') do |klass|
588
- end
185
+ defs.define_constant('Errno::EBADMSG::Errno') do |klass|
186
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
589
187
 
590
- ##
591
- # Constant: Errno::ECONNRESET
592
- # Created: 2013-04-01 18:33:53 +0200
593
- # Platform: rbx 2.0.0.rc1
594
- #
595
- RubyLint::GlobalScope.definitions.define_constant('Errno::ECONNRESET') do |klass|
596
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
597
- end
188
+ end
598
189
 
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::GlobalScope.definitions.define_constant('Errno::ECONNRESET::Errno') do |klass|
605
- end
190
+ defs.define_constant('Errno::EBADMSG::Strerror') do |klass|
191
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
606
192
 
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::GlobalScope.definitions.define_constant('Errno::ECONNRESET::Strerror') do |klass|
613
- end
193
+ end
614
194
 
615
- ##
616
- # Constant: Errno::EDEADLK
617
- # Created: 2013-04-01 18:33:53 +0200
618
- # Platform: rbx 2.0.0.rc1
619
- #
620
- RubyLint::GlobalScope.definitions.define_constant('Errno::EDEADLK') do |klass|
621
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
622
- end
195
+ defs.define_constant('Errno::EBADR') do |klass|
196
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
623
197
 
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::GlobalScope.definitions.define_constant('Errno::EDEADLK::Errno') do |klass|
630
- end
198
+ end
631
199
 
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::GlobalScope.definitions.define_constant('Errno::EDEADLK::Strerror') do |klass|
638
- end
200
+ defs.define_constant('Errno::EBADR::Errno') do |klass|
201
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
639
202
 
640
- ##
641
- # Constant: Errno::EDESTADDRREQ
642
- # Created: 2013-04-01 18:33:53 +0200
643
- # Platform: rbx 2.0.0.rc1
644
- #
645
- RubyLint::GlobalScope.definitions.define_constant('Errno::EDESTADDRREQ') do |klass|
646
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
647
- end
203
+ end
648
204
 
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::GlobalScope.definitions.define_constant('Errno::EDESTADDRREQ::Errno') do |klass|
655
- end
205
+ defs.define_constant('Errno::EBADR::Strerror') do |klass|
206
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
656
207
 
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::GlobalScope.definitions.define_constant('Errno::EDESTADDRREQ::Strerror') do |klass|
663
- end
208
+ end
664
209
 
665
- ##
666
- # Constant: Errno::EDOM
667
- # Created: 2013-04-01 18:33:53 +0200
668
- # Platform: rbx 2.0.0.rc1
669
- #
670
- RubyLint::GlobalScope.definitions.define_constant('Errno::EDOM') do |klass|
671
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
672
- end
210
+ defs.define_constant('Errno::EBADRQC') do |klass|
211
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
673
212
 
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::GlobalScope.definitions.define_constant('Errno::EDOM::Errno') do |klass|
680
- end
213
+ end
681
214
 
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::GlobalScope.definitions.define_constant('Errno::EDOM::Strerror') do |klass|
688
- end
215
+ defs.define_constant('Errno::EBADRQC::Errno') do |klass|
216
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
689
217
 
690
- ##
691
- # Constant: Errno::EDOTDOT
692
- # Created: 2013-04-01 18:33:53 +0200
693
- # Platform: rbx 2.0.0.rc1
694
- #
695
- RubyLint::GlobalScope.definitions.define_constant('Errno::EDOTDOT') do |klass|
696
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
697
- end
218
+ end
698
219
 
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::GlobalScope.definitions.define_constant('Errno::EDOTDOT::Errno') do |klass|
705
- end
220
+ defs.define_constant('Errno::EBADRQC::Strerror') do |klass|
221
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
706
222
 
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::GlobalScope.definitions.define_constant('Errno::EDOTDOT::Strerror') do |klass|
713
- end
223
+ end
714
224
 
715
- ##
716
- # Constant: Errno::EDQUOT
717
- # Created: 2013-04-01 18:33:53 +0200
718
- # Platform: rbx 2.0.0.rc1
719
- #
720
- RubyLint::GlobalScope.definitions.define_constant('Errno::EDQUOT') do |klass|
721
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
722
- end
225
+ defs.define_constant('Errno::EBADSLT') do |klass|
226
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
723
227
 
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::GlobalScope.definitions.define_constant('Errno::EDQUOT::Errno') do |klass|
730
- end
228
+ end
731
229
 
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::GlobalScope.definitions.define_constant('Errno::EDQUOT::Strerror') do |klass|
738
- end
230
+ defs.define_constant('Errno::EBADSLT::Errno') do |klass|
231
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
739
232
 
740
- ##
741
- # Constant: Errno::EEXIST
742
- # Created: 2013-04-01 18:33:53 +0200
743
- # Platform: rbx 2.0.0.rc1
744
- #
745
- RubyLint::GlobalScope.definitions.define_constant('Errno::EEXIST') do |klass|
746
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
747
- end
233
+ end
748
234
 
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::GlobalScope.definitions.define_constant('Errno::EEXIST::Errno') do |klass|
755
- end
235
+ defs.define_constant('Errno::EBADSLT::Strerror') do |klass|
236
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
756
237
 
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::GlobalScope.definitions.define_constant('Errno::EEXIST::Strerror') do |klass|
763
- end
238
+ end
764
239
 
765
- ##
766
- # Constant: Errno::EFAULT
767
- # Created: 2013-04-01 18:33:53 +0200
768
- # Platform: rbx 2.0.0.rc1
769
- #
770
- RubyLint::GlobalScope.definitions.define_constant('Errno::EFAULT') do |klass|
771
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
772
- end
240
+ defs.define_constant('Errno::EBFONT') do |klass|
241
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
773
242
 
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::GlobalScope.definitions.define_constant('Errno::EFAULT::Errno') do |klass|
780
- end
243
+ end
781
244
 
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::GlobalScope.definitions.define_constant('Errno::EFAULT::Strerror') do |klass|
788
- end
245
+ defs.define_constant('Errno::EBFONT::Errno') do |klass|
246
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
789
247
 
790
- ##
791
- # Constant: Errno::EFBIG
792
- # Created: 2013-04-01 18:33:53 +0200
793
- # Platform: rbx 2.0.0.rc1
794
- #
795
- RubyLint::GlobalScope.definitions.define_constant('Errno::EFBIG') do |klass|
796
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
797
- end
248
+ end
798
249
 
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::GlobalScope.definitions.define_constant('Errno::EFBIG::Errno') do |klass|
805
- end
250
+ defs.define_constant('Errno::EBFONT::Strerror') do |klass|
251
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
806
252
 
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::GlobalScope.definitions.define_constant('Errno::EFBIG::Strerror') do |klass|
813
- end
253
+ end
814
254
 
815
- ##
816
- # Constant: Errno::EHOSTDOWN
817
- # Created: 2013-04-01 18:33:53 +0200
818
- # Platform: rbx 2.0.0.rc1
819
- #
820
- RubyLint::GlobalScope.definitions.define_constant('Errno::EHOSTDOWN') do |klass|
821
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
822
- end
255
+ defs.define_constant('Errno::EBUSY') do |klass|
256
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
823
257
 
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::GlobalScope.definitions.define_constant('Errno::EHOSTDOWN::Errno') do |klass|
830
- end
258
+ end
831
259
 
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::GlobalScope.definitions.define_constant('Errno::EHOSTDOWN::Strerror') do |klass|
838
- end
260
+ defs.define_constant('Errno::EBUSY::Errno') do |klass|
261
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
839
262
 
840
- ##
841
- # Constant: Errno::EHOSTUNREACH
842
- # Created: 2013-04-01 18:33:53 +0200
843
- # Platform: rbx 2.0.0.rc1
844
- #
845
- RubyLint::GlobalScope.definitions.define_constant('Errno::EHOSTUNREACH') do |klass|
846
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
847
- end
263
+ end
848
264
 
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::GlobalScope.definitions.define_constant('Errno::EHOSTUNREACH::Errno') do |klass|
855
- end
265
+ defs.define_constant('Errno::EBUSY::Strerror') do |klass|
266
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
856
267
 
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::GlobalScope.definitions.define_constant('Errno::EHOSTUNREACH::Strerror') do |klass|
863
- end
268
+ end
864
269
 
865
- ##
866
- # Constant: Errno::EIDRM
867
- # Created: 2013-04-01 18:33:53 +0200
868
- # Platform: rbx 2.0.0.rc1
869
- #
870
- RubyLint::GlobalScope.definitions.define_constant('Errno::EIDRM') do |klass|
871
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
872
- end
270
+ defs.define_constant('Errno::ECANCELED') do |klass|
271
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
272
+
273
+ end
274
+
275
+ defs.define_constant('Errno::ECANCELED::Errno') do |klass|
276
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
277
+
278
+ end
279
+
280
+ defs.define_constant('Errno::ECANCELED::Strerror') do |klass|
281
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
282
+
283
+ end
284
+
285
+ defs.define_constant('Errno::ECHILD') do |klass|
286
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
287
+
288
+ end
289
+
290
+ defs.define_constant('Errno::ECHILD::Errno') do |klass|
291
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
292
+
293
+ end
294
+
295
+ defs.define_constant('Errno::ECHILD::Strerror') do |klass|
296
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
297
+
298
+ end
299
+
300
+ defs.define_constant('Errno::ECHRNG') do |klass|
301
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
302
+
303
+ end
304
+
305
+ defs.define_constant('Errno::ECHRNG::Errno') do |klass|
306
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
307
+
308
+ end
309
+
310
+ defs.define_constant('Errno::ECHRNG::Strerror') do |klass|
311
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
312
+
313
+ end
314
+
315
+ defs.define_constant('Errno::ECOMM') do |klass|
316
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
317
+
318
+ end
319
+
320
+ defs.define_constant('Errno::ECOMM::Errno') do |klass|
321
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
322
+
323
+ end
324
+
325
+ defs.define_constant('Errno::ECOMM::Strerror') do |klass|
326
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
327
+
328
+ end
329
+
330
+ defs.define_constant('Errno::ECONNABORTED') do |klass|
331
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
332
+
333
+ end
334
+
335
+ defs.define_constant('Errno::ECONNABORTED::Errno') do |klass|
336
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
337
+
338
+ end
339
+
340
+ defs.define_constant('Errno::ECONNABORTED::Strerror') do |klass|
341
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
342
+
343
+ end
344
+
345
+ defs.define_constant('Errno::ECONNREFUSED') do |klass|
346
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
347
+
348
+ end
349
+
350
+ defs.define_constant('Errno::ECONNREFUSED::Errno') do |klass|
351
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
352
+
353
+ end
354
+
355
+ defs.define_constant('Errno::ECONNREFUSED::Strerror') do |klass|
356
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
357
+
358
+ end
359
+
360
+ defs.define_constant('Errno::ECONNRESET') do |klass|
361
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
362
+
363
+ end
364
+
365
+ defs.define_constant('Errno::ECONNRESET::Errno') do |klass|
366
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
367
+
368
+ end
369
+
370
+ defs.define_constant('Errno::ECONNRESET::Strerror') do |klass|
371
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
372
+
373
+ end
374
+
375
+ defs.define_constant('Errno::EDEADLK') do |klass|
376
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
377
+
378
+ end
379
+
380
+ defs.define_constant('Errno::EDEADLK::Errno') do |klass|
381
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
382
+
383
+ end
384
+
385
+ defs.define_constant('Errno::EDEADLK::Strerror') do |klass|
386
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
387
+
388
+ end
389
+
390
+ defs.define_constant('Errno::EDEADLOCK') do |klass|
391
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
392
+
393
+ end
394
+
395
+ defs.define_constant('Errno::EDESTADDRREQ') do |klass|
396
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
397
+
398
+ end
399
+
400
+ defs.define_constant('Errno::EDESTADDRREQ::Errno') do |klass|
401
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
402
+
403
+ end
404
+
405
+ defs.define_constant('Errno::EDESTADDRREQ::Strerror') do |klass|
406
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
407
+
408
+ end
409
+
410
+ defs.define_constant('Errno::EDOTDOT') do |klass|
411
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
412
+
413
+ end
414
+
415
+ defs.define_constant('Errno::EDOTDOT::Errno') do |klass|
416
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
417
+
418
+ end
419
+
420
+ defs.define_constant('Errno::EDOTDOT::Strerror') do |klass|
421
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
422
+
423
+ end
424
+
425
+ defs.define_constant('Errno::EDQUOT') do |klass|
426
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
427
+
428
+ end
429
+
430
+ defs.define_constant('Errno::EDQUOT::Errno') do |klass|
431
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
432
+
433
+ end
434
+
435
+ defs.define_constant('Errno::EDQUOT::Strerror') do |klass|
436
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
437
+
438
+ end
439
+
440
+ defs.define_constant('Errno::EEXIST') do |klass|
441
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
442
+
443
+ end
444
+
445
+ defs.define_constant('Errno::EEXIST::Errno') do |klass|
446
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
447
+
448
+ end
449
+
450
+ defs.define_constant('Errno::EEXIST::Strerror') do |klass|
451
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
452
+
453
+ end
454
+
455
+ defs.define_constant('Errno::EFAULT') do |klass|
456
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
457
+
458
+ end
459
+
460
+ defs.define_constant('Errno::EFAULT::Errno') do |klass|
461
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
462
+
463
+ end
464
+
465
+ defs.define_constant('Errno::EFAULT::Strerror') do |klass|
466
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
467
+
468
+ end
469
+
470
+ defs.define_constant('Errno::EFBIG') do |klass|
471
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
472
+
473
+ end
474
+
475
+ defs.define_constant('Errno::EFBIG::Errno') do |klass|
476
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
477
+
478
+ end
479
+
480
+ defs.define_constant('Errno::EFBIG::Strerror') do |klass|
481
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
482
+
483
+ end
484
+
485
+ defs.define_constant('Errno::EHOSTDOWN') do |klass|
486
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
487
+
488
+ end
489
+
490
+ defs.define_constant('Errno::EHOSTDOWN::Errno') do |klass|
491
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
492
+
493
+ end
494
+
495
+ defs.define_constant('Errno::EHOSTDOWN::Strerror') do |klass|
496
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
497
+
498
+ end
499
+
500
+ defs.define_constant('Errno::EHOSTUNREACH') do |klass|
501
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
502
+
503
+ end
504
+
505
+ defs.define_constant('Errno::EHOSTUNREACH::Errno') do |klass|
506
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
507
+
508
+ end
509
+
510
+ defs.define_constant('Errno::EHOSTUNREACH::Strerror') do |klass|
511
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
512
+
513
+ end
514
+
515
+ defs.define_constant('Errno::EIDRM') do |klass|
516
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
517
+
518
+ end
519
+
520
+ defs.define_constant('Errno::EIDRM::Errno') do |klass|
521
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
522
+
523
+ end
524
+
525
+ defs.define_constant('Errno::EIDRM::Strerror') do |klass|
526
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
527
+
528
+ end
529
+
530
+ defs.define_constant('Errno::EILSEQ') do |klass|
531
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
532
+
533
+ end
534
+
535
+ defs.define_constant('Errno::EILSEQ::Errno') do |klass|
536
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
537
+
538
+ end
539
+
540
+ defs.define_constant('Errno::EILSEQ::Strerror') do |klass|
541
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
542
+
543
+ end
544
+
545
+ defs.define_constant('Errno::EINPROGRESS') do |klass|
546
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
547
+
548
+ end
549
+
550
+ defs.define_constant('Errno::EINPROGRESS::Errno') do |klass|
551
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
552
+
553
+ end
554
+
555
+ defs.define_constant('Errno::EINPROGRESS::Strerror') do |klass|
556
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
557
+
558
+ end
559
+
560
+ defs.define_constant('Errno::EINTR') do |klass|
561
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
562
+
563
+ end
564
+
565
+ defs.define_constant('Errno::EINTR::Errno') do |klass|
566
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
567
+
568
+ end
569
+
570
+ defs.define_constant('Errno::EINTR::Strerror') do |klass|
571
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
572
+
573
+ end
574
+
575
+ defs.define_constant('Errno::EINVAL') do |klass|
576
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
577
+
578
+ end
579
+
580
+ defs.define_constant('Errno::EINVAL::Errno') do |klass|
581
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
582
+
583
+ end
584
+
585
+ defs.define_constant('Errno::EINVAL::Strerror') do |klass|
586
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
587
+
588
+ end
589
+
590
+ defs.define_constant('Errno::EIO') do |klass|
591
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
592
+
593
+ end
594
+
595
+ defs.define_constant('Errno::EIO::Errno') do |klass|
596
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
597
+
598
+ end
599
+
600
+ defs.define_constant('Errno::EIO::Strerror') do |klass|
601
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
602
+
603
+ end
604
+
605
+ defs.define_constant('Errno::EISCONN') do |klass|
606
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
607
+
608
+ end
609
+
610
+ defs.define_constant('Errno::EISCONN::Errno') do |klass|
611
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
612
+
613
+ end
614
+
615
+ defs.define_constant('Errno::EISCONN::Strerror') do |klass|
616
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
617
+
618
+ end
619
+
620
+ defs.define_constant('Errno::EISDIR') do |klass|
621
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
622
+
623
+ end
624
+
625
+ defs.define_constant('Errno::EISDIR::Errno') do |klass|
626
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
627
+
628
+ end
629
+
630
+ defs.define_constant('Errno::EISDIR::Strerror') do |klass|
631
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
632
+
633
+ end
634
+
635
+ defs.define_constant('Errno::EISNAM') do |klass|
636
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
637
+
638
+ end
639
+
640
+ defs.define_constant('Errno::EISNAM::Errno') do |klass|
641
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
642
+
643
+ end
644
+
645
+ defs.define_constant('Errno::EISNAM::Strerror') do |klass|
646
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
647
+
648
+ end
649
+
650
+ defs.define_constant('Errno::EKEYEXPIRED') do |klass|
651
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
652
+
653
+ end
654
+
655
+ defs.define_constant('Errno::EKEYEXPIRED::Errno') do |klass|
656
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
657
+
658
+ end
659
+
660
+ defs.define_constant('Errno::EKEYEXPIRED::Strerror') do |klass|
661
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
662
+
663
+ end
664
+
665
+ defs.define_constant('Errno::EKEYREJECTED') do |klass|
666
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
667
+
668
+ end
669
+
670
+ defs.define_constant('Errno::EKEYREJECTED::Errno') do |klass|
671
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
672
+
673
+ end
674
+
675
+ defs.define_constant('Errno::EKEYREJECTED::Strerror') do |klass|
676
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
677
+
678
+ end
679
+
680
+ defs.define_constant('Errno::EKEYREVOKED') do |klass|
681
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
682
+
683
+ end
684
+
685
+ defs.define_constant('Errno::EKEYREVOKED::Errno') do |klass|
686
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
687
+
688
+ end
689
+
690
+ defs.define_constant('Errno::EKEYREVOKED::Strerror') do |klass|
691
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
692
+
693
+ end
694
+
695
+ defs.define_constant('Errno::EL2HLT') do |klass|
696
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
697
+
698
+ end
699
+
700
+ defs.define_constant('Errno::EL2HLT::Errno') do |klass|
701
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
702
+
703
+ end
704
+
705
+ defs.define_constant('Errno::EL2HLT::Strerror') do |klass|
706
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
707
+
708
+ end
709
+
710
+ defs.define_constant('Errno::EL2NSYNC') do |klass|
711
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
712
+
713
+ end
714
+
715
+ defs.define_constant('Errno::EL2NSYNC::Errno') do |klass|
716
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
717
+
718
+ end
719
+
720
+ defs.define_constant('Errno::EL2NSYNC::Strerror') do |klass|
721
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
722
+
723
+ end
724
+
725
+ defs.define_constant('Errno::EL3HLT') do |klass|
726
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
727
+
728
+ end
729
+
730
+ defs.define_constant('Errno::EL3HLT::Errno') do |klass|
731
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
732
+
733
+ end
734
+
735
+ defs.define_constant('Errno::EL3HLT::Strerror') do |klass|
736
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
737
+
738
+ end
739
+
740
+ defs.define_constant('Errno::EL3RST') do |klass|
741
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
742
+
743
+ end
744
+
745
+ defs.define_constant('Errno::EL3RST::Errno') do |klass|
746
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
747
+
748
+ end
749
+
750
+ defs.define_constant('Errno::EL3RST::Strerror') do |klass|
751
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
752
+
753
+ end
754
+
755
+ defs.define_constant('Errno::ELIBACC') do |klass|
756
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
757
+
758
+ end
759
+
760
+ defs.define_constant('Errno::ELIBACC::Errno') do |klass|
761
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
762
+
763
+ end
764
+
765
+ defs.define_constant('Errno::ELIBACC::Strerror') do |klass|
766
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
767
+
768
+ end
769
+
770
+ defs.define_constant('Errno::ELIBBAD') do |klass|
771
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
772
+
773
+ end
774
+
775
+ defs.define_constant('Errno::ELIBBAD::Errno') do |klass|
776
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
777
+
778
+ end
779
+
780
+ defs.define_constant('Errno::ELIBBAD::Strerror') do |klass|
781
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
782
+
783
+ end
784
+
785
+ defs.define_constant('Errno::ELIBEXEC') do |klass|
786
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
787
+
788
+ end
789
+
790
+ defs.define_constant('Errno::ELIBEXEC::Errno') do |klass|
791
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
792
+
793
+ end
794
+
795
+ defs.define_constant('Errno::ELIBEXEC::Strerror') do |klass|
796
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
797
+
798
+ end
799
+
800
+ defs.define_constant('Errno::ELIBMAX') do |klass|
801
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
802
+
803
+ end
804
+
805
+ defs.define_constant('Errno::ELIBMAX::Errno') do |klass|
806
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
807
+
808
+ end
809
+
810
+ defs.define_constant('Errno::ELIBMAX::Strerror') do |klass|
811
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
812
+
813
+ end
814
+
815
+ defs.define_constant('Errno::ELIBSCN') do |klass|
816
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
817
+
818
+ end
819
+
820
+ defs.define_constant('Errno::ELIBSCN::Errno') do |klass|
821
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
822
+
823
+ end
824
+
825
+ defs.define_constant('Errno::ELIBSCN::Strerror') do |klass|
826
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
827
+
828
+ end
829
+
830
+ defs.define_constant('Errno::ELNRNG') do |klass|
831
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
832
+
833
+ end
834
+
835
+ defs.define_constant('Errno::ELNRNG::Errno') do |klass|
836
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
837
+
838
+ end
839
+
840
+ defs.define_constant('Errno::ELNRNG::Strerror') do |klass|
841
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
842
+
843
+ end
844
+
845
+ defs.define_constant('Errno::ELOOP') do |klass|
846
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
847
+
848
+ end
849
+
850
+ defs.define_constant('Errno::ELOOP::Errno') do |klass|
851
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
852
+
853
+ end
854
+
855
+ defs.define_constant('Errno::ELOOP::Strerror') do |klass|
856
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
857
+
858
+ end
859
+
860
+ defs.define_constant('Errno::EMEDIUMTYPE') do |klass|
861
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
862
+
863
+ end
864
+
865
+ defs.define_constant('Errno::EMEDIUMTYPE::Errno') do |klass|
866
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
867
+
868
+ end
869
+
870
+ defs.define_constant('Errno::EMEDIUMTYPE::Strerror') do |klass|
871
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
872
+
873
+ end
874
+
875
+ defs.define_constant('Errno::EMFILE') do |klass|
876
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
877
+
878
+ end
879
+
880
+ defs.define_constant('Errno::EMFILE::Errno') do |klass|
881
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
882
+
883
+ end
884
+
885
+ defs.define_constant('Errno::EMFILE::Strerror') do |klass|
886
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
887
+
888
+ end
889
+
890
+ defs.define_constant('Errno::EMLINK') do |klass|
891
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
892
+
893
+ end
894
+
895
+ defs.define_constant('Errno::EMLINK::Errno') do |klass|
896
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
897
+
898
+ end
899
+
900
+ defs.define_constant('Errno::EMLINK::Strerror') do |klass|
901
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
902
+
903
+ end
904
+
905
+ defs.define_constant('Errno::EMSGSIZE') do |klass|
906
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
907
+
908
+ end
909
+
910
+ defs.define_constant('Errno::EMSGSIZE::Errno') do |klass|
911
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
912
+
913
+ end
914
+
915
+ defs.define_constant('Errno::EMSGSIZE::Strerror') do |klass|
916
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
917
+
918
+ end
919
+
920
+ defs.define_constant('Errno::EMULTIHOP') do |klass|
921
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
922
+
923
+ end
924
+
925
+ defs.define_constant('Errno::EMULTIHOP::Errno') do |klass|
926
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
927
+
928
+ end
929
+
930
+ defs.define_constant('Errno::EMULTIHOP::Strerror') do |klass|
931
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
932
+
933
+ end
934
+
935
+ defs.define_constant('Errno::ENAMETOOLONG') do |klass|
936
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
937
+
938
+ end
939
+
940
+ defs.define_constant('Errno::ENAMETOOLONG::Errno') do |klass|
941
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
942
+
943
+ end
944
+
945
+ defs.define_constant('Errno::ENAMETOOLONG::Strerror') do |klass|
946
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
947
+
948
+ end
949
+
950
+ defs.define_constant('Errno::ENAVAIL') do |klass|
951
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
952
+
953
+ end
954
+
955
+ defs.define_constant('Errno::ENAVAIL::Errno') do |klass|
956
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
957
+
958
+ end
959
+
960
+ defs.define_constant('Errno::ENAVAIL::Strerror') do |klass|
961
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
962
+
963
+ end
964
+
965
+ defs.define_constant('Errno::ENETDOWN') do |klass|
966
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
967
+
968
+ end
969
+
970
+ defs.define_constant('Errno::ENETDOWN::Errno') do |klass|
971
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
972
+
973
+ end
974
+
975
+ defs.define_constant('Errno::ENETDOWN::Strerror') do |klass|
976
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
977
+
978
+ end
979
+
980
+ defs.define_constant('Errno::ENETRESET') do |klass|
981
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
982
+
983
+ end
984
+
985
+ defs.define_constant('Errno::ENETRESET::Errno') do |klass|
986
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
987
+
988
+ end
989
+
990
+ defs.define_constant('Errno::ENETRESET::Strerror') do |klass|
991
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
992
+
993
+ end
994
+
995
+ defs.define_constant('Errno::ENETUNREACH') do |klass|
996
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
997
+
998
+ end
999
+
1000
+ defs.define_constant('Errno::ENETUNREACH::Errno') do |klass|
1001
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1002
+
1003
+ end
1004
+
1005
+ defs.define_constant('Errno::ENETUNREACH::Strerror') do |klass|
1006
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1007
+
1008
+ end
1009
+
1010
+ defs.define_constant('Errno::ENFILE') do |klass|
1011
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1012
+
1013
+ end
1014
+
1015
+ defs.define_constant('Errno::ENFILE::Errno') do |klass|
1016
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1017
+
1018
+ end
1019
+
1020
+ defs.define_constant('Errno::ENFILE::Strerror') do |klass|
1021
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1022
+
1023
+ end
1024
+
1025
+ defs.define_constant('Errno::ENOANO') do |klass|
1026
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1027
+
1028
+ end
1029
+
1030
+ defs.define_constant('Errno::ENOANO::Errno') do |klass|
1031
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1032
+
1033
+ end
1034
+
1035
+ defs.define_constant('Errno::ENOANO::Strerror') do |klass|
1036
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1037
+
1038
+ end
1039
+
1040
+ defs.define_constant('Errno::ENOBUFS') do |klass|
1041
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1042
+
1043
+ end
1044
+
1045
+ defs.define_constant('Errno::ENOBUFS::Errno') do |klass|
1046
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1047
+
1048
+ end
1049
+
1050
+ defs.define_constant('Errno::ENOBUFS::Strerror') do |klass|
1051
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1052
+
1053
+ end
1054
+
1055
+ defs.define_constant('Errno::ENOCSI') do |klass|
1056
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1057
+
1058
+ end
1059
+
1060
+ defs.define_constant('Errno::ENOCSI::Errno') do |klass|
1061
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1062
+
1063
+ end
1064
+
1065
+ defs.define_constant('Errno::ENOCSI::Strerror') do |klass|
1066
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1067
+
1068
+ end
1069
+
1070
+ defs.define_constant('Errno::ENODATA') do |klass|
1071
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1072
+
1073
+ end
1074
+
1075
+ defs.define_constant('Errno::ENODATA::Errno') do |klass|
1076
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1077
+
1078
+ end
1079
+
1080
+ defs.define_constant('Errno::ENODATA::Strerror') do |klass|
1081
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1082
+
1083
+ end
1084
+
1085
+ defs.define_constant('Errno::ENODEV') do |klass|
1086
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1087
+
1088
+ end
1089
+
1090
+ defs.define_constant('Errno::ENODEV::Errno') do |klass|
1091
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1092
+
1093
+ end
1094
+
1095
+ defs.define_constant('Errno::ENODEV::Strerror') do |klass|
1096
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1097
+
1098
+ end
1099
+
1100
+ defs.define_constant('Errno::ENOENT') do |klass|
1101
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1102
+
1103
+ end
1104
+
1105
+ defs.define_constant('Errno::ENOENT::Errno') do |klass|
1106
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1107
+
1108
+ end
1109
+
1110
+ defs.define_constant('Errno::ENOENT::Strerror') do |klass|
1111
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1112
+
1113
+ end
1114
+
1115
+ defs.define_constant('Errno::ENOEXEC') do |klass|
1116
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1117
+
1118
+ end
1119
+
1120
+ defs.define_constant('Errno::ENOEXEC::Errno') do |klass|
1121
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1122
+
1123
+ end
1124
+
1125
+ defs.define_constant('Errno::ENOEXEC::Strerror') do |klass|
1126
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1127
+
1128
+ end
1129
+
1130
+ defs.define_constant('Errno::ENOKEY') do |klass|
1131
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1132
+
1133
+ end
1134
+
1135
+ defs.define_constant('Errno::ENOKEY::Errno') do |klass|
1136
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1137
+
1138
+ end
1139
+
1140
+ defs.define_constant('Errno::ENOKEY::Strerror') do |klass|
1141
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
873
1142
 
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::GlobalScope.definitions.define_constant('Errno::EIDRM::Errno') do |klass|
880
- end
1143
+ end
881
1144
 
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::GlobalScope.definitions.define_constant('Errno::EIDRM::Strerror') do |klass|
888
- end
1145
+ defs.define_constant('Errno::ENOLCK') do |klass|
1146
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
889
1147
 
890
- ##
891
- # Constant: Errno::EILSEQ
892
- # Created: 2013-04-01 18:33:53 +0200
893
- # Platform: rbx 2.0.0.rc1
894
- #
895
- RubyLint::GlobalScope.definitions.define_constant('Errno::EILSEQ') do |klass|
896
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
897
- end
1148
+ end
898
1149
 
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::GlobalScope.definitions.define_constant('Errno::EILSEQ::Errno') do |klass|
905
- end
1150
+ defs.define_constant('Errno::ENOLCK::Errno') do |klass|
1151
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
906
1152
 
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::GlobalScope.definitions.define_constant('Errno::EILSEQ::Strerror') do |klass|
913
- end
1153
+ end
914
1154
 
915
- ##
916
- # Constant: Errno::EINPROGRESS
917
- # Created: 2013-04-01 18:33:53 +0200
918
- # Platform: rbx 2.0.0.rc1
919
- #
920
- RubyLint::GlobalScope.definitions.define_constant('Errno::EINPROGRESS') do |klass|
921
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
922
- end
1155
+ defs.define_constant('Errno::ENOLCK::Strerror') do |klass|
1156
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
923
1157
 
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::GlobalScope.definitions.define_constant('Errno::EINPROGRESS::Errno') do |klass|
930
- end
1158
+ end
931
1159
 
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::GlobalScope.definitions.define_constant('Errno::EINPROGRESS::Strerror') do |klass|
938
- end
1160
+ defs.define_constant('Errno::ENOLINK') do |klass|
1161
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
939
1162
 
940
- ##
941
- # Constant: Errno::EINTR
942
- # Created: 2013-04-01 18:33:53 +0200
943
- # Platform: rbx 2.0.0.rc1
944
- #
945
- RubyLint::GlobalScope.definitions.define_constant('Errno::EINTR') do |klass|
946
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
947
- end
1163
+ end
948
1164
 
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::GlobalScope.definitions.define_constant('Errno::EINTR::Errno') do |klass|
955
- end
1165
+ defs.define_constant('Errno::ENOLINK::Errno') do |klass|
1166
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
956
1167
 
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::GlobalScope.definitions.define_constant('Errno::EINTR::Strerror') do |klass|
963
- end
1168
+ end
964
1169
 
965
- ##
966
- # Constant: Errno::EINVAL
967
- # Created: 2013-04-01 18:33:53 +0200
968
- # Platform: rbx 2.0.0.rc1
969
- #
970
- RubyLint::GlobalScope.definitions.define_constant('Errno::EINVAL') do |klass|
971
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
972
- end
1170
+ defs.define_constant('Errno::ENOLINK::Strerror') do |klass|
1171
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
973
1172
 
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::GlobalScope.definitions.define_constant('Errno::EINVAL::Errno') do |klass|
980
- end
1173
+ end
981
1174
 
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::GlobalScope.definitions.define_constant('Errno::EINVAL::Strerror') do |klass|
988
- end
1175
+ defs.define_constant('Errno::ENOMEDIUM') do |klass|
1176
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
989
1177
 
990
- ##
991
- # Constant: Errno::EIO
992
- # Created: 2013-04-01 18:33:53 +0200
993
- # Platform: rbx 2.0.0.rc1
994
- #
995
- RubyLint::GlobalScope.definitions.define_constant('Errno::EIO') do |klass|
996
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
997
- end
1178
+ end
998
1179
 
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::GlobalScope.definitions.define_constant('Errno::EIO::Errno') do |klass|
1005
- end
1180
+ defs.define_constant('Errno::ENOMEDIUM::Errno') do |klass|
1181
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1006
1182
 
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::GlobalScope.definitions.define_constant('Errno::EIO::Strerror') do |klass|
1013
- end
1183
+ end
1014
1184
 
1015
- ##
1016
- # Constant: Errno::EISCONN
1017
- # Created: 2013-04-01 18:33:53 +0200
1018
- # Platform: rbx 2.0.0.rc1
1019
- #
1020
- RubyLint::GlobalScope.definitions.define_constant('Errno::EISCONN') do |klass|
1021
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1022
- end
1185
+ defs.define_constant('Errno::ENOMEDIUM::Strerror') do |klass|
1186
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1023
1187
 
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::GlobalScope.definitions.define_constant('Errno::EISCONN::Errno') do |klass|
1030
- end
1188
+ end
1031
1189
 
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::GlobalScope.definitions.define_constant('Errno::EISCONN::Strerror') do |klass|
1038
- end
1190
+ defs.define_constant('Errno::ENOMEM') do |klass|
1191
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1039
1192
 
1040
- ##
1041
- # Constant: Errno::EISDIR
1042
- # Created: 2013-04-01 18:33:53 +0200
1043
- # Platform: rbx 2.0.0.rc1
1044
- #
1045
- RubyLint::GlobalScope.definitions.define_constant('Errno::EISDIR') do |klass|
1046
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1047
- end
1193
+ end
1048
1194
 
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::GlobalScope.definitions.define_constant('Errno::EISDIR::Errno') do |klass|
1055
- end
1195
+ defs.define_constant('Errno::ENOMEM::Errno') do |klass|
1196
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1056
1197
 
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::GlobalScope.definitions.define_constant('Errno::EISDIR::Strerror') do |klass|
1063
- end
1198
+ end
1064
1199
 
1065
- ##
1066
- # Constant: Errno::EISNAM
1067
- # Created: 2013-04-01 18:33:53 +0200
1068
- # Platform: rbx 2.0.0.rc1
1069
- #
1070
- RubyLint::GlobalScope.definitions.define_constant('Errno::EISNAM') do |klass|
1071
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1072
- end
1200
+ defs.define_constant('Errno::ENOMEM::Strerror') do |klass|
1201
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1073
1202
 
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::GlobalScope.definitions.define_constant('Errno::EISNAM::Errno') do |klass|
1080
- end
1203
+ end
1081
1204
 
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::GlobalScope.definitions.define_constant('Errno::EISNAM::Strerror') do |klass|
1088
- end
1205
+ defs.define_constant('Errno::ENOMSG') do |klass|
1206
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1089
1207
 
1090
- ##
1091
- # Constant: Errno::EKEYEXPIRED
1092
- # Created: 2013-04-01 18:33:53 +0200
1093
- # Platform: rbx 2.0.0.rc1
1094
- #
1095
- RubyLint::GlobalScope.definitions.define_constant('Errno::EKEYEXPIRED') do |klass|
1096
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1097
- end
1208
+ end
1098
1209
 
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::GlobalScope.definitions.define_constant('Errno::EKEYEXPIRED::Errno') do |klass|
1105
- end
1210
+ defs.define_constant('Errno::ENOMSG::Errno') do |klass|
1211
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1106
1212
 
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::GlobalScope.definitions.define_constant('Errno::EKEYEXPIRED::Strerror') do |klass|
1113
- end
1213
+ end
1114
1214
 
1115
- ##
1116
- # Constant: Errno::EKEYREJECTED
1117
- # Created: 2013-04-01 18:33:53 +0200
1118
- # Platform: rbx 2.0.0.rc1
1119
- #
1120
- RubyLint::GlobalScope.definitions.define_constant('Errno::EKEYREJECTED') do |klass|
1121
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1122
- end
1215
+ defs.define_constant('Errno::ENOMSG::Strerror') do |klass|
1216
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1123
1217
 
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::GlobalScope.definitions.define_constant('Errno::EKEYREJECTED::Errno') do |klass|
1130
- end
1218
+ end
1131
1219
 
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::GlobalScope.definitions.define_constant('Errno::EKEYREJECTED::Strerror') do |klass|
1138
- end
1220
+ defs.define_constant('Errno::ENONET') do |klass|
1221
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1139
1222
 
1140
- ##
1141
- # Constant: Errno::EKEYREVOKED
1142
- # Created: 2013-04-01 18:33:53 +0200
1143
- # Platform: rbx 2.0.0.rc1
1144
- #
1145
- RubyLint::GlobalScope.definitions.define_constant('Errno::EKEYREVOKED') do |klass|
1146
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1147
- end
1223
+ end
1148
1224
 
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::GlobalScope.definitions.define_constant('Errno::EKEYREVOKED::Errno') do |klass|
1155
- end
1225
+ defs.define_constant('Errno::ENONET::Errno') do |klass|
1226
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1156
1227
 
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::GlobalScope.definitions.define_constant('Errno::EKEYREVOKED::Strerror') do |klass|
1163
- end
1228
+ end
1164
1229
 
1165
- ##
1166
- # Constant: Errno::EL2HLT
1167
- # Created: 2013-04-01 18:33:53 +0200
1168
- # Platform: rbx 2.0.0.rc1
1169
- #
1170
- RubyLint::GlobalScope.definitions.define_constant('Errno::EL2HLT') do |klass|
1171
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1172
- end
1230
+ defs.define_constant('Errno::ENONET::Strerror') do |klass|
1231
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1173
1232
 
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::GlobalScope.definitions.define_constant('Errno::EL2HLT::Errno') do |klass|
1180
- end
1233
+ end
1181
1234
 
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::GlobalScope.definitions.define_constant('Errno::EL2HLT::Strerror') do |klass|
1188
- end
1235
+ defs.define_constant('Errno::ENOPKG') do |klass|
1236
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1189
1237
 
1190
- ##
1191
- # Constant: Errno::EL2NSYNC
1192
- # Created: 2013-04-01 18:33:53 +0200
1193
- # Platform: rbx 2.0.0.rc1
1194
- #
1195
- RubyLint::GlobalScope.definitions.define_constant('Errno::EL2NSYNC') do |klass|
1196
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1197
- end
1238
+ end
1198
1239
 
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::GlobalScope.definitions.define_constant('Errno::EL2NSYNC::Errno') do |klass|
1205
- end
1240
+ defs.define_constant('Errno::ENOPKG::Errno') do |klass|
1241
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1206
1242
 
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::GlobalScope.definitions.define_constant('Errno::EL2NSYNC::Strerror') do |klass|
1213
- end
1243
+ end
1214
1244
 
1215
- ##
1216
- # Constant: Errno::EL3HLT
1217
- # Created: 2013-04-01 18:33:53 +0200
1218
- # Platform: rbx 2.0.0.rc1
1219
- #
1220
- RubyLint::GlobalScope.definitions.define_constant('Errno::EL3HLT') do |klass|
1221
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1222
- end
1245
+ defs.define_constant('Errno::ENOPKG::Strerror') do |klass|
1246
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1223
1247
 
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::GlobalScope.definitions.define_constant('Errno::EL3HLT::Errno') do |klass|
1230
- end
1248
+ end
1231
1249
 
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::GlobalScope.definitions.define_constant('Errno::EL3HLT::Strerror') do |klass|
1238
- end
1250
+ defs.define_constant('Errno::ENOPROTOOPT') do |klass|
1251
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1239
1252
 
1240
- ##
1241
- # Constant: Errno::EL3RST
1242
- # Created: 2013-04-01 18:33:53 +0200
1243
- # Platform: rbx 2.0.0.rc1
1244
- #
1245
- RubyLint::GlobalScope.definitions.define_constant('Errno::EL3RST') do |klass|
1246
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1247
- end
1253
+ end
1248
1254
 
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::GlobalScope.definitions.define_constant('Errno::EL3RST::Errno') do |klass|
1255
- end
1255
+ defs.define_constant('Errno::ENOPROTOOPT::Errno') do |klass|
1256
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1256
1257
 
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::GlobalScope.definitions.define_constant('Errno::EL3RST::Strerror') do |klass|
1263
- end
1258
+ end
1264
1259
 
1265
- ##
1266
- # Constant: Errno::ELIBACC
1267
- # Created: 2013-04-01 18:33:53 +0200
1268
- # Platform: rbx 2.0.0.rc1
1269
- #
1270
- RubyLint::GlobalScope.definitions.define_constant('Errno::ELIBACC') do |klass|
1271
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1272
- end
1260
+ defs.define_constant('Errno::ENOPROTOOPT::Strerror') do |klass|
1261
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1273
1262
 
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::GlobalScope.definitions.define_constant('Errno::ELIBACC::Errno') do |klass|
1280
- end
1263
+ end
1281
1264
 
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::GlobalScope.definitions.define_constant('Errno::ELIBACC::Strerror') do |klass|
1288
- end
1265
+ defs.define_constant('Errno::ENOSPC') do |klass|
1266
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1289
1267
 
1290
- ##
1291
- # Constant: Errno::ELIBBAD
1292
- # Created: 2013-04-01 18:33:53 +0200
1293
- # Platform: rbx 2.0.0.rc1
1294
- #
1295
- RubyLint::GlobalScope.definitions.define_constant('Errno::ELIBBAD') do |klass|
1296
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1297
- end
1268
+ end
1298
1269
 
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::GlobalScope.definitions.define_constant('Errno::ELIBBAD::Errno') do |klass|
1305
- end
1270
+ defs.define_constant('Errno::ENOSPC::Errno') do |klass|
1271
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1306
1272
 
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::GlobalScope.definitions.define_constant('Errno::ELIBBAD::Strerror') do |klass|
1313
- end
1273
+ end
1314
1274
 
1315
- ##
1316
- # Constant: Errno::ELIBEXEC
1317
- # Created: 2013-04-01 18:33:53 +0200
1318
- # Platform: rbx 2.0.0.rc1
1319
- #
1320
- RubyLint::GlobalScope.definitions.define_constant('Errno::ELIBEXEC') do |klass|
1321
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1322
- end
1275
+ defs.define_constant('Errno::ENOSPC::Strerror') do |klass|
1276
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1323
1277
 
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::GlobalScope.definitions.define_constant('Errno::ELIBEXEC::Errno') do |klass|
1330
- end
1278
+ end
1331
1279
 
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::GlobalScope.definitions.define_constant('Errno::ELIBEXEC::Strerror') do |klass|
1338
- end
1280
+ defs.define_constant('Errno::ENOSR') do |klass|
1281
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1339
1282
 
1340
- ##
1341
- # Constant: Errno::ELIBMAX
1342
- # Created: 2013-04-01 18:33:53 +0200
1343
- # Platform: rbx 2.0.0.rc1
1344
- #
1345
- RubyLint::GlobalScope.definitions.define_constant('Errno::ELIBMAX') do |klass|
1346
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1347
- end
1283
+ end
1348
1284
 
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::GlobalScope.definitions.define_constant('Errno::ELIBMAX::Errno') do |klass|
1355
- end
1285
+ defs.define_constant('Errno::ENOSR::Errno') do |klass|
1286
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1356
1287
 
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::GlobalScope.definitions.define_constant('Errno::ELIBMAX::Strerror') do |klass|
1363
- end
1288
+ end
1364
1289
 
1365
- ##
1366
- # Constant: Errno::ELIBSCN
1367
- # Created: 2013-04-01 18:33:53 +0200
1368
- # Platform: rbx 2.0.0.rc1
1369
- #
1370
- RubyLint::GlobalScope.definitions.define_constant('Errno::ELIBSCN') do |klass|
1371
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1372
- end
1290
+ defs.define_constant('Errno::ENOSR::Strerror') do |klass|
1291
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1373
1292
 
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::GlobalScope.definitions.define_constant('Errno::ELIBSCN::Errno') do |klass|
1380
- end
1293
+ end
1381
1294
 
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::GlobalScope.definitions.define_constant('Errno::ELIBSCN::Strerror') do |klass|
1388
- end
1295
+ defs.define_constant('Errno::ENOSTR') do |klass|
1296
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1389
1297
 
1390
- ##
1391
- # Constant: Errno::ELNRNG
1392
- # Created: 2013-04-01 18:33:53 +0200
1393
- # Platform: rbx 2.0.0.rc1
1394
- #
1395
- RubyLint::GlobalScope.definitions.define_constant('Errno::ELNRNG') do |klass|
1396
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1397
- end
1298
+ end
1398
1299
 
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::GlobalScope.definitions.define_constant('Errno::ELNRNG::Errno') do |klass|
1405
- end
1300
+ defs.define_constant('Errno::ENOSTR::Errno') do |klass|
1301
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1406
1302
 
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::GlobalScope.definitions.define_constant('Errno::ELNRNG::Strerror') do |klass|
1413
- end
1303
+ end
1414
1304
 
1415
- ##
1416
- # Constant: Errno::ELOOP
1417
- # Created: 2013-04-01 18:33:53 +0200
1418
- # Platform: rbx 2.0.0.rc1
1419
- #
1420
- RubyLint::GlobalScope.definitions.define_constant('Errno::ELOOP') do |klass|
1421
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1422
- end
1305
+ defs.define_constant('Errno::ENOSTR::Strerror') do |klass|
1306
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1423
1307
 
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::GlobalScope.definitions.define_constant('Errno::ELOOP::Errno') do |klass|
1430
- end
1308
+ end
1431
1309
 
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::GlobalScope.definitions.define_constant('Errno::ELOOP::Strerror') do |klass|
1438
- end
1310
+ defs.define_constant('Errno::ENOSYS') do |klass|
1311
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1439
1312
 
1440
- ##
1441
- # Constant: Errno::EMEDIUMTYPE
1442
- # Created: 2013-04-01 18:33:53 +0200
1443
- # Platform: rbx 2.0.0.rc1
1444
- #
1445
- RubyLint::GlobalScope.definitions.define_constant('Errno::EMEDIUMTYPE') do |klass|
1446
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1447
- end
1313
+ end
1448
1314
 
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::GlobalScope.definitions.define_constant('Errno::EMEDIUMTYPE::Errno') do |klass|
1455
- end
1315
+ defs.define_constant('Errno::ENOSYS::Errno') do |klass|
1316
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1456
1317
 
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::GlobalScope.definitions.define_constant('Errno::EMEDIUMTYPE::Strerror') do |klass|
1463
- end
1318
+ end
1464
1319
 
1465
- ##
1466
- # Constant: Errno::EMFILE
1467
- # Created: 2013-04-01 18:33:53 +0200
1468
- # Platform: rbx 2.0.0.rc1
1469
- #
1470
- RubyLint::GlobalScope.definitions.define_constant('Errno::EMFILE') do |klass|
1471
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1472
- end
1320
+ defs.define_constant('Errno::ENOSYS::Strerror') do |klass|
1321
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1473
1322
 
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::GlobalScope.definitions.define_constant('Errno::EMFILE::Errno') do |klass|
1480
- end
1323
+ end
1481
1324
 
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::GlobalScope.definitions.define_constant('Errno::EMFILE::Strerror') do |klass|
1488
- end
1325
+ defs.define_constant('Errno::ENOTBLK') do |klass|
1326
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1489
1327
 
1490
- ##
1491
- # Constant: Errno::EMLINK
1492
- # Created: 2013-04-01 18:33:53 +0200
1493
- # Platform: rbx 2.0.0.rc1
1494
- #
1495
- RubyLint::GlobalScope.definitions.define_constant('Errno::EMLINK') do |klass|
1496
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1497
- end
1328
+ end
1498
1329
 
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::GlobalScope.definitions.define_constant('Errno::EMLINK::Errno') do |klass|
1505
- end
1330
+ defs.define_constant('Errno::ENOTBLK::Errno') do |klass|
1331
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1506
1332
 
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::GlobalScope.definitions.define_constant('Errno::EMLINK::Strerror') do |klass|
1513
- end
1333
+ end
1514
1334
 
1515
- ##
1516
- # Constant: Errno::EMSGSIZE
1517
- # Created: 2013-04-01 18:33:53 +0200
1518
- # Platform: rbx 2.0.0.rc1
1519
- #
1520
- RubyLint::GlobalScope.definitions.define_constant('Errno::EMSGSIZE') do |klass|
1521
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1522
- end
1335
+ defs.define_constant('Errno::ENOTBLK::Strerror') do |klass|
1336
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1523
1337
 
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::GlobalScope.definitions.define_constant('Errno::EMSGSIZE::Errno') do |klass|
1530
- end
1338
+ end
1531
1339
 
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::GlobalScope.definitions.define_constant('Errno::EMSGSIZE::Strerror') do |klass|
1538
- end
1340
+ defs.define_constant('Errno::ENOTCONN') do |klass|
1341
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1539
1342
 
1540
- ##
1541
- # Constant: Errno::EMULTIHOP
1542
- # Created: 2013-04-01 18:33:53 +0200
1543
- # Platform: rbx 2.0.0.rc1
1544
- #
1545
- RubyLint::GlobalScope.definitions.define_constant('Errno::EMULTIHOP') do |klass|
1546
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1547
- end
1343
+ end
1548
1344
 
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::GlobalScope.definitions.define_constant('Errno::EMULTIHOP::Errno') do |klass|
1555
- end
1345
+ defs.define_constant('Errno::ENOTCONN::Errno') do |klass|
1346
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1556
1347
 
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::GlobalScope.definitions.define_constant('Errno::EMULTIHOP::Strerror') do |klass|
1563
- end
1348
+ end
1564
1349
 
1565
- ##
1566
- # Constant: Errno::ENAMETOOLONG
1567
- # Created: 2013-04-01 18:33:53 +0200
1568
- # Platform: rbx 2.0.0.rc1
1569
- #
1570
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENAMETOOLONG') do |klass|
1571
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1572
- end
1350
+ defs.define_constant('Errno::ENOTCONN::Strerror') do |klass|
1351
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1573
1352
 
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::GlobalScope.definitions.define_constant('Errno::ENAMETOOLONG::Errno') do |klass|
1580
- end
1353
+ end
1581
1354
 
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::GlobalScope.definitions.define_constant('Errno::ENAMETOOLONG::Strerror') do |klass|
1588
- end
1355
+ defs.define_constant('Errno::ENOTDIR') do |klass|
1356
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1589
1357
 
1590
- ##
1591
- # Constant: Errno::ENAVAIL
1592
- # Created: 2013-04-01 18:33:53 +0200
1593
- # Platform: rbx 2.0.0.rc1
1594
- #
1595
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENAVAIL') do |klass|
1596
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1597
- end
1358
+ end
1598
1359
 
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::GlobalScope.definitions.define_constant('Errno::ENAVAIL::Errno') do |klass|
1605
- end
1360
+ defs.define_constant('Errno::ENOTDIR::Errno') do |klass|
1361
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1606
1362
 
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::GlobalScope.definitions.define_constant('Errno::ENAVAIL::Strerror') do |klass|
1613
- end
1363
+ end
1364
+
1365
+ defs.define_constant('Errno::ENOTDIR::Strerror') do |klass|
1366
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1367
+
1368
+ end
1369
+
1370
+ defs.define_constant('Errno::ENOTEMPTY') do |klass|
1371
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1372
+
1373
+ end
1374
+
1375
+ defs.define_constant('Errno::ENOTEMPTY::Errno') do |klass|
1376
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1377
+
1378
+ end
1379
+
1380
+ defs.define_constant('Errno::ENOTEMPTY::Strerror') do |klass|
1381
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1382
+
1383
+ end
1384
+
1385
+ defs.define_constant('Errno::ENOTNAM') do |klass|
1386
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1387
+
1388
+ end
1389
+
1390
+ defs.define_constant('Errno::ENOTNAM::Errno') do |klass|
1391
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1392
+
1393
+ end
1394
+
1395
+ defs.define_constant('Errno::ENOTNAM::Strerror') do |klass|
1396
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1397
+
1398
+ end
1399
+
1400
+ defs.define_constant('Errno::ENOTRECOVERABLE') do |klass|
1401
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1402
+
1403
+ end
1404
+
1405
+ defs.define_constant('Errno::ENOTRECOVERABLE::Errno') do |klass|
1406
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1407
+
1408
+ end
1409
+
1410
+ defs.define_constant('Errno::ENOTRECOVERABLE::Strerror') do |klass|
1411
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1412
+
1413
+ end
1414
+
1415
+ defs.define_constant('Errno::ENOTSOCK') do |klass|
1416
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1417
+
1418
+ end
1614
1419
 
1615
- ##
1616
- # Constant: Errno::ENETDOWN
1617
- # Created: 2013-04-01 18:33:53 +0200
1618
- # Platform: rbx 2.0.0.rc1
1619
- #
1620
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENETDOWN') do |klass|
1621
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1622
- end
1420
+ defs.define_constant('Errno::ENOTSOCK::Errno') do |klass|
1421
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1623
1422
 
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::GlobalScope.definitions.define_constant('Errno::ENETDOWN::Errno') do |klass|
1630
- end
1423
+ end
1631
1424
 
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::GlobalScope.definitions.define_constant('Errno::ENETDOWN::Strerror') do |klass|
1638
- end
1425
+ defs.define_constant('Errno::ENOTSOCK::Strerror') do |klass|
1426
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1639
1427
 
1640
- ##
1641
- # Constant: Errno::ENETRESET
1642
- # Created: 2013-04-01 18:33:53 +0200
1643
- # Platform: rbx 2.0.0.rc1
1644
- #
1645
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENETRESET') do |klass|
1646
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1647
- end
1428
+ end
1648
1429
 
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::GlobalScope.definitions.define_constant('Errno::ENETRESET::Errno') do |klass|
1655
- end
1430
+ defs.define_constant('Errno::ENOTTY') do |klass|
1431
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1656
1432
 
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::GlobalScope.definitions.define_constant('Errno::ENETRESET::Strerror') do |klass|
1663
- end
1433
+ end
1664
1434
 
1665
- ##
1666
- # Constant: Errno::ENETUNREACH
1667
- # Created: 2013-04-01 18:33:53 +0200
1668
- # Platform: rbx 2.0.0.rc1
1669
- #
1670
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENETUNREACH') do |klass|
1671
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1672
- end
1435
+ defs.define_constant('Errno::ENOTTY::Errno') do |klass|
1436
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1673
1437
 
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::GlobalScope.definitions.define_constant('Errno::ENETUNREACH::Errno') do |klass|
1680
- end
1438
+ end
1681
1439
 
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::GlobalScope.definitions.define_constant('Errno::ENETUNREACH::Strerror') do |klass|
1688
- end
1440
+ defs.define_constant('Errno::ENOTTY::Strerror') do |klass|
1441
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1689
1442
 
1690
- ##
1691
- # Constant: Errno::ENFILE
1692
- # Created: 2013-04-01 18:33:53 +0200
1693
- # Platform: rbx 2.0.0.rc1
1694
- #
1695
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENFILE') do |klass|
1696
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1697
- end
1443
+ end
1698
1444
 
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::GlobalScope.definitions.define_constant('Errno::ENFILE::Errno') do |klass|
1705
- end
1445
+ defs.define_constant('Errno::ENOTUNIQ') do |klass|
1446
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1706
1447
 
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::GlobalScope.definitions.define_constant('Errno::ENFILE::Strerror') do |klass|
1713
- end
1448
+ end
1714
1449
 
1715
- ##
1716
- # Constant: Errno::ENOANO
1717
- # Created: 2013-04-01 18:33:53 +0200
1718
- # Platform: rbx 2.0.0.rc1
1719
- #
1720
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOANO') do |klass|
1721
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1722
- end
1450
+ defs.define_constant('Errno::ENOTUNIQ::Errno') do |klass|
1451
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1723
1452
 
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::GlobalScope.definitions.define_constant('Errno::ENOANO::Errno') do |klass|
1730
- end
1453
+ end
1731
1454
 
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::GlobalScope.definitions.define_constant('Errno::ENOANO::Strerror') do |klass|
1738
- end
1455
+ defs.define_constant('Errno::ENOTUNIQ::Strerror') do |klass|
1456
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1739
1457
 
1740
- ##
1741
- # Constant: Errno::ENOBUFS
1742
- # Created: 2013-04-01 18:33:53 +0200
1743
- # Platform: rbx 2.0.0.rc1
1744
- #
1745
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOBUFS') do |klass|
1746
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1747
- end
1458
+ end
1748
1459
 
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::GlobalScope.definitions.define_constant('Errno::ENOBUFS::Errno') do |klass|
1755
- end
1460
+ defs.define_constant('Errno::ENXIO') do |klass|
1461
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1756
1462
 
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::GlobalScope.definitions.define_constant('Errno::ENOBUFS::Strerror') do |klass|
1763
- end
1463
+ end
1764
1464
 
1765
- ##
1766
- # Constant: Errno::ENOCSI
1767
- # Created: 2013-04-01 18:33:53 +0200
1768
- # Platform: rbx 2.0.0.rc1
1769
- #
1770
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOCSI') do |klass|
1771
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1772
- end
1465
+ defs.define_constant('Errno::ENXIO::Errno') do |klass|
1466
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1773
1467
 
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::GlobalScope.definitions.define_constant('Errno::ENOCSI::Errno') do |klass|
1780
- end
1468
+ end
1781
1469
 
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::GlobalScope.definitions.define_constant('Errno::ENOCSI::Strerror') do |klass|
1788
- end
1470
+ defs.define_constant('Errno::ENXIO::Strerror') do |klass|
1471
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1789
1472
 
1790
- ##
1791
- # Constant: Errno::ENODATA
1792
- # Created: 2013-04-01 18:33:53 +0200
1793
- # Platform: rbx 2.0.0.rc1
1794
- #
1795
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENODATA') do |klass|
1796
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1797
- end
1473
+ end
1798
1474
 
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::GlobalScope.definitions.define_constant('Errno::ENODATA::Errno') do |klass|
1805
- end
1475
+ defs.define_constant('Errno::EOPNOTSUPP') do |klass|
1476
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1806
1477
 
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::GlobalScope.definitions.define_constant('Errno::ENODATA::Strerror') do |klass|
1813
- end
1478
+ end
1814
1479
 
1815
- ##
1816
- # Constant: Errno::ENODEV
1817
- # Created: 2013-04-01 18:33:53 +0200
1818
- # Platform: rbx 2.0.0.rc1
1819
- #
1820
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENODEV') do |klass|
1821
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1822
- end
1480
+ defs.define_constant('Errno::EOPNOTSUPP::Errno') do |klass|
1481
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1823
1482
 
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::GlobalScope.definitions.define_constant('Errno::ENODEV::Errno') do |klass|
1830
- end
1483
+ end
1831
1484
 
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::GlobalScope.definitions.define_constant('Errno::ENODEV::Strerror') do |klass|
1838
- end
1485
+ defs.define_constant('Errno::EOPNOTSUPP::Strerror') do |klass|
1486
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1839
1487
 
1840
- ##
1841
- # Constant: Errno::ENOENT
1842
- # Created: 2013-04-01 18:33:53 +0200
1843
- # Platform: rbx 2.0.0.rc1
1844
- #
1845
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOENT') do |klass|
1846
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1847
- end
1488
+ end
1848
1489
 
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::GlobalScope.definitions.define_constant('Errno::ENOENT::Errno') do |klass|
1855
- end
1490
+ defs.define_constant('Errno::EOVERFLOW') do |klass|
1491
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1856
1492
 
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::GlobalScope.definitions.define_constant('Errno::ENOENT::Strerror') do |klass|
1863
- end
1493
+ end
1864
1494
 
1865
- ##
1866
- # Constant: Errno::ENOEXEC
1867
- # Created: 2013-04-01 18:33:53 +0200
1868
- # Platform: rbx 2.0.0.rc1
1869
- #
1870
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOEXEC') do |klass|
1871
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1872
- end
1495
+ defs.define_constant('Errno::EOVERFLOW::Errno') do |klass|
1496
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1873
1497
 
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::GlobalScope.definitions.define_constant('Errno::ENOEXEC::Errno') do |klass|
1880
- end
1498
+ end
1881
1499
 
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::GlobalScope.definitions.define_constant('Errno::ENOEXEC::Strerror') do |klass|
1888
- end
1500
+ defs.define_constant('Errno::EOVERFLOW::Strerror') do |klass|
1501
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1889
1502
 
1890
- ##
1891
- # Constant: Errno::ENOKEY
1892
- # Created: 2013-04-01 18:33:53 +0200
1893
- # Platform: rbx 2.0.0.rc1
1894
- #
1895
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOKEY') do |klass|
1896
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1897
- end
1503
+ end
1898
1504
 
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::GlobalScope.definitions.define_constant('Errno::ENOKEY::Errno') do |klass|
1905
- end
1505
+ defs.define_constant('Errno::EOWNERDEAD') do |klass|
1506
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1906
1507
 
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::GlobalScope.definitions.define_constant('Errno::ENOKEY::Strerror') do |klass|
1913
- end
1508
+ end
1914
1509
 
1915
- ##
1916
- # Constant: Errno::ENOLCK
1917
- # Created: 2013-04-01 18:33:53 +0200
1918
- # Platform: rbx 2.0.0.rc1
1919
- #
1920
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOLCK') do |klass|
1921
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1922
- end
1510
+ defs.define_constant('Errno::EOWNERDEAD::Errno') do |klass|
1511
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1923
1512
 
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::GlobalScope.definitions.define_constant('Errno::ENOLCK::Errno') do |klass|
1930
- end
1513
+ end
1931
1514
 
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::GlobalScope.definitions.define_constant('Errno::ENOLCK::Strerror') do |klass|
1938
- end
1515
+ defs.define_constant('Errno::EOWNERDEAD::Strerror') do |klass|
1516
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1939
1517
 
1940
- ##
1941
- # Constant: Errno::ENOLINK
1942
- # Created: 2013-04-01 18:33:53 +0200
1943
- # Platform: rbx 2.0.0.rc1
1944
- #
1945
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOLINK') do |klass|
1946
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1947
- end
1518
+ end
1948
1519
 
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::GlobalScope.definitions.define_constant('Errno::ENOLINK::Errno') do |klass|
1955
- end
1520
+ defs.define_constant('Errno::EPERM') do |klass|
1521
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1956
1522
 
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::GlobalScope.definitions.define_constant('Errno::ENOLINK::Strerror') do |klass|
1963
- end
1523
+ end
1964
1524
 
1965
- ##
1966
- # Constant: Errno::ENOMEDIUM
1967
- # Created: 2013-04-01 18:33:53 +0200
1968
- # Platform: rbx 2.0.0.rc1
1969
- #
1970
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOMEDIUM') do |klass|
1971
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1972
- end
1525
+ defs.define_constant('Errno::EPERM::Errno') do |klass|
1526
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1973
1527
 
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::GlobalScope.definitions.define_constant('Errno::ENOMEDIUM::Errno') do |klass|
1980
- end
1528
+ end
1981
1529
 
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::GlobalScope.definitions.define_constant('Errno::ENOMEDIUM::Strerror') do |klass|
1988
- end
1530
+ defs.define_constant('Errno::EPERM::Strerror') do |klass|
1531
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1989
1532
 
1990
- ##
1991
- # Constant: Errno::ENOMEM
1992
- # Created: 2013-04-01 18:33:53 +0200
1993
- # Platform: rbx 2.0.0.rc1
1994
- #
1995
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOMEM') do |klass|
1996
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
1997
- end
1533
+ end
1998
1534
 
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::GlobalScope.definitions.define_constant('Errno::ENOMEM::Errno') do |klass|
2005
- end
1535
+ defs.define_constant('Errno::EPFNOSUPPORT') do |klass|
1536
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2006
1537
 
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::GlobalScope.definitions.define_constant('Errno::ENOMEM::Strerror') do |klass|
2013
- end
1538
+ end
2014
1539
 
2015
- ##
2016
- # Constant: Errno::ENOMSG
2017
- # Created: 2013-04-01 18:33:53 +0200
2018
- # Platform: rbx 2.0.0.rc1
2019
- #
2020
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOMSG') do |klass|
2021
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2022
- end
1540
+ defs.define_constant('Errno::EPFNOSUPPORT::Errno') do |klass|
1541
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2023
1542
 
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::GlobalScope.definitions.define_constant('Errno::ENOMSG::Errno') do |klass|
2030
- end
1543
+ end
2031
1544
 
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::GlobalScope.definitions.define_constant('Errno::ENOMSG::Strerror') do |klass|
2038
- end
1545
+ defs.define_constant('Errno::EPFNOSUPPORT::Strerror') do |klass|
1546
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2039
1547
 
2040
- ##
2041
- # Constant: Errno::ENONET
2042
- # Created: 2013-04-01 18:33:53 +0200
2043
- # Platform: rbx 2.0.0.rc1
2044
- #
2045
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENONET') do |klass|
2046
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2047
- end
1548
+ end
2048
1549
 
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::GlobalScope.definitions.define_constant('Errno::ENONET::Errno') do |klass|
2055
- end
1550
+ defs.define_constant('Errno::EPIPE') do |klass|
1551
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2056
1552
 
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::GlobalScope.definitions.define_constant('Errno::ENONET::Strerror') do |klass|
2063
- end
1553
+ end
2064
1554
 
2065
- ##
2066
- # Constant: Errno::ENOPKG
2067
- # Created: 2013-04-01 18:33:53 +0200
2068
- # Platform: rbx 2.0.0.rc1
2069
- #
2070
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOPKG') do |klass|
2071
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2072
- end
1555
+ defs.define_constant('Errno::EPIPE::Errno') do |klass|
1556
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2073
1557
 
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::GlobalScope.definitions.define_constant('Errno::ENOPKG::Errno') do |klass|
2080
- end
1558
+ end
2081
1559
 
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::GlobalScope.definitions.define_constant('Errno::ENOPKG::Strerror') do |klass|
2088
- end
1560
+ defs.define_constant('Errno::EPIPE::Strerror') do |klass|
1561
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2089
1562
 
2090
- ##
2091
- # Constant: Errno::ENOPROTOOPT
2092
- # Created: 2013-04-01 18:33:53 +0200
2093
- # Platform: rbx 2.0.0.rc1
2094
- #
2095
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOPROTOOPT') do |klass|
2096
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2097
- end
1563
+ end
2098
1564
 
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::GlobalScope.definitions.define_constant('Errno::ENOPROTOOPT::Errno') do |klass|
2105
- end
1565
+ defs.define_constant('Errno::EPROTO') do |klass|
1566
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2106
1567
 
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::GlobalScope.definitions.define_constant('Errno::ENOPROTOOPT::Strerror') do |klass|
2113
- end
1568
+ end
2114
1569
 
2115
- ##
2116
- # Constant: Errno::ENOSPC
2117
- # Created: 2013-04-01 18:33:53 +0200
2118
- # Platform: rbx 2.0.0.rc1
2119
- #
2120
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOSPC') do |klass|
2121
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2122
- end
1570
+ defs.define_constant('Errno::EPROTO::Errno') do |klass|
1571
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2123
1572
 
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::GlobalScope.definitions.define_constant('Errno::ENOSPC::Errno') do |klass|
2130
- end
1573
+ end
2131
1574
 
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::GlobalScope.definitions.define_constant('Errno::ENOSPC::Strerror') do |klass|
2138
- end
1575
+ defs.define_constant('Errno::EPROTO::Strerror') do |klass|
1576
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2139
1577
 
2140
- ##
2141
- # Constant: Errno::ENOSR
2142
- # Created: 2013-04-01 18:33:53 +0200
2143
- # Platform: rbx 2.0.0.rc1
2144
- #
2145
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOSR') do |klass|
2146
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2147
- end
1578
+ end
2148
1579
 
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::GlobalScope.definitions.define_constant('Errno::ENOSR::Errno') do |klass|
2155
- end
1580
+ defs.define_constant('Errno::EPROTONOSUPPORT') do |klass|
1581
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2156
1582
 
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::GlobalScope.definitions.define_constant('Errno::ENOSR::Strerror') do |klass|
2163
- end
1583
+ end
2164
1584
 
2165
- ##
2166
- # Constant: Errno::ENOSTR
2167
- # Created: 2013-04-01 18:33:53 +0200
2168
- # Platform: rbx 2.0.0.rc1
2169
- #
2170
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOSTR') do |klass|
2171
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2172
- end
1585
+ defs.define_constant('Errno::EPROTONOSUPPORT::Errno') do |klass|
1586
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2173
1587
 
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::GlobalScope.definitions.define_constant('Errno::ENOSTR::Errno') do |klass|
2180
- end
1588
+ end
2181
1589
 
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::GlobalScope.definitions.define_constant('Errno::ENOSTR::Strerror') do |klass|
2188
- end
1590
+ defs.define_constant('Errno::EPROTONOSUPPORT::Strerror') do |klass|
1591
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2189
1592
 
2190
- ##
2191
- # Constant: Errno::ENOSYS
2192
- # Created: 2013-04-01 18:33:53 +0200
2193
- # Platform: rbx 2.0.0.rc1
2194
- #
2195
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOSYS') do |klass|
2196
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2197
- end
1593
+ end
2198
1594
 
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::GlobalScope.definitions.define_constant('Errno::ENOSYS::Errno') do |klass|
2205
- end
1595
+ defs.define_constant('Errno::EPROTOTYPE') do |klass|
1596
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2206
1597
 
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::GlobalScope.definitions.define_constant('Errno::ENOSYS::Strerror') do |klass|
2213
- end
1598
+ end
2214
1599
 
2215
- ##
2216
- # Constant: Errno::ENOTBLK
2217
- # Created: 2013-04-01 18:33:53 +0200
2218
- # Platform: rbx 2.0.0.rc1
2219
- #
2220
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOTBLK') do |klass|
2221
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2222
- end
1600
+ defs.define_constant('Errno::EPROTOTYPE::Errno') do |klass|
1601
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2223
1602
 
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::GlobalScope.definitions.define_constant('Errno::ENOTBLK::Errno') do |klass|
2230
- end
1603
+ end
2231
1604
 
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::GlobalScope.definitions.define_constant('Errno::ENOTBLK::Strerror') do |klass|
2238
- end
1605
+ defs.define_constant('Errno::EPROTOTYPE::Strerror') do |klass|
1606
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2239
1607
 
2240
- ##
2241
- # Constant: Errno::ENOTCONN
2242
- # Created: 2013-04-01 18:33:53 +0200
2243
- # Platform: rbx 2.0.0.rc1
2244
- #
2245
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOTCONN') do |klass|
2246
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2247
- end
1608
+ end
2248
1609
 
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::GlobalScope.definitions.define_constant('Errno::ENOTCONN::Errno') do |klass|
2255
- end
1610
+ defs.define_constant('Errno::ERANGE') do |klass|
1611
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2256
1612
 
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::GlobalScope.definitions.define_constant('Errno::ENOTCONN::Strerror') do |klass|
2263
- end
1613
+ end
2264
1614
 
2265
- ##
2266
- # Constant: Errno::ENOTDIR
2267
- # Created: 2013-04-01 18:33:53 +0200
2268
- # Platform: rbx 2.0.0.rc1
2269
- #
2270
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOTDIR') do |klass|
2271
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2272
- end
1615
+ defs.define_constant('Errno::ERANGE::Errno') do |klass|
1616
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2273
1617
 
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::GlobalScope.definitions.define_constant('Errno::ENOTDIR::Errno') do |klass|
2280
- end
1618
+ end
2281
1619
 
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::GlobalScope.definitions.define_constant('Errno::ENOTDIR::Strerror') do |klass|
2288
- end
1620
+ defs.define_constant('Errno::ERANGE::Strerror') do |klass|
1621
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2289
1622
 
2290
- ##
2291
- # Constant: Errno::ENOTEMPTY
2292
- # Created: 2013-04-01 18:33:53 +0200
2293
- # Platform: rbx 2.0.0.rc1
2294
- #
2295
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOTEMPTY') do |klass|
2296
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2297
- end
1623
+ end
2298
1624
 
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::GlobalScope.definitions.define_constant('Errno::ENOTEMPTY::Errno') do |klass|
2305
- end
1625
+ defs.define_constant('Errno::EREMCHG') do |klass|
1626
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2306
1627
 
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::GlobalScope.definitions.define_constant('Errno::ENOTEMPTY::Strerror') do |klass|
2313
- end
1628
+ end
2314
1629
 
2315
- ##
2316
- # Constant: Errno::ENOTNAM
2317
- # Created: 2013-04-01 18:33:53 +0200
2318
- # Platform: rbx 2.0.0.rc1
2319
- #
2320
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOTNAM') do |klass|
2321
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2322
- end
1630
+ defs.define_constant('Errno::EREMCHG::Errno') do |klass|
1631
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2323
1632
 
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::GlobalScope.definitions.define_constant('Errno::ENOTNAM::Errno') do |klass|
2330
- end
1633
+ end
2331
1634
 
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::GlobalScope.definitions.define_constant('Errno::ENOTNAM::Strerror') do |klass|
2338
- end
1635
+ defs.define_constant('Errno::EREMCHG::Strerror') do |klass|
1636
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2339
1637
 
2340
- ##
2341
- # Constant: Errno::ENOTRECOVERABLE
2342
- # Created: 2013-04-01 18:33:53 +0200
2343
- # Platform: rbx 2.0.0.rc1
2344
- #
2345
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOTRECOVERABLE') do |klass|
2346
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2347
- end
1638
+ end
2348
1639
 
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::GlobalScope.definitions.define_constant('Errno::ENOTRECOVERABLE::Errno') do |klass|
2355
- end
1640
+ defs.define_constant('Errno::EREMOTE') do |klass|
1641
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2356
1642
 
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::GlobalScope.definitions.define_constant('Errno::ENOTRECOVERABLE::Strerror') do |klass|
2363
- end
1643
+ end
2364
1644
 
2365
- ##
2366
- # Constant: Errno::ENOTSOCK
2367
- # Created: 2013-04-01 18:33:53 +0200
2368
- # Platform: rbx 2.0.0.rc1
2369
- #
2370
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOTSOCK') do |klass|
2371
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2372
- end
1645
+ defs.define_constant('Errno::EREMOTE::Errno') do |klass|
1646
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2373
1647
 
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::GlobalScope.definitions.define_constant('Errno::ENOTSOCK::Errno') do |klass|
2380
- end
1648
+ end
2381
1649
 
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::GlobalScope.definitions.define_constant('Errno::ENOTSOCK::Strerror') do |klass|
2388
- end
1650
+ defs.define_constant('Errno::EREMOTE::Strerror') do |klass|
1651
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2389
1652
 
2390
- ##
2391
- # Constant: Errno::ENOTTY
2392
- # Created: 2013-04-01 18:33:53 +0200
2393
- # Platform: rbx 2.0.0.rc1
2394
- #
2395
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOTTY') do |klass|
2396
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2397
- end
1653
+ end
2398
1654
 
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::GlobalScope.definitions.define_constant('Errno::ENOTTY::Errno') do |klass|
2405
- end
1655
+ defs.define_constant('Errno::EREMOTEIO') do |klass|
1656
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2406
1657
 
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::GlobalScope.definitions.define_constant('Errno::ENOTTY::Strerror') do |klass|
2413
- end
1658
+ end
2414
1659
 
2415
- ##
2416
- # Constant: Errno::ENOTUNIQ
2417
- # Created: 2013-04-01 18:33:53 +0200
2418
- # Platform: rbx 2.0.0.rc1
2419
- #
2420
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENOTUNIQ') do |klass|
2421
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2422
- end
1660
+ defs.define_constant('Errno::EREMOTEIO::Errno') do |klass|
1661
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2423
1662
 
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::GlobalScope.definitions.define_constant('Errno::ENOTUNIQ::Errno') do |klass|
2430
- end
1663
+ end
2431
1664
 
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::GlobalScope.definitions.define_constant('Errno::ENOTUNIQ::Strerror') do |klass|
2438
- end
1665
+ defs.define_constant('Errno::EREMOTEIO::Strerror') do |klass|
1666
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2439
1667
 
2440
- ##
2441
- # Constant: Errno::ENXIO
2442
- # Created: 2013-04-01 18:33:53 +0200
2443
- # Platform: rbx 2.0.0.rc1
2444
- #
2445
- RubyLint::GlobalScope.definitions.define_constant('Errno::ENXIO') do |klass|
2446
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2447
- end
1668
+ end
2448
1669
 
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::GlobalScope.definitions.define_constant('Errno::ENXIO::Errno') do |klass|
2455
- end
1670
+ defs.define_constant('Errno::ERESTART') do |klass|
1671
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2456
1672
 
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::GlobalScope.definitions.define_constant('Errno::ENXIO::Strerror') do |klass|
2463
- end
1673
+ end
1674
+
1675
+ defs.define_constant('Errno::ERESTART::Errno') do |klass|
1676
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2464
1677
 
2465
- ##
2466
- # Constant: Errno::EOPNOTSUPP
2467
- # Created: 2013-04-01 18:33:53 +0200
2468
- # Platform: rbx 2.0.0.rc1
2469
- #
2470
- RubyLint::GlobalScope.definitions.define_constant('Errno::EOPNOTSUPP') do |klass|
2471
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2472
- end
1678
+ end
2473
1679
 
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::GlobalScope.definitions.define_constant('Errno::EOPNOTSUPP::Errno') do |klass|
2480
- end
1680
+ defs.define_constant('Errno::ERESTART::Strerror') do |klass|
1681
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2481
1682
 
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::GlobalScope.definitions.define_constant('Errno::EOPNOTSUPP::Strerror') do |klass|
2488
- end
1683
+ end
2489
1684
 
2490
- ##
2491
- # Constant: Errno::EOVERFLOW
2492
- # Created: 2013-04-01 18:33:53 +0200
2493
- # Platform: rbx 2.0.0.rc1
2494
- #
2495
- RubyLint::GlobalScope.definitions.define_constant('Errno::EOVERFLOW') do |klass|
2496
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2497
- end
1685
+ defs.define_constant('Errno::ERFKILL') do |klass|
1686
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2498
1687
 
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::GlobalScope.definitions.define_constant('Errno::EOVERFLOW::Errno') do |klass|
2505
- end
1688
+ end
2506
1689
 
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::GlobalScope.definitions.define_constant('Errno::EOVERFLOW::Strerror') do |klass|
2513
- end
1690
+ defs.define_constant('Errno::ERFKILL::Errno') do |klass|
1691
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2514
1692
 
2515
- ##
2516
- # Constant: Errno::EOWNERDEAD
2517
- # Created: 2013-04-01 18:33:53 +0200
2518
- # Platform: rbx 2.0.0.rc1
2519
- #
2520
- RubyLint::GlobalScope.definitions.define_constant('Errno::EOWNERDEAD') do |klass|
2521
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2522
- end
1693
+ end
2523
1694
 
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::GlobalScope.definitions.define_constant('Errno::EOWNERDEAD::Errno') do |klass|
2530
- end
1695
+ defs.define_constant('Errno::ERFKILL::Strerror') do |klass|
1696
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2531
1697
 
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::GlobalScope.definitions.define_constant('Errno::EOWNERDEAD::Strerror') do |klass|
2538
- end
1698
+ end
2539
1699
 
2540
- ##
2541
- # Constant: Errno::EPERM
2542
- # Created: 2013-04-01 18:33:53 +0200
2543
- # Platform: rbx 2.0.0.rc1
2544
- #
2545
- RubyLint::GlobalScope.definitions.define_constant('Errno::EPERM') do |klass|
2546
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2547
- end
1700
+ defs.define_constant('Errno::EROFS') do |klass|
1701
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2548
1702
 
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::GlobalScope.definitions.define_constant('Errno::EPERM::Errno') do |klass|
2555
- end
1703
+ end
2556
1704
 
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::GlobalScope.definitions.define_constant('Errno::EPERM::Strerror') do |klass|
2563
- end
1705
+ defs.define_constant('Errno::EROFS::Errno') do |klass|
1706
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2564
1707
 
2565
- ##
2566
- # Constant: Errno::EPFNOSUPPORT
2567
- # Created: 2013-04-01 18:33:53 +0200
2568
- # Platform: rbx 2.0.0.rc1
2569
- #
2570
- RubyLint::GlobalScope.definitions.define_constant('Errno::EPFNOSUPPORT') do |klass|
2571
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2572
- end
1708
+ end
2573
1709
 
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::GlobalScope.definitions.define_constant('Errno::EPFNOSUPPORT::Errno') do |klass|
2580
- end
1710
+ defs.define_constant('Errno::EROFS::Strerror') do |klass|
1711
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2581
1712
 
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::GlobalScope.definitions.define_constant('Errno::EPFNOSUPPORT::Strerror') do |klass|
2588
- end
1713
+ end
2589
1714
 
2590
- ##
2591
- # Constant: Errno::EPIPE
2592
- # Created: 2013-04-01 18:33:53 +0200
2593
- # Platform: rbx 2.0.0.rc1
2594
- #
2595
- RubyLint::GlobalScope.definitions.define_constant('Errno::EPIPE') do |klass|
2596
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2597
- end
1715
+ defs.define_constant('Errno::ESHUTDOWN') do |klass|
1716
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2598
1717
 
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::GlobalScope.definitions.define_constant('Errno::EPIPE::Errno') do |klass|
2605
- end
1718
+ end
2606
1719
 
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::GlobalScope.definitions.define_constant('Errno::EPIPE::Strerror') do |klass|
2613
- end
1720
+ defs.define_constant('Errno::ESHUTDOWN::Errno') do |klass|
1721
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2614
1722
 
2615
- ##
2616
- # Constant: Errno::EPROTO
2617
- # Created: 2013-04-01 18:33:53 +0200
2618
- # Platform: rbx 2.0.0.rc1
2619
- #
2620
- RubyLint::GlobalScope.definitions.define_constant('Errno::EPROTO') do |klass|
2621
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2622
- end
1723
+ end
2623
1724
 
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::GlobalScope.definitions.define_constant('Errno::EPROTO::Errno') do |klass|
2630
- end
1725
+ defs.define_constant('Errno::ESHUTDOWN::Strerror') do |klass|
1726
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2631
1727
 
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::GlobalScope.definitions.define_constant('Errno::EPROTO::Strerror') do |klass|
2638
- end
1728
+ end
2639
1729
 
2640
- ##
2641
- # Constant: Errno::EPROTONOSUPPORT
2642
- # Created: 2013-04-01 18:33:53 +0200
2643
- # Platform: rbx 2.0.0.rc1
2644
- #
2645
- RubyLint::GlobalScope.definitions.define_constant('Errno::EPROTONOSUPPORT') do |klass|
2646
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2647
- end
1730
+ defs.define_constant('Errno::ESOCKTNOSUPPORT') do |klass|
1731
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2648
1732
 
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::GlobalScope.definitions.define_constant('Errno::EPROTONOSUPPORT::Errno') do |klass|
2655
- end
1733
+ end
2656
1734
 
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::GlobalScope.definitions.define_constant('Errno::EPROTONOSUPPORT::Strerror') do |klass|
2663
- end
1735
+ defs.define_constant('Errno::ESOCKTNOSUPPORT::Errno') do |klass|
1736
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2664
1737
 
2665
- ##
2666
- # Constant: Errno::EPROTOTYPE
2667
- # Created: 2013-04-01 18:33:53 +0200
2668
- # Platform: rbx 2.0.0.rc1
2669
- #
2670
- RubyLint::GlobalScope.definitions.define_constant('Errno::EPROTOTYPE') do |klass|
2671
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2672
- end
1738
+ end
2673
1739
 
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::GlobalScope.definitions.define_constant('Errno::EPROTOTYPE::Errno') do |klass|
2680
- end
1740
+ defs.define_constant('Errno::ESOCKTNOSUPPORT::Strerror') do |klass|
1741
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2681
1742
 
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::GlobalScope.definitions.define_constant('Errno::EPROTOTYPE::Strerror') do |klass|
2688
- end
1743
+ end
2689
1744
 
2690
- ##
2691
- # Constant: Errno::ERANGE
2692
- # Created: 2013-04-01 18:33:53 +0200
2693
- # Platform: rbx 2.0.0.rc1
2694
- #
2695
- RubyLint::GlobalScope.definitions.define_constant('Errno::ERANGE') do |klass|
2696
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2697
- end
1745
+ defs.define_constant('Errno::ESPIPE') do |klass|
1746
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2698
1747
 
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::GlobalScope.definitions.define_constant('Errno::ERANGE::Errno') do |klass|
2705
- end
1748
+ end
2706
1749
 
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::GlobalScope.definitions.define_constant('Errno::ERANGE::Strerror') do |klass|
2713
- end
1750
+ defs.define_constant('Errno::ESPIPE::Errno') do |klass|
1751
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2714
1752
 
2715
- ##
2716
- # Constant: Errno::EREMCHG
2717
- # Created: 2013-04-01 18:33:53 +0200
2718
- # Platform: rbx 2.0.0.rc1
2719
- #
2720
- RubyLint::GlobalScope.definitions.define_constant('Errno::EREMCHG') do |klass|
2721
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2722
- end
1753
+ end
2723
1754
 
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::GlobalScope.definitions.define_constant('Errno::EREMCHG::Errno') do |klass|
2730
- end
1755
+ defs.define_constant('Errno::ESPIPE::Strerror') do |klass|
1756
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2731
1757
 
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::GlobalScope.definitions.define_constant('Errno::EREMCHG::Strerror') do |klass|
2738
- end
1758
+ end
2739
1759
 
2740
- ##
2741
- # Constant: Errno::EREMOTE
2742
- # Created: 2013-04-01 18:33:53 +0200
2743
- # Platform: rbx 2.0.0.rc1
2744
- #
2745
- RubyLint::GlobalScope.definitions.define_constant('Errno::EREMOTE') do |klass|
2746
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2747
- end
1760
+ defs.define_constant('Errno::ESRCH') do |klass|
1761
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2748
1762
 
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::GlobalScope.definitions.define_constant('Errno::EREMOTE::Errno') do |klass|
2755
- end
1763
+ end
2756
1764
 
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::GlobalScope.definitions.define_constant('Errno::EREMOTE::Strerror') do |klass|
2763
- end
1765
+ defs.define_constant('Errno::ESRCH::Errno') do |klass|
1766
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2764
1767
 
2765
- ##
2766
- # Constant: Errno::EREMOTEIO
2767
- # Created: 2013-04-01 18:33:53 +0200
2768
- # Platform: rbx 2.0.0.rc1
2769
- #
2770
- RubyLint::GlobalScope.definitions.define_constant('Errno::EREMOTEIO') do |klass|
2771
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2772
- end
1768
+ end
2773
1769
 
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::GlobalScope.definitions.define_constant('Errno::EREMOTEIO::Errno') do |klass|
2780
- end
1770
+ defs.define_constant('Errno::ESRCH::Strerror') do |klass|
1771
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2781
1772
 
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::GlobalScope.definitions.define_constant('Errno::EREMOTEIO::Strerror') do |klass|
2788
- end
1773
+ end
2789
1774
 
2790
- ##
2791
- # Constant: Errno::ERESTART
2792
- # Created: 2013-04-01 18:33:53 +0200
2793
- # Platform: rbx 2.0.0.rc1
2794
- #
2795
- RubyLint::GlobalScope.definitions.define_constant('Errno::ERESTART') do |klass|
2796
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2797
- end
1775
+ defs.define_constant('Errno::ESRMNT') do |klass|
1776
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2798
1777
 
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::GlobalScope.definitions.define_constant('Errno::ERESTART::Errno') do |klass|
2805
- end
1778
+ end
2806
1779
 
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::GlobalScope.definitions.define_constant('Errno::ERESTART::Strerror') do |klass|
2813
- end
1780
+ defs.define_constant('Errno::ESRMNT::Errno') do |klass|
1781
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2814
1782
 
2815
- ##
2816
- # Constant: Errno::ERFKILL
2817
- # Created: 2013-04-01 18:33:53 +0200
2818
- # Platform: rbx 2.0.0.rc1
2819
- #
2820
- RubyLint::GlobalScope.definitions.define_constant('Errno::ERFKILL') do |klass|
2821
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2822
- end
1783
+ end
2823
1784
 
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::GlobalScope.definitions.define_constant('Errno::ERFKILL::Errno') do |klass|
2830
- end
1785
+ defs.define_constant('Errno::ESRMNT::Strerror') do |klass|
1786
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2831
1787
 
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::GlobalScope.definitions.define_constant('Errno::ERFKILL::Strerror') do |klass|
2838
- end
1788
+ end
2839
1789
 
2840
- ##
2841
- # Constant: Errno::EROFS
2842
- # Created: 2013-04-01 18:33:53 +0200
2843
- # Platform: rbx 2.0.0.rc1
2844
- #
2845
- RubyLint::GlobalScope.definitions.define_constant('Errno::EROFS') do |klass|
2846
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2847
- end
1790
+ defs.define_constant('Errno::ESTALE') do |klass|
1791
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2848
1792
 
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::GlobalScope.definitions.define_constant('Errno::EROFS::Errno') do |klass|
2855
- end
1793
+ end
2856
1794
 
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::GlobalScope.definitions.define_constant('Errno::EROFS::Strerror') do |klass|
2863
- end
1795
+ defs.define_constant('Errno::ESTALE::Errno') do |klass|
1796
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2864
1797
 
2865
- ##
2866
- # Constant: Errno::ESHUTDOWN
2867
- # Created: 2013-04-01 18:33:53 +0200
2868
- # Platform: rbx 2.0.0.rc1
2869
- #
2870
- RubyLint::GlobalScope.definitions.define_constant('Errno::ESHUTDOWN') do |klass|
2871
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2872
- end
1798
+ end
2873
1799
 
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::GlobalScope.definitions.define_constant('Errno::ESHUTDOWN::Errno') do |klass|
2880
- end
1800
+ defs.define_constant('Errno::ESTALE::Strerror') do |klass|
1801
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2881
1802
 
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::GlobalScope.definitions.define_constant('Errno::ESHUTDOWN::Strerror') do |klass|
2888
- end
1803
+ end
2889
1804
 
2890
- ##
2891
- # Constant: Errno::ESOCKTNOSUPPORT
2892
- # Created: 2013-04-01 18:33:53 +0200
2893
- # Platform: rbx 2.0.0.rc1
2894
- #
2895
- RubyLint::GlobalScope.definitions.define_constant('Errno::ESOCKTNOSUPPORT') do |klass|
2896
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2897
- end
1805
+ defs.define_constant('Errno::ESTRPIPE') do |klass|
1806
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2898
1807
 
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::GlobalScope.definitions.define_constant('Errno::ESOCKTNOSUPPORT::Errno') do |klass|
2905
- end
1808
+ end
2906
1809
 
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::GlobalScope.definitions.define_constant('Errno::ESOCKTNOSUPPORT::Strerror') do |klass|
2913
- end
1810
+ defs.define_constant('Errno::ESTRPIPE::Errno') do |klass|
1811
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2914
1812
 
2915
- ##
2916
- # Constant: Errno::ESPIPE
2917
- # Created: 2013-04-01 18:33:53 +0200
2918
- # Platform: rbx 2.0.0.rc1
2919
- #
2920
- RubyLint::GlobalScope.definitions.define_constant('Errno::ESPIPE') do |klass|
2921
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2922
- end
1813
+ end
2923
1814
 
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::GlobalScope.definitions.define_constant('Errno::ESPIPE::Errno') do |klass|
2930
- end
1815
+ defs.define_constant('Errno::ESTRPIPE::Strerror') do |klass|
1816
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2931
1817
 
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::GlobalScope.definitions.define_constant('Errno::ESPIPE::Strerror') do |klass|
2938
- end
1818
+ end
2939
1819
 
2940
- ##
2941
- # Constant: Errno::ESRCH
2942
- # Created: 2013-04-01 18:33:53 +0200
2943
- # Platform: rbx 2.0.0.rc1
2944
- #
2945
- RubyLint::GlobalScope.definitions.define_constant('Errno::ESRCH') do |klass|
2946
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2947
- end
1820
+ defs.define_constant('Errno::ETIME') do |klass|
1821
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2948
1822
 
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::GlobalScope.definitions.define_constant('Errno::ESRCH::Errno') do |klass|
2955
- end
1823
+ end
2956
1824
 
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::GlobalScope.definitions.define_constant('Errno::ESRCH::Strerror') do |klass|
2963
- end
1825
+ defs.define_constant('Errno::ETIME::Errno') do |klass|
1826
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2964
1827
 
2965
- ##
2966
- # Constant: Errno::ESRMNT
2967
- # Created: 2013-04-01 18:33:53 +0200
2968
- # Platform: rbx 2.0.0.rc1
2969
- #
2970
- RubyLint::GlobalScope.definitions.define_constant('Errno::ESRMNT') do |klass|
2971
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2972
- end
1828
+ end
2973
1829
 
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::GlobalScope.definitions.define_constant('Errno::ESRMNT::Errno') do |klass|
2980
- end
1830
+ defs.define_constant('Errno::ETIME::Strerror') do |klass|
1831
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
2981
1832
 
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::GlobalScope.definitions.define_constant('Errno::ESRMNT::Strerror') do |klass|
2988
- end
1833
+ end
2989
1834
 
2990
- ##
2991
- # Constant: Errno::ESTALE
2992
- # Created: 2013-04-01 18:33:53 +0200
2993
- # Platform: rbx 2.0.0.rc1
2994
- #
2995
- RubyLint::GlobalScope.definitions.define_constant('Errno::ESTALE') do |klass|
2996
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
2997
- end
1835
+ defs.define_constant('Errno::ETIMEDOUT') do |klass|
1836
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
2998
1837
 
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::GlobalScope.definitions.define_constant('Errno::ESTALE::Errno') do |klass|
3005
- end
1838
+ end
3006
1839
 
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::GlobalScope.definitions.define_constant('Errno::ESTALE::Strerror') do |klass|
3013
- end
1840
+ defs.define_constant('Errno::ETIMEDOUT::Errno') do |klass|
1841
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
3014
1842
 
3015
- ##
3016
- # Constant: Errno::ESTRPIPE
3017
- # Created: 2013-04-01 18:33:53 +0200
3018
- # Platform: rbx 2.0.0.rc1
3019
- #
3020
- RubyLint::GlobalScope.definitions.define_constant('Errno::ESTRPIPE') do |klass|
3021
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
3022
- end
1843
+ end
3023
1844
 
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::GlobalScope.definitions.define_constant('Errno::ESTRPIPE::Errno') do |klass|
3030
- end
1845
+ defs.define_constant('Errno::ETIMEDOUT::Strerror') do |klass|
1846
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
3031
1847
 
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::GlobalScope.definitions.define_constant('Errno::ESTRPIPE::Strerror') do |klass|
3038
- end
1848
+ end
3039
1849
 
3040
- ##
3041
- # Constant: Errno::ETIME
3042
- # Created: 2013-04-01 18:33:54 +0200
3043
- # Platform: rbx 2.0.0.rc1
3044
- #
3045
- RubyLint::GlobalScope.definitions.define_constant('Errno::ETIME') do |klass|
3046
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
3047
- end
1850
+ defs.define_constant('Errno::ETOOMANYREFS') do |klass|
1851
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
3048
1852
 
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::GlobalScope.definitions.define_constant('Errno::ETIME::Errno') do |klass|
3055
- end
1853
+ end
3056
1854
 
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::GlobalScope.definitions.define_constant('Errno::ETIME::Strerror') do |klass|
3063
- end
1855
+ defs.define_constant('Errno::ETOOMANYREFS::Errno') do |klass|
1856
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
3064
1857
 
3065
- ##
3066
- # Constant: Errno::ETIMEDOUT
3067
- # Created: 2013-04-01 18:33:54 +0200
3068
- # Platform: rbx 2.0.0.rc1
3069
- #
3070
- RubyLint::GlobalScope.definitions.define_constant('Errno::ETIMEDOUT') do |klass|
3071
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
3072
- end
1858
+ end
3073
1859
 
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::GlobalScope.definitions.define_constant('Errno::ETIMEDOUT::Errno') do |klass|
3080
- end
1860
+ defs.define_constant('Errno::ETOOMANYREFS::Strerror') do |klass|
1861
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
3081
1862
 
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::GlobalScope.definitions.define_constant('Errno::ETIMEDOUT::Strerror') do |klass|
3088
- end
1863
+ end
3089
1864
 
3090
- ##
3091
- # Constant: Errno::ETOOMANYREFS
3092
- # Created: 2013-04-01 18:33:54 +0200
3093
- # Platform: rbx 2.0.0.rc1
3094
- #
3095
- RubyLint::GlobalScope.definitions.define_constant('Errno::ETOOMANYREFS') do |klass|
3096
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
3097
- end
1865
+ defs.define_constant('Errno::ETXTBSY') do |klass|
1866
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
3098
1867
 
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::GlobalScope.definitions.define_constant('Errno::ETOOMANYREFS::Errno') do |klass|
3105
- end
1868
+ end
3106
1869
 
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::GlobalScope.definitions.define_constant('Errno::ETOOMANYREFS::Strerror') do |klass|
3113
- end
1870
+ defs.define_constant('Errno::ETXTBSY::Errno') do |klass|
1871
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
3114
1872
 
3115
- ##
3116
- # Constant: Errno::ETXTBSY
3117
- # Created: 2013-04-01 18:33:54 +0200
3118
- # Platform: rbx 2.0.0.rc1
3119
- #
3120
- RubyLint::GlobalScope.definitions.define_constant('Errno::ETXTBSY') do |klass|
3121
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
3122
- end
1873
+ end
3123
1874
 
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::GlobalScope.definitions.define_constant('Errno::ETXTBSY::Errno') do |klass|
3130
- end
1875
+ defs.define_constant('Errno::ETXTBSY::Strerror') do |klass|
1876
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
3131
1877
 
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::GlobalScope.definitions.define_constant('Errno::ETXTBSY::Strerror') do |klass|
3138
- end
1878
+ end
3139
1879
 
3140
- ##
3141
- # Constant: Errno::EUCLEAN
3142
- # Created: 2013-04-01 18:33:54 +0200
3143
- # Platform: rbx 2.0.0.rc1
3144
- #
3145
- RubyLint::GlobalScope.definitions.define_constant('Errno::EUCLEAN') do |klass|
3146
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
3147
- end
1880
+ defs.define_constant('Errno::EUCLEAN') do |klass|
1881
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
3148
1882
 
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::GlobalScope.definitions.define_constant('Errno::EUCLEAN::Errno') do |klass|
3155
- end
1883
+ end
3156
1884
 
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::GlobalScope.definitions.define_constant('Errno::EUCLEAN::Strerror') do |klass|
3163
- end
1885
+ defs.define_constant('Errno::EUCLEAN::Errno') do |klass|
1886
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
3164
1887
 
3165
- ##
3166
- # Constant: Errno::EUNATCH
3167
- # Created: 2013-04-01 18:33:54 +0200
3168
- # Platform: rbx 2.0.0.rc1
3169
- #
3170
- RubyLint::GlobalScope.definitions.define_constant('Errno::EUNATCH') do |klass|
3171
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
3172
- end
1888
+ end
3173
1889
 
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::GlobalScope.definitions.define_constant('Errno::EUNATCH::Errno') do |klass|
3180
- end
1890
+ defs.define_constant('Errno::EUCLEAN::Strerror') do |klass|
1891
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
3181
1892
 
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::GlobalScope.definitions.define_constant('Errno::EUNATCH::Strerror') do |klass|
3188
- end
1893
+ end
3189
1894
 
3190
- ##
3191
- # Constant: Errno::EUSERS
3192
- # Created: 2013-04-01 18:33:54 +0200
3193
- # Platform: rbx 2.0.0.rc1
3194
- #
3195
- RubyLint::GlobalScope.definitions.define_constant('Errno::EUSERS') do |klass|
3196
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
3197
- end
1895
+ defs.define_constant('Errno::EUNATCH') do |klass|
1896
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
3198
1897
 
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::GlobalScope.definitions.define_constant('Errno::EUSERS::Errno') do |klass|
3205
- end
1898
+ end
3206
1899
 
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::GlobalScope.definitions.define_constant('Errno::EUSERS::Strerror') do |klass|
3213
- end
1900
+ defs.define_constant('Errno::EUNATCH::Errno') do |klass|
1901
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
3214
1902
 
3215
- ##
3216
- # Constant: Errno::EWOULDBLOCK
3217
- # Created: 2013-04-01 18:33:54 +0200
3218
- # Platform: rbx 2.0.0.rc1
3219
- #
3220
- RubyLint::GlobalScope.definitions.define_constant('Errno::EWOULDBLOCK') do |klass|
3221
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
3222
- end
1903
+ end
3223
1904
 
3224
- ##
3225
- # Constant: Errno::EXDEV
3226
- # Created: 2013-04-01 18:33:54 +0200
3227
- # Platform: rbx 2.0.0.rc1
3228
- #
3229
- RubyLint::GlobalScope.definitions.define_constant('Errno::EXDEV') do |klass|
3230
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
3231
- end
1905
+ defs.define_constant('Errno::EUNATCH::Strerror') do |klass|
1906
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
3232
1907
 
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::GlobalScope.definitions.define_constant('Errno::EXDEV::Errno') do |klass|
3239
- end
1908
+ end
3240
1909
 
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::GlobalScope.definitions.define_constant('Errno::EXDEV::Strerror') do |klass|
3247
- end
1910
+ defs.define_constant('Errno::EUSERS') do |klass|
1911
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
3248
1912
 
3249
- ##
3250
- # Constant: Errno::EXFULL
3251
- # Created: 2013-04-01 18:33:54 +0200
3252
- # Platform: rbx 2.0.0.rc1
3253
- #
3254
- RubyLint::GlobalScope.definitions.define_constant('Errno::EXFULL') do |klass|
3255
- klass.inherits(RubyLint::GlobalScope.constant_proxy('SystemCallError'))
3256
- end
1913
+ end
3257
1914
 
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::GlobalScope.definitions.define_constant('Errno::EXFULL::Errno') do |klass|
3264
- end
1915
+ defs.define_constant('Errno::EUSERS::Errno') do |klass|
1916
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
3265
1917
 
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::GlobalScope.definitions.define_constant('Errno::EXFULL::Strerror') do |klass|
3272
- end
1918
+ end
3273
1919
 
3274
- ##
3275
- # Constant: Errno::FFI
3276
- # Created: 2013-04-01 18:33:54 +0200
3277
- # Platform: rbx 2.0.0.rc1
3278
- #
3279
- RubyLint::GlobalScope.definitions.define_constant('Errno::FFI') do |klass|
1920
+ defs.define_constant('Errno::EUSERS::Strerror') do |klass|
1921
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
3280
1922
 
3281
- klass.define_method('__module_init__')
1923
+ end
1924
+
1925
+ defs.define_constant('Errno::EWOULDBLOCK') do |klass|
1926
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
3282
1927
 
3283
- klass.define_method('add_typedef') do |method|
3284
- method.define_argument('current')
3285
- method.define_argument('add')
3286
1928
  end
3287
1929
 
3288
- klass.define_method('config') do |method|
3289
- method.define_argument('name')
1930
+ defs.define_constant('Errno::EXDEV') do |klass|
1931
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1932
+
3290
1933
  end
3291
1934
 
3292
- klass.define_method('config_hash') do |method|
3293
- method.define_argument('name')
1935
+ defs.define_constant('Errno::EXDEV::Errno') do |klass|
1936
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1937
+
3294
1938
  end
3295
1939
 
3296
- klass.define_method('errno')
1940
+ defs.define_constant('Errno::EXDEV::Strerror') do |klass|
1941
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
3297
1942
 
3298
- klass.define_method('find_type') do |method|
3299
- method.define_argument('name')
3300
1943
  end
3301
1944
 
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')
1945
+ defs.define_constant('Errno::EXFULL') do |klass|
1946
+ klass.inherits(defs.constant_proxy('SystemCallError', RubyLint.registry))
1947
+
3307
1948
  end
3308
1949
 
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')
1950
+ defs.define_constant('Errno::EXFULL::Errno') do |klass|
1951
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1952
+
3314
1953
  end
3315
1954
 
3316
- klass.define_method('size_to_type') do |method|
3317
- method.define_argument('size')
1955
+ defs.define_constant('Errno::EXFULL::Strerror') do |klass|
1956
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1957
+
3318
1958
  end
3319
1959
 
3320
- klass.define_method('type_size') do |method|
3321
- method.define_argument('type')
1960
+ defs.define_constant('Errno::FFI') do |klass|
1961
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
1962
+
1963
+ klass.define_method('add_typedef') do |method|
1964
+ method.define_argument('current')
1965
+ method.define_argument('add')
1966
+ end
1967
+
1968
+ klass.define_method('config') do |method|
1969
+ method.define_argument('name')
1970
+ end
1971
+
1972
+ klass.define_method('config_hash') do |method|
1973
+ method.define_argument('name')
1974
+ end
1975
+
1976
+ klass.define_method('errno')
1977
+
1978
+ klass.define_method('find_type') do |method|
1979
+ method.define_argument('name')
1980
+ end
1981
+
1982
+ klass.define_method('generate_function') do |method|
1983
+ method.define_argument('ptr')
1984
+ method.define_argument('name')
1985
+ method.define_argument('args')
1986
+ method.define_argument('ret')
1987
+ end
1988
+
1989
+ klass.define_method('generate_trampoline') do |method|
1990
+ method.define_argument('obj')
1991
+ method.define_argument('name')
1992
+ method.define_argument('args')
1993
+ method.define_argument('ret')
1994
+ end
1995
+
1996
+ klass.define_method('size_to_type') do |method|
1997
+ method.define_argument('size')
1998
+ end
1999
+
2000
+ klass.define_method('type_size') do |method|
2001
+ method.define_argument('type')
2002
+ end
3322
2003
  end
3323
- end
3324
2004
 
3325
- ##
3326
- # Constant: Errno::Mapping
3327
- # Created: 2013-04-01 18:33:54 +0200
3328
- # Platform: rbx 2.0.0.rc1
3329
- #
3330
- RubyLint::GlobalScope.definitions.define_constant('Errno::Mapping') do |klass|
3331
- end
2005
+ defs.define_constant('Errno::Mapping') do |klass|
2006
+ klass.inherits(defs.constant_proxy('Object', RubyLint.registry))
3332
2007
 
3333
- RubyLint::GlobalScope.definitions.lookup(:const, 'Errno').deep_freeze
2008
+ end
2009
+ end