ruby-lint 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (321) hide show
  1. data.tar.gz.asc +17 -0
  2. data/.gitignore +1 -0
  3. data/.travis.yml +25 -0
  4. data/.yardopts +4 -0
  5. data/Gemfile +1 -1
  6. data/LICENSE +1 -1
  7. data/MANIFEST +238 -49
  8. data/README.md +84 -131
  9. data/Rakefile +6 -0
  10. data/bin/ruby-lint +2 -2
  11. data/checksum/.gitkeep +0 -0
  12. data/doc/DCO.md +26 -0
  13. data/doc/architecture.md +63 -0
  14. data/doc/code_analysis.md +90 -0
  15. data/doc/configuration.md +86 -0
  16. data/doc/contributing.md +16 -0
  17. data/doc/graphviz/flow.dot +7 -0
  18. data/doc/images/.gitkeep +0 -0
  19. data/doc/images/flow.png +0 -0
  20. data/lib/ruby-lint.rb +35 -35
  21. data/lib/ruby-lint/analyze/argument_amount.rb +73 -0
  22. data/lib/ruby-lint/analyze/shadowing_variables.rb +19 -24
  23. data/lib/ruby-lint/analyze/undefined_methods.rb +68 -0
  24. data/lib/ruby-lint/analyze/undefined_variables.rb +42 -69
  25. data/lib/ruby-lint/analyze/unused_variables.rb +23 -78
  26. data/lib/ruby-lint/base.rb +85 -0
  27. data/lib/ruby-lint/cli.rb +23 -167
  28. data/lib/ruby-lint/cli/analyze.rb +99 -0
  29. data/lib/ruby-lint/cli/ast.rb +35 -0
  30. data/lib/ruby-lint/cli/base.rb +120 -0
  31. data/lib/ruby-lint/configuration.rb +112 -0
  32. data/lib/ruby-lint/constant_loader.rb +92 -0
  33. data/lib/ruby-lint/definition/ruby_method.rb +248 -0
  34. data/lib/ruby-lint/definition/ruby_object.rb +757 -0
  35. data/lib/ruby-lint/definition_generator.rb +155 -0
  36. data/lib/ruby-lint/definitions/core.rb +5 -0
  37. data/lib/ruby-lint/definitions/core/arg0.rb +7 -0
  38. data/lib/ruby-lint/definitions/core/argf.rb +7 -0
  39. data/lib/ruby-lint/definitions/core/argument_error.rb +12 -0
  40. data/lib/ruby-lint/definitions/core/argv.rb +7 -0
  41. data/lib/ruby-lint/definitions/core/array.rb +414 -0
  42. data/lib/ruby-lint/definitions/core/autoload.rb +39 -0
  43. data/lib/ruby-lint/definitions/core/basic_object.rb +46 -0
  44. data/lib/ruby-lint/definitions/core/bignum.rb +128 -0
  45. data/lib/ruby-lint/definitions/core/binding.rb +52 -0
  46. data/lib/ruby-lint/definitions/core/class.rb +23 -0
  47. data/lib/ruby-lint/definitions/core/comparable.rb +38 -0
  48. data/lib/ruby-lint/definitions/core/complex.rb +195 -0
  49. data/lib/ruby-lint/definitions/core/condition_variable.rb +19 -0
  50. data/lib/ruby-lint/definitions/core/continuation.rb +8 -0
  51. data/lib/ruby-lint/definitions/core/data.rb +8 -0
  52. data/lib/ruby-lint/definitions/core/date.rb +706 -0
  53. data/lib/ruby-lint/definitions/core/date_time.rb +381 -0
  54. data/lib/ruby-lint/definitions/core/default_record_separator.rb +7 -0
  55. data/lib/ruby-lint/definitions/core/digest.rb +166 -0
  56. data/lib/ruby-lint/definitions/core/dir.rb +496 -0
  57. data/lib/ruby-lint/definitions/core/encoding.rb +2030 -0
  58. data/lib/ruby-lint/definitions/core/encoding_error.rb +8 -0
  59. data/lib/ruby-lint/definitions/core/enumerable.rb +352 -0
  60. data/lib/ruby-lint/definitions/core/enumerator.rb +37 -0
  61. data/lib/ruby-lint/definitions/core/env.rb +7 -0
  62. data/lib/ruby-lint/definitions/core/eoferror.rb +8 -0
  63. data/lib/ruby-lint/definitions/core/erb.rb +304 -0
  64. data/lib/ruby-lint/definitions/core/errno.rb +3331 -0
  65. data/lib/ruby-lint/definitions/core/etc.rb +138 -0
  66. data/lib/ruby-lint/definitions/core/exception.rb +72 -0
  67. data/lib/ruby-lint/definitions/core/false.rb +7 -0
  68. data/lib/ruby-lint/definitions/core/false_class.rb +30 -0
  69. data/lib/ruby-lint/definitions/core/fatal_error.rb +8 -0
  70. data/lib/ruby-lint/definitions/core/fiber.rb +35 -0
  71. data/lib/ruby-lint/definitions/core/fiber_error.rb +8 -0
  72. data/lib/ruby-lint/definitions/core/file.rb +1277 -0
  73. data/lib/ruby-lint/definitions/core/file_list.rb +727 -0
  74. data/lib/ruby-lint/definitions/core/file_test.rb +106 -0
  75. data/lib/ruby-lint/definitions/core/file_utils.rb +1027 -0
  76. data/lib/ruby-lint/definitions/core/fixnum.rb +156 -0
  77. data/lib/ruby-lint/definitions/core/float.rb +307 -0
  78. data/lib/ruby-lint/definitions/core/float_domain_error.rb +8 -0
  79. data/lib/ruby-lint/definitions/core/gc.rb +57 -0
  80. data/lib/ruby-lint/definitions/core/gem.rb +3161 -0
  81. data/lib/ruby-lint/definitions/core/hash.rb +512 -0
  82. data/lib/ruby-lint/definitions/core/immediate_value.rb +19 -0
  83. data/lib/ruby-lint/definitions/core/index_error.rb +8 -0
  84. data/lib/ruby-lint/definitions/core/integer.rb +100 -0
  85. data/lib/ruby-lint/definitions/core/interrupt.rb +14 -0
  86. data/lib/ruby-lint/definitions/core/io.rb +928 -0
  87. data/lib/ruby-lint/definitions/core/ioerror.rb +8 -0
  88. data/lib/ruby-lint/definitions/core/kernel.rb +504 -0
  89. data/lib/ruby-lint/definitions/core/key_error.rb +8 -0
  90. data/lib/ruby-lint/definitions/core/load_error.rb +28 -0
  91. data/lib/ruby-lint/definitions/core/local_jump_error.rb +8 -0
  92. data/lib/ruby-lint/definitions/core/main.rb +25 -0
  93. data/lib/ruby-lint/definitions/core/marshal.rb +466 -0
  94. data/lib/ruby-lint/definitions/core/match_data.rb +73 -0
  95. data/lib/ruby-lint/definitions/core/math.rb +205 -0
  96. data/lib/ruby-lint/definitions/core/memory_segmention_error.rb +8 -0
  97. data/lib/ruby-lint/definitions/core/method.rb +61 -0
  98. data/lib/ruby-lint/definitions/core/module.rb +262 -0
  99. data/lib/ruby-lint/definitions/core/monitor.rb +39 -0
  100. data/lib/ruby-lint/definitions/core/monitor_mixin.rb +59 -0
  101. data/lib/ruby-lint/definitions/core/mutex.rb +32 -0
  102. data/lib/ruby-lint/definitions/core/name_error.rb +16 -0
  103. data/lib/ruby-lint/definitions/core/nil.rb +7 -0
  104. data/lib/ruby-lint/definitions/core/nil_class.rb +46 -0
  105. data/lib/ruby-lint/definitions/core/no_memory_error.rb +8 -0
  106. data/lib/ruby-lint/definitions/core/no_method_error.rb +18 -0
  107. data/lib/ruby-lint/definitions/core/not_implemented_error.rb +8 -0
  108. data/lib/ruby-lint/definitions/core/numeric.rb +123 -0
  109. data/lib/ruby-lint/definitions/core/object.rb +31 -0
  110. data/lib/ruby-lint/definitions/core/object_space.rb +41 -0
  111. data/lib/ruby-lint/definitions/core/open_struct.rb +49 -0
  112. data/lib/ruby-lint/definitions/core/option_parser.rb +1355 -0
  113. data/lib/ruby-lint/definitions/core/precision.rb +21 -0
  114. data/lib/ruby-lint/definitions/core/primitive_failure.rb +8 -0
  115. data/lib/ruby-lint/definitions/core/proc.rb +109 -0
  116. data/lib/ruby-lint/definitions/core/process.rb +602 -0
  117. data/lib/ruby-lint/definitions/core/psych.rb +2231 -0
  118. data/lib/ruby-lint/definitions/core/queue.rb +44 -0
  119. data/lib/ruby-lint/definitions/core/rake.rb +4784 -0
  120. data/lib/ruby-lint/definitions/core/rake_file_utils.rb +203 -0
  121. data/lib/ruby-lint/definitions/core/rakeversion.rb +7 -0
  122. data/lib/ruby-lint/definitions/core/random.rb +38 -0
  123. data/lib/ruby-lint/definitions/core/range.rb +104 -0
  124. data/lib/ruby-lint/definitions/core/range_error.rb +8 -0
  125. data/lib/ruby-lint/definitions/core/rational.rb +96 -0
  126. data/lib/ruby-lint/definitions/core/rb_config.rb +36 -0
  127. data/lib/ruby-lint/definitions/core/regexp.rb +396 -0
  128. data/lib/ruby-lint/definitions/core/regexp_error.rb +8 -0
  129. data/lib/ruby-lint/definitions/core/rubinius.rb +16637 -0
  130. data/lib/ruby-lint/definitions/core/ruby_copyright.rb +7 -0
  131. data/lib/ruby-lint/definitions/core/ruby_description.rb +7 -0
  132. data/lib/ruby-lint/definitions/core/ruby_engine.rb +7 -0
  133. data/lib/ruby-lint/definitions/core/ruby_lint.rb +93 -0
  134. data/lib/ruby-lint/definitions/core/ruby_patchlevel.rb +7 -0
  135. data/lib/ruby-lint/definitions/core/ruby_platform.rb +7 -0
  136. data/lib/ruby-lint/definitions/core/ruby_release_date.rb +7 -0
  137. data/lib/ruby-lint/definitions/core/ruby_version.rb +7 -0
  138. data/lib/ruby-lint/definitions/core/runtime_error.rb +8 -0
  139. data/lib/ruby-lint/definitions/core/scan_error.rb +8 -0
  140. data/lib/ruby-lint/definitions/core/script_error.rb +8 -0
  141. data/lib/ruby-lint/definitions/core/security_error.rb +8 -0
  142. data/lib/ruby-lint/definitions/core/shellwords.rb +37 -0
  143. data/lib/ruby-lint/definitions/core/signal.rb +37 -0
  144. data/lib/ruby-lint/definitions/core/signal_exception.rb +19 -0
  145. data/lib/ruby-lint/definitions/core/singleton.rb +37 -0
  146. data/lib/ruby-lint/definitions/core/sized_queue.rb +42 -0
  147. data/lib/ruby-lint/definitions/core/standard_error.rb +8 -0
  148. data/lib/ruby-lint/definitions/core/stderr.rb +7 -0
  149. data/lib/ruby-lint/definitions/core/stdin.rb +7 -0
  150. data/lib/ruby-lint/definitions/core/stdout.rb +7 -0
  151. data/lib/ruby-lint/definitions/core/stop_iteration.rb +8 -0
  152. data/lib/ruby-lint/definitions/core/string.rb +713 -0
  153. data/lib/ruby-lint/definitions/core/string_io.rb +287 -0
  154. data/lib/ruby-lint/definitions/core/string_scanner.rb +158 -0
  155. data/lib/ruby-lint/definitions/core/struct.rb +357 -0
  156. data/lib/ruby-lint/definitions/core/syck.rb +30 -0
  157. data/lib/ruby-lint/definitions/core/symbol.rb +90 -0
  158. data/lib/ruby-lint/definitions/core/syntax_error.rb +44 -0
  159. data/lib/ruby-lint/definitions/core/system_call_error.rb +31 -0
  160. data/lib/ruby-lint/definitions/core/system_exit.rb +19 -0
  161. data/lib/ruby-lint/definitions/core/system_stack_error.rb +8 -0
  162. data/lib/ruby-lint/definitions/core/thread.rb +209 -0
  163. data/lib/ruby-lint/definitions/core/thread_error.rb +8 -0
  164. data/lib/ruby-lint/definitions/core/thread_group.rb +22 -0
  165. data/lib/ruby-lint/definitions/core/time.rb +233 -0
  166. data/lib/ruby-lint/definitions/core/toplevel_binding.rb +7 -0
  167. data/lib/ruby-lint/definitions/core/true.rb +7 -0
  168. data/lib/ruby-lint/definitions/core/true_class.rb +30 -0
  169. data/lib/ruby-lint/definitions/core/type_error.rb +8 -0
  170. data/lib/ruby-lint/definitions/core/unbound_method.rb +51 -0
  171. data/lib/ruby-lint/definitions/core/unmarshalable.rb +13 -0
  172. data/lib/ruby-lint/definitions/core/unsupported_library_error.rb +8 -0
  173. data/lib/ruby-lint/definitions/core/weak_ref.rb +42 -0
  174. data/lib/ruby-lint/definitions/core/zero_division_error.rb +8 -0
  175. data/lib/ruby-lint/definitions_builder.rb +692 -0
  176. data/lib/ruby-lint/extensions/string.rb +15 -0
  177. data/lib/ruby-lint/helper/constant_paths.rb +41 -0
  178. data/lib/ruby-lint/helper/conversion.rb +33 -0
  179. data/lib/ruby-lint/helper/current_scope.rb +98 -0
  180. data/lib/ruby-lint/helper/methods.rb +91 -0
  181. data/lib/ruby-lint/inspector.rb +191 -0
  182. data/lib/ruby-lint/iterator.rb +187 -127
  183. data/lib/ruby-lint/node.rb +107 -0
  184. data/lib/ruby-lint/parser.rb +510 -1137
  185. data/lib/ruby-lint/parser_error.rb +15 -27
  186. data/lib/ruby-lint/presenter/json.rb +19 -0
  187. data/lib/ruby-lint/presenter/text.rb +37 -0
  188. data/lib/ruby-lint/report.rb +95 -53
  189. data/lib/ruby-lint/report/entry.rb +71 -0
  190. data/lib/ruby-lint/template/definition.erb +24 -0
  191. data/lib/ruby-lint/template/scope.rb +25 -0
  192. data/lib/ruby-lint/variable_predicates.rb +109 -0
  193. data/lib/ruby-lint/version.rb +1 -1
  194. data/ruby-lint.gemspec +19 -8
  195. data/spec/helper.rb +10 -2
  196. data/spec/ruby-lint/analyze/argument_amount.rb +91 -0
  197. data/spec/ruby-lint/analyze/shadowing_variables.rb +69 -14
  198. data/spec/ruby-lint/analyze/undefined_methods.rb +174 -0
  199. data/spec/ruby-lint/analyze/undefined_variables.rb +70 -179
  200. data/spec/ruby-lint/analyze/unused_variables.rb +63 -183
  201. data/spec/ruby-lint/configuration.rb +15 -0
  202. data/spec/ruby-lint/constant_loader.rb +32 -0
  203. data/spec/ruby-lint/definition/dsl.rb +142 -0
  204. data/spec/ruby-lint/definition/method_calls.rb +26 -0
  205. data/spec/ruby-lint/definition/ruby_method.rb +175 -0
  206. data/spec/ruby-lint/definition/ruby_object.rb +228 -0
  207. data/spec/ruby-lint/definitions_builder/assignments/arrays.rb +71 -0
  208. data/spec/ruby-lint/definitions_builder/assignments/hashes.rb +65 -0
  209. data/spec/ruby-lint/definitions_builder/assignments/objects.rb +23 -0
  210. data/spec/ruby-lint/definitions_builder/assignments/optional.rb +22 -0
  211. data/spec/ruby-lint/definitions_builder/assignments/return_values.rb +78 -0
  212. data/spec/ruby-lint/definitions_builder/assignments/variables.rb +71 -0
  213. data/spec/ruby-lint/definitions_builder/associate_nodes.rb +17 -0
  214. data/spec/ruby-lint/definitions_builder/blocks.rb +40 -0
  215. data/spec/ruby-lint/definitions_builder/classes.rb +230 -0
  216. data/spec/ruby-lint/definitions_builder/for.rb +16 -0
  217. data/spec/ruby-lint/definitions_builder/methods.rb +147 -0
  218. data/spec/ruby-lint/definitions_builder/modules.rb +175 -0
  219. data/spec/ruby-lint/definitions_builder/reference_amount.rb +31 -0
  220. data/spec/ruby-lint/definitions_builder/unused.rb +15 -0
  221. data/spec/ruby-lint/extensions/string.rb +7 -0
  222. data/spec/ruby-lint/iterator.rb +42 -417
  223. data/spec/ruby-lint/node.rb +38 -0
  224. data/spec/ruby-lint/parser/assignments.rb +225 -0
  225. data/spec/ruby-lint/parser/classes.rb +80 -122
  226. data/spec/ruby-lint/parser/errors.rb +7 -14
  227. data/spec/ruby-lint/parser/metadata.rb +17 -0
  228. data/spec/ruby-lint/parser/method_definitions.rb +111 -0
  229. data/spec/ruby-lint/parser/methods.rb +184 -216
  230. data/spec/ruby-lint/parser/modules.rb +54 -33
  231. data/spec/ruby-lint/parser/operators.rb +30 -65
  232. data/spec/ruby-lint/parser/statements/begin.rb +55 -0
  233. data/spec/ruby-lint/parser/statements/case.rb +34 -0
  234. data/spec/ruby-lint/parser/statements/defined.rb +11 -0
  235. data/spec/ruby-lint/parser/statements/for.rb +34 -0
  236. data/spec/ruby-lint/parser/statements/if.rb +46 -0
  237. data/spec/ruby-lint/parser/statements/return.rb +14 -0
  238. data/spec/ruby-lint/parser/statements/super.rb +49 -0
  239. data/spec/ruby-lint/parser/statements/unless.rb +42 -0
  240. data/spec/ruby-lint/parser/statements/until.rb +25 -0
  241. data/spec/ruby-lint/parser/statements/while.rb +25 -0
  242. data/spec/ruby-lint/parser/statements/yield.rb +18 -0
  243. data/spec/ruby-lint/parser/types/arrays.rb +47 -0
  244. data/spec/ruby-lint/parser/types/booleans.rb +11 -0
  245. data/spec/ruby-lint/parser/types/constants.rb +32 -0
  246. data/spec/ruby-lint/parser/types/hashes.rb +55 -0
  247. data/spec/ruby-lint/parser/types/nil.rb +7 -0
  248. data/spec/ruby-lint/parser/types/numbers.rb +11 -0
  249. data/spec/ruby-lint/parser/types/procs.rb +11 -0
  250. data/spec/ruby-lint/parser/types/ranges.rb +11 -0
  251. data/spec/ruby-lint/parser/types/regexp.rb +27 -0
  252. data/spec/ruby-lint/parser/types/strings.rb +44 -0
  253. data/spec/ruby-lint/parser/types/symbols.rb +15 -0
  254. data/spec/ruby-lint/presenter/json.rb +31 -0
  255. data/spec/ruby-lint/presenter/text.rb +22 -0
  256. data/spec/ruby-lint/report.rb +45 -15
  257. data/spec/ruby-lint/report/entry.rb +24 -0
  258. data/spec/support/bacon.rb +33 -0
  259. data/spec/support/building.rb +43 -0
  260. data/spec/support/definitions.rb +23 -0
  261. data/spec/support/parsing.rb +23 -0
  262. data/spec/support/simplecov.rb +16 -0
  263. data/task/build.rake +9 -0
  264. data/task/checksum.rake +13 -0
  265. data/task/coverage.rake +6 -0
  266. data/task/doc.rake +5 -0
  267. data/task/generate.rake +34 -0
  268. data/task/graphviz.rake +12 -0
  269. data/task/stdlib.rake +2 -9
  270. data/task/tag.rake +6 -0
  271. metadata +337 -68
  272. metadata.gz.asc +17 -0
  273. data/.rbenv-version +0 -1
  274. data/lib/ruby-lint/analyze/coding_style.rb +0 -407
  275. data/lib/ruby-lint/analyze/definitions.rb +0 -244
  276. data/lib/ruby-lint/analyze/method_validation.rb +0 -104
  277. data/lib/ruby-lint/callback.rb +0 -67
  278. data/lib/ruby-lint/constant_importer.rb +0 -112
  279. data/lib/ruby-lint/definition.rb +0 -230
  280. data/lib/ruby-lint/formatter/text.rb +0 -54
  281. data/lib/ruby-lint/helper/definition_resolver.rb +0 -143
  282. data/lib/ruby-lint/helper/scoping.rb +0 -138
  283. data/lib/ruby-lint/options.rb +0 -58
  284. data/lib/ruby-lint/token/assignment_token.rb +0 -35
  285. data/lib/ruby-lint/token/begin_rescue_token.rb +0 -57
  286. data/lib/ruby-lint/token/block_token.rb +0 -26
  287. data/lib/ruby-lint/token/case_token.rb +0 -44
  288. data/lib/ruby-lint/token/class_token.rb +0 -24
  289. data/lib/ruby-lint/token/keyword_token.rb +0 -43
  290. data/lib/ruby-lint/token/method_definition_token.rb +0 -64
  291. data/lib/ruby-lint/token/method_token.rb +0 -56
  292. data/lib/ruby-lint/token/parameters_token.rb +0 -99
  293. data/lib/ruby-lint/token/regexp_token.rb +0 -15
  294. data/lib/ruby-lint/token/statement_token.rb +0 -69
  295. data/lib/ruby-lint/token/token.rb +0 -176
  296. data/lib/ruby-lint/token/variable_token.rb +0 -18
  297. data/spec/benchmarks/memory.rb +0 -52
  298. data/spec/benchmarks/parse_parser.rb +0 -16
  299. data/spec/fixtures/stdlib/un.rb +0 -348
  300. data/spec/ruby-lint/analyze/coding_style.rb +0 -224
  301. data/spec/ruby-lint/analyze/complex/un.rb +0 -29
  302. data/spec/ruby-lint/analyze/definitions/classes.rb +0 -114
  303. data/spec/ruby-lint/analyze/definitions/methods.rb +0 -91
  304. data/spec/ruby-lint/analyze/definitions/modules.rb +0 -207
  305. data/spec/ruby-lint/analyze/definitions/variables.rb +0 -103
  306. data/spec/ruby-lint/analyze/method_validation.rb +0 -177
  307. data/spec/ruby-lint/callback.rb +0 -28
  308. data/spec/ruby-lint/constant_importer.rb +0 -27
  309. data/spec/ruby-lint/definition.rb +0 -96
  310. data/spec/ruby-lint/formatter/text.rb +0 -21
  311. data/spec/ruby-lint/parser/arrays.rb +0 -147
  312. data/spec/ruby-lint/parser/expander_assignments.rb +0 -183
  313. data/spec/ruby-lint/parser/hashes.rb +0 -136
  314. data/spec/ruby-lint/parser/keywords.rb +0 -89
  315. data/spec/ruby-lint/parser/objects.rb +0 -39
  316. data/spec/ruby-lint/parser/procs.rb +0 -113
  317. data/spec/ruby-lint/parser/ranges.rb +0 -49
  318. data/spec/ruby-lint/parser/regexp.rb +0 -31
  319. data/spec/ruby-lint/parser/scalars.rb +0 -93
  320. data/spec/ruby-lint/parser/statements.rb +0 -591
  321. data/spec/ruby-lint/parser/variables.rb +0 -230
@@ -0,0 +1,2030 @@
1
+ ##
2
+ # Constant: Encoding
3
+ # Created: 2013-04-09 14:56:17 +0200
4
+ # Platform: rbx 2.0.0.rc1
5
+ #
6
+ RubyLint.global_scope.define_constant('Encoding') do |klass|
7
+ klass.inherits(RubyLint.global_constant('Object'))
8
+
9
+ klass.define_method('__class_init__')
10
+
11
+ klass.define_method('_load') do |method|
12
+ method.define_argument('name')
13
+ end
14
+
15
+ klass.define_method('aliases')
16
+
17
+ klass.define_method('compatible?') do |method|
18
+ method.define_argument('a')
19
+ method.define_argument('b')
20
+ end
21
+
22
+ klass.define_method('default_external')
23
+
24
+ klass.define_method('default_external=') do |method|
25
+ method.define_argument('enc')
26
+ end
27
+
28
+ klass.define_method('default_internal')
29
+
30
+ klass.define_method('default_internal=') do |method|
31
+ method.define_argument('enc')
32
+ end
33
+
34
+ klass.define_method('find') do |method|
35
+ method.define_argument('name')
36
+ end
37
+
38
+ klass.define_method('list')
39
+
40
+ klass.define_method('locale_charmap')
41
+
42
+ klass.define_method('name_list')
43
+
44
+ klass.define_instance_method('_dump') do |method|
45
+ method.define_argument('depth')
46
+ end
47
+
48
+ klass.define_instance_method('ascii_compatible?')
49
+
50
+ klass.define_instance_method('dummy')
51
+
52
+ klass.define_instance_method('dummy?')
53
+
54
+ klass.define_instance_method('inspect')
55
+
56
+ klass.define_instance_method('name')
57
+
58
+ klass.define_instance_method('names')
59
+
60
+ klass.define_instance_method('replicate') do |method|
61
+ method.define_argument('name')
62
+ end
63
+
64
+ klass.define_instance_method('to_s')
65
+ end
66
+
67
+ ##
68
+ # Constant: Encoding::ANSI_X3_4_1968
69
+ # Created: 2013-04-09 14:56:17 +0200
70
+ # Platform: rbx 2.0.0.rc1
71
+ #
72
+ RubyLint.global_scope.define_constant('Encoding::ANSI_X3_4_1968') do |klass|
73
+ end
74
+
75
+ ##
76
+ # Constant: Encoding::ASCII
77
+ # Created: 2013-04-09 14:56:17 +0200
78
+ # Platform: rbx 2.0.0.rc1
79
+ #
80
+ RubyLint.global_scope.define_constant('Encoding::ASCII') do |klass|
81
+ end
82
+
83
+ ##
84
+ # Constant: Encoding::ASCII_8BIT
85
+ # Created: 2013-04-09 14:56:17 +0200
86
+ # Platform: rbx 2.0.0.rc1
87
+ #
88
+ RubyLint.global_scope.define_constant('Encoding::ASCII_8BIT') do |klass|
89
+ end
90
+
91
+ ##
92
+ # Constant: Encoding::BIG5
93
+ # Created: 2013-04-09 14:56:17 +0200
94
+ # Platform: rbx 2.0.0.rc1
95
+ #
96
+ RubyLint.global_scope.define_constant('Encoding::BIG5') do |klass|
97
+ end
98
+
99
+ ##
100
+ # Constant: Encoding::BIG5_HKSCS
101
+ # Created: 2013-04-09 14:56:17 +0200
102
+ # Platform: rbx 2.0.0.rc1
103
+ #
104
+ RubyLint.global_scope.define_constant('Encoding::BIG5_HKSCS') do |klass|
105
+ end
106
+
107
+ ##
108
+ # Constant: Encoding::BIG5_HKSCS_2008
109
+ # Created: 2013-04-09 14:56:17 +0200
110
+ # Platform: rbx 2.0.0.rc1
111
+ #
112
+ RubyLint.global_scope.define_constant('Encoding::BIG5_HKSCS_2008') do |klass|
113
+ end
114
+
115
+ ##
116
+ # Constant: Encoding::BIG5_UAO
117
+ # Created: 2013-04-09 14:56:17 +0200
118
+ # Platform: rbx 2.0.0.rc1
119
+ #
120
+ RubyLint.global_scope.define_constant('Encoding::BIG5_UAO') do |klass|
121
+ end
122
+
123
+ ##
124
+ # Constant: Encoding::BINARY
125
+ # Created: 2013-04-09 14:56:17 +0200
126
+ # Platform: rbx 2.0.0.rc1
127
+ #
128
+ RubyLint.global_scope.define_constant('Encoding::BINARY') do |klass|
129
+ end
130
+
131
+ ##
132
+ # Constant: Encoding::Big5
133
+ # Created: 2013-04-09 14:56:17 +0200
134
+ # Platform: rbx 2.0.0.rc1
135
+ #
136
+ RubyLint.global_scope.define_constant('Encoding::Big5') do |klass|
137
+ end
138
+
139
+ ##
140
+ # Constant: Encoding::Big5_HKSCS
141
+ # Created: 2013-04-09 14:56:17 +0200
142
+ # Platform: rbx 2.0.0.rc1
143
+ #
144
+ RubyLint.global_scope.define_constant('Encoding::Big5_HKSCS') do |klass|
145
+ end
146
+
147
+ ##
148
+ # Constant: Encoding::Big5_HKSCS_2008
149
+ # Created: 2013-04-09 14:56:17 +0200
150
+ # Platform: rbx 2.0.0.rc1
151
+ #
152
+ RubyLint.global_scope.define_constant('Encoding::Big5_HKSCS_2008') do |klass|
153
+ end
154
+
155
+ ##
156
+ # Constant: Encoding::Big5_UAO
157
+ # Created: 2013-04-09 14:56:17 +0200
158
+ # Platform: rbx 2.0.0.rc1
159
+ #
160
+ RubyLint.global_scope.define_constant('Encoding::Big5_UAO') do |klass|
161
+ end
162
+
163
+ ##
164
+ # Constant: Encoding::CP1250
165
+ # Created: 2013-04-09 14:56:17 +0200
166
+ # Platform: rbx 2.0.0.rc1
167
+ #
168
+ RubyLint.global_scope.define_constant('Encoding::CP1250') do |klass|
169
+ end
170
+
171
+ ##
172
+ # Constant: Encoding::CP1251
173
+ # Created: 2013-04-09 14:56:17 +0200
174
+ # Platform: rbx 2.0.0.rc1
175
+ #
176
+ RubyLint.global_scope.define_constant('Encoding::CP1251') do |klass|
177
+ end
178
+
179
+ ##
180
+ # Constant: Encoding::CP1252
181
+ # Created: 2013-04-09 14:56:17 +0200
182
+ # Platform: rbx 2.0.0.rc1
183
+ #
184
+ RubyLint.global_scope.define_constant('Encoding::CP1252') do |klass|
185
+ end
186
+
187
+ ##
188
+ # Constant: Encoding::CP1253
189
+ # Created: 2013-04-09 14:56:17 +0200
190
+ # Platform: rbx 2.0.0.rc1
191
+ #
192
+ RubyLint.global_scope.define_constant('Encoding::CP1253') do |klass|
193
+ end
194
+
195
+ ##
196
+ # Constant: Encoding::CP1254
197
+ # Created: 2013-04-09 14:56:17 +0200
198
+ # Platform: rbx 2.0.0.rc1
199
+ #
200
+ RubyLint.global_scope.define_constant('Encoding::CP1254') do |klass|
201
+ end
202
+
203
+ ##
204
+ # Constant: Encoding::CP1255
205
+ # Created: 2013-04-09 14:56:17 +0200
206
+ # Platform: rbx 2.0.0.rc1
207
+ #
208
+ RubyLint.global_scope.define_constant('Encoding::CP1255') do |klass|
209
+ end
210
+
211
+ ##
212
+ # Constant: Encoding::CP1256
213
+ # Created: 2013-04-09 14:56:17 +0200
214
+ # Platform: rbx 2.0.0.rc1
215
+ #
216
+ RubyLint.global_scope.define_constant('Encoding::CP1256') do |klass|
217
+ end
218
+
219
+ ##
220
+ # Constant: Encoding::CP1257
221
+ # Created: 2013-04-09 14:56:17 +0200
222
+ # Platform: rbx 2.0.0.rc1
223
+ #
224
+ RubyLint.global_scope.define_constant('Encoding::CP1257') do |klass|
225
+ end
226
+
227
+ ##
228
+ # Constant: Encoding::CP1258
229
+ # Created: 2013-04-09 14:56:17 +0200
230
+ # Platform: rbx 2.0.0.rc1
231
+ #
232
+ RubyLint.global_scope.define_constant('Encoding::CP1258') do |klass|
233
+ end
234
+
235
+ ##
236
+ # Constant: Encoding::CP437
237
+ # Created: 2013-04-09 14:56:17 +0200
238
+ # Platform: rbx 2.0.0.rc1
239
+ #
240
+ RubyLint.global_scope.define_constant('Encoding::CP437') do |klass|
241
+ end
242
+
243
+ ##
244
+ # Constant: Encoding::CP50220
245
+ # Created: 2013-04-09 14:56:17 +0200
246
+ # Platform: rbx 2.0.0.rc1
247
+ #
248
+ RubyLint.global_scope.define_constant('Encoding::CP50220') do |klass|
249
+ end
250
+
251
+ ##
252
+ # Constant: Encoding::CP50221
253
+ # Created: 2013-04-09 14:56:17 +0200
254
+ # Platform: rbx 2.0.0.rc1
255
+ #
256
+ RubyLint.global_scope.define_constant('Encoding::CP50221') do |klass|
257
+ end
258
+
259
+ ##
260
+ # Constant: Encoding::CP51932
261
+ # Created: 2013-04-09 14:56:17 +0200
262
+ # Platform: rbx 2.0.0.rc1
263
+ #
264
+ RubyLint.global_scope.define_constant('Encoding::CP51932') do |klass|
265
+ end
266
+
267
+ ##
268
+ # Constant: Encoding::CP65000
269
+ # Created: 2013-04-09 14:56:17 +0200
270
+ # Platform: rbx 2.0.0.rc1
271
+ #
272
+ RubyLint.global_scope.define_constant('Encoding::CP65000') do |klass|
273
+ end
274
+
275
+ ##
276
+ # Constant: Encoding::CP65001
277
+ # Created: 2013-04-09 14:56:17 +0200
278
+ # Platform: rbx 2.0.0.rc1
279
+ #
280
+ RubyLint.global_scope.define_constant('Encoding::CP65001') do |klass|
281
+ end
282
+
283
+ ##
284
+ # Constant: Encoding::CP737
285
+ # Created: 2013-04-09 14:56:17 +0200
286
+ # Platform: rbx 2.0.0.rc1
287
+ #
288
+ RubyLint.global_scope.define_constant('Encoding::CP737') do |klass|
289
+ end
290
+
291
+ ##
292
+ # Constant: Encoding::CP775
293
+ # Created: 2013-04-09 14:56:17 +0200
294
+ # Platform: rbx 2.0.0.rc1
295
+ #
296
+ RubyLint.global_scope.define_constant('Encoding::CP775') do |klass|
297
+ end
298
+
299
+ ##
300
+ # Constant: Encoding::CP850
301
+ # Created: 2013-04-09 14:56:17 +0200
302
+ # Platform: rbx 2.0.0.rc1
303
+ #
304
+ RubyLint.global_scope.define_constant('Encoding::CP850') do |klass|
305
+ end
306
+
307
+ ##
308
+ # Constant: Encoding::CP852
309
+ # Created: 2013-04-09 14:56:17 +0200
310
+ # Platform: rbx 2.0.0.rc1
311
+ #
312
+ RubyLint.global_scope.define_constant('Encoding::CP852') do |klass|
313
+ end
314
+
315
+ ##
316
+ # Constant: Encoding::CP855
317
+ # Created: 2013-04-09 14:56:17 +0200
318
+ # Platform: rbx 2.0.0.rc1
319
+ #
320
+ RubyLint.global_scope.define_constant('Encoding::CP855') do |klass|
321
+ end
322
+
323
+ ##
324
+ # Constant: Encoding::CP857
325
+ # Created: 2013-04-09 14:56:17 +0200
326
+ # Platform: rbx 2.0.0.rc1
327
+ #
328
+ RubyLint.global_scope.define_constant('Encoding::CP857') do |klass|
329
+ end
330
+
331
+ ##
332
+ # Constant: Encoding::CP860
333
+ # Created: 2013-04-09 14:56:17 +0200
334
+ # Platform: rbx 2.0.0.rc1
335
+ #
336
+ RubyLint.global_scope.define_constant('Encoding::CP860') do |klass|
337
+ end
338
+
339
+ ##
340
+ # Constant: Encoding::CP861
341
+ # Created: 2013-04-09 14:56:17 +0200
342
+ # Platform: rbx 2.0.0.rc1
343
+ #
344
+ RubyLint.global_scope.define_constant('Encoding::CP861') do |klass|
345
+ end
346
+
347
+ ##
348
+ # Constant: Encoding::CP862
349
+ # Created: 2013-04-09 14:56:17 +0200
350
+ # Platform: rbx 2.0.0.rc1
351
+ #
352
+ RubyLint.global_scope.define_constant('Encoding::CP862') do |klass|
353
+ end
354
+
355
+ ##
356
+ # Constant: Encoding::CP863
357
+ # Created: 2013-04-09 14:56:17 +0200
358
+ # Platform: rbx 2.0.0.rc1
359
+ #
360
+ RubyLint.global_scope.define_constant('Encoding::CP863') do |klass|
361
+ end
362
+
363
+ ##
364
+ # Constant: Encoding::CP864
365
+ # Created: 2013-04-09 14:56:17 +0200
366
+ # Platform: rbx 2.0.0.rc1
367
+ #
368
+ RubyLint.global_scope.define_constant('Encoding::CP864') do |klass|
369
+ end
370
+
371
+ ##
372
+ # Constant: Encoding::CP865
373
+ # Created: 2013-04-09 14:56:17 +0200
374
+ # Platform: rbx 2.0.0.rc1
375
+ #
376
+ RubyLint.global_scope.define_constant('Encoding::CP865') do |klass|
377
+ end
378
+
379
+ ##
380
+ # Constant: Encoding::CP866
381
+ # Created: 2013-04-09 14:56:17 +0200
382
+ # Platform: rbx 2.0.0.rc1
383
+ #
384
+ RubyLint.global_scope.define_constant('Encoding::CP866') do |klass|
385
+ end
386
+
387
+ ##
388
+ # Constant: Encoding::CP869
389
+ # Created: 2013-04-09 14:56:17 +0200
390
+ # Platform: rbx 2.0.0.rc1
391
+ #
392
+ RubyLint.global_scope.define_constant('Encoding::CP869') do |klass|
393
+ end
394
+
395
+ ##
396
+ # Constant: Encoding::CP874
397
+ # Created: 2013-04-09 14:56:17 +0200
398
+ # Platform: rbx 2.0.0.rc1
399
+ #
400
+ RubyLint.global_scope.define_constant('Encoding::CP874') do |klass|
401
+ end
402
+
403
+ ##
404
+ # Constant: Encoding::CP878
405
+ # Created: 2013-04-09 14:56:17 +0200
406
+ # Platform: rbx 2.0.0.rc1
407
+ #
408
+ RubyLint.global_scope.define_constant('Encoding::CP878') do |klass|
409
+ end
410
+
411
+ ##
412
+ # Constant: Encoding::CP932
413
+ # Created: 2013-04-09 14:56:17 +0200
414
+ # Platform: rbx 2.0.0.rc1
415
+ #
416
+ RubyLint.global_scope.define_constant('Encoding::CP932') do |klass|
417
+ end
418
+
419
+ ##
420
+ # Constant: Encoding::CP936
421
+ # Created: 2013-04-09 14:56:17 +0200
422
+ # Platform: rbx 2.0.0.rc1
423
+ #
424
+ RubyLint.global_scope.define_constant('Encoding::CP936') do |klass|
425
+ end
426
+
427
+ ##
428
+ # Constant: Encoding::CP949
429
+ # Created: 2013-04-09 14:56:17 +0200
430
+ # Platform: rbx 2.0.0.rc1
431
+ #
432
+ RubyLint.global_scope.define_constant('Encoding::CP949') do |klass|
433
+ end
434
+
435
+ ##
436
+ # Constant: Encoding::CP950
437
+ # Created: 2013-04-09 14:56:17 +0200
438
+ # Platform: rbx 2.0.0.rc1
439
+ #
440
+ RubyLint.global_scope.define_constant('Encoding::CP950') do |klass|
441
+ end
442
+
443
+ ##
444
+ # Constant: Encoding::CP951
445
+ # Created: 2013-04-09 14:56:17 +0200
446
+ # Platform: rbx 2.0.0.rc1
447
+ #
448
+ RubyLint.global_scope.define_constant('Encoding::CP951') do |klass|
449
+ end
450
+
451
+ ##
452
+ # Constant: Encoding::CSWINDOWS31J
453
+ # Created: 2013-04-09 14:56:17 +0200
454
+ # Platform: rbx 2.0.0.rc1
455
+ #
456
+ RubyLint.global_scope.define_constant('Encoding::CSWINDOWS31J') do |klass|
457
+ end
458
+
459
+ ##
460
+ # Constant: Encoding::CompatibilityError
461
+ # Created: 2013-04-09 14:56:17 +0200
462
+ # Platform: rbx 2.0.0.rc1
463
+ #
464
+ RubyLint.global_scope.define_constant('Encoding::CompatibilityError') do |klass|
465
+ klass.inherits(RubyLint.global_constant('EncodingError'))
466
+ end
467
+
468
+ ##
469
+ # Constant: Encoding::Converter
470
+ # Created: 2013-04-09 14:56:17 +0200
471
+ # Platform: rbx 2.0.0.rc1
472
+ #
473
+ RubyLint.global_scope.define_constant('Encoding::Converter') do |klass|
474
+ klass.inherits(RubyLint.global_constant('Object'))
475
+
476
+ klass.define_method('__class_init__')
477
+
478
+ klass.define_method('allocate')
479
+
480
+ klass.define_method('asciicompat_encoding') do |method|
481
+ method.define_argument('string_or_encoding')
482
+ end
483
+
484
+ klass.define_method('search_convpath') do |method|
485
+ method.define_argument('from')
486
+ method.define_argument('to')
487
+ method.define_optional_argument('options')
488
+ end
489
+
490
+ klass.define_instance_method('convert') do |method|
491
+ method.define_argument('str')
492
+ end
493
+
494
+ klass.define_instance_method('convpath')
495
+
496
+ klass.define_instance_method('destination_encoding')
497
+
498
+ klass.define_instance_method('destination_encoding=')
499
+
500
+ klass.define_instance_method('finish')
501
+
502
+ klass.define_instance_method('initialize') do |method|
503
+ method.define_argument('from')
504
+ method.define_argument('to')
505
+ method.define_optional_argument('options')
506
+ end
507
+
508
+ klass.define_instance_method('last_error')
509
+
510
+ klass.define_instance_method('primitive_convert') do |method|
511
+ method.define_argument('source')
512
+ method.define_argument('target')
513
+ method.define_optional_argument('offset')
514
+ method.define_optional_argument('size')
515
+ method.define_optional_argument('options')
516
+ end
517
+
518
+ klass.define_instance_method('primitive_errinfo')
519
+
520
+ klass.define_instance_method('putback') do |method|
521
+ method.define_optional_argument('maxbytes')
522
+ end
523
+
524
+ klass.define_instance_method('replacement')
525
+
526
+ klass.define_instance_method('replacement=') do |method|
527
+ method.define_argument('str')
528
+ end
529
+
530
+ klass.define_instance_method('source_encoding')
531
+
532
+ klass.define_instance_method('source_encoding=')
533
+ end
534
+
535
+ ##
536
+ # Constant: Encoding::Converter::AFTER_OUTPUT
537
+ # Created: 2013-04-09 14:56:17 +0200
538
+ # Platform: rbx 2.0.0.rc1
539
+ #
540
+ RubyLint.global_scope.define_constant('Encoding::Converter::AFTER_OUTPUT') do |klass|
541
+ end
542
+
543
+ ##
544
+ # Constant: Encoding::Converter::CRLF_NEWLINE_DECORATOR
545
+ # Created: 2013-04-09 14:56:17 +0200
546
+ # Platform: rbx 2.0.0.rc1
547
+ #
548
+ RubyLint.global_scope.define_constant('Encoding::Converter::CRLF_NEWLINE_DECORATOR') do |klass|
549
+ end
550
+
551
+ ##
552
+ # Constant: Encoding::Converter::CR_NEWLINE_DECORATOR
553
+ # Created: 2013-04-09 14:56:17 +0200
554
+ # Platform: rbx 2.0.0.rc1
555
+ #
556
+ RubyLint.global_scope.define_constant('Encoding::Converter::CR_NEWLINE_DECORATOR') do |klass|
557
+ end
558
+
559
+ ##
560
+ # Constant: Encoding::Converter::INVALID_MASK
561
+ # Created: 2013-04-09 14:56:17 +0200
562
+ # Platform: rbx 2.0.0.rc1
563
+ #
564
+ RubyLint.global_scope.define_constant('Encoding::Converter::INVALID_MASK') do |klass|
565
+ end
566
+
567
+ ##
568
+ # Constant: Encoding::Converter::INVALID_REPLACE
569
+ # Created: 2013-04-09 14:56:17 +0200
570
+ # Platform: rbx 2.0.0.rc1
571
+ #
572
+ RubyLint.global_scope.define_constant('Encoding::Converter::INVALID_REPLACE') do |klass|
573
+ end
574
+
575
+ ##
576
+ # Constant: Encoding::Converter::PARTIAL_INPUT
577
+ # Created: 2013-04-09 14:56:17 +0200
578
+ # Platform: rbx 2.0.0.rc1
579
+ #
580
+ RubyLint.global_scope.define_constant('Encoding::Converter::PARTIAL_INPUT') do |klass|
581
+ end
582
+
583
+ ##
584
+ # Constant: Encoding::Converter::TranscodingPath
585
+ # Created: 2013-04-09 14:56:17 +0200
586
+ # Platform: rbx 2.0.0.rc1
587
+ #
588
+ RubyLint.global_scope.define_constant('Encoding::Converter::TranscodingPath') do |klass|
589
+ klass.inherits(RubyLint.global_constant('Object'))
590
+
591
+ klass.define_method('[]') do |method|
592
+ method.define_argument('source')
593
+ method.define_argument('target')
594
+ end
595
+
596
+ klass.define_method('__class_init__')
597
+
598
+ klass.define_method('cache_loaded')
599
+
600
+ klass.define_method('cache_loaded?')
601
+
602
+ klass.define_method('cache_threshold?')
603
+
604
+ klass.define_method('cache_valid?')
605
+
606
+ klass.define_method('default_transcoders?')
607
+
608
+ klass.define_method('disable_cache')
609
+
610
+ klass.define_method('get_converters') do |method|
611
+ method.define_argument('path')
612
+ end
613
+
614
+ klass.define_method('load_cache?')
615
+
616
+ klass.define_method('paths')
617
+
618
+ klass.define_method('search') do |method|
619
+ method.define_argument('source')
620
+ method.define_argument('target')
621
+ end
622
+ end
623
+
624
+ ##
625
+ # Constant: Encoding::Converter::UNDEF_HEX_CHARREF
626
+ # Created: 2013-04-09 14:56:17 +0200
627
+ # Platform: rbx 2.0.0.rc1
628
+ #
629
+ RubyLint.global_scope.define_constant('Encoding::Converter::UNDEF_HEX_CHARREF') do |klass|
630
+ end
631
+
632
+ ##
633
+ # Constant: Encoding::Converter::UNDEF_MASK
634
+ # Created: 2013-04-09 14:56:17 +0200
635
+ # Platform: rbx 2.0.0.rc1
636
+ #
637
+ RubyLint.global_scope.define_constant('Encoding::Converter::UNDEF_MASK') do |klass|
638
+ end
639
+
640
+ ##
641
+ # Constant: Encoding::Converter::UNDEF_REPLACE
642
+ # Created: 2013-04-09 14:56:17 +0200
643
+ # Platform: rbx 2.0.0.rc1
644
+ #
645
+ RubyLint.global_scope.define_constant('Encoding::Converter::UNDEF_REPLACE') do |klass|
646
+ end
647
+
648
+ ##
649
+ # Constant: Encoding::Converter::UNIVERSAL_NEWLINE_DECORATOR
650
+ # Created: 2013-04-09 14:56:17 +0200
651
+ # Platform: rbx 2.0.0.rc1
652
+ #
653
+ RubyLint.global_scope.define_constant('Encoding::Converter::UNIVERSAL_NEWLINE_DECORATOR') do |klass|
654
+ end
655
+
656
+ ##
657
+ # Constant: Encoding::Converter::XML_ATTR_CONTENT_DECORATOR
658
+ # Created: 2013-04-09 14:56:17 +0200
659
+ # Platform: rbx 2.0.0.rc1
660
+ #
661
+ RubyLint.global_scope.define_constant('Encoding::Converter::XML_ATTR_CONTENT_DECORATOR') do |klass|
662
+ end
663
+
664
+ ##
665
+ # Constant: Encoding::Converter::XML_ATTR_QUOTE_DECORATOR
666
+ # Created: 2013-04-09 14:56:17 +0200
667
+ # Platform: rbx 2.0.0.rc1
668
+ #
669
+ RubyLint.global_scope.define_constant('Encoding::Converter::XML_ATTR_QUOTE_DECORATOR') do |klass|
670
+ end
671
+
672
+ ##
673
+ # Constant: Encoding::Converter::XML_TEXT_DECORATOR
674
+ # Created: 2013-04-09 14:56:17 +0200
675
+ # Platform: rbx 2.0.0.rc1
676
+ #
677
+ RubyLint.global_scope.define_constant('Encoding::Converter::XML_TEXT_DECORATOR') do |klass|
678
+ end
679
+
680
+ ##
681
+ # Constant: Encoding::ConverterNotFoundError
682
+ # Created: 2013-04-09 14:56:17 +0200
683
+ # Platform: rbx 2.0.0.rc1
684
+ #
685
+ RubyLint.global_scope.define_constant('Encoding::ConverterNotFoundError') do |klass|
686
+ klass.inherits(RubyLint.global_constant('EncodingError'))
687
+ end
688
+
689
+ ##
690
+ # Constant: Encoding::CsWindows31J
691
+ # Created: 2013-04-09 14:56:17 +0200
692
+ # Platform: rbx 2.0.0.rc1
693
+ #
694
+ RubyLint.global_scope.define_constant('Encoding::CsWindows31J') do |klass|
695
+ end
696
+
697
+ ##
698
+ # Constant: Encoding::EMACS_MULE
699
+ # Created: 2013-04-09 14:56:17 +0200
700
+ # Platform: rbx 2.0.0.rc1
701
+ #
702
+ RubyLint.global_scope.define_constant('Encoding::EMACS_MULE') do |klass|
703
+ end
704
+
705
+ ##
706
+ # Constant: Encoding::EUCCN
707
+ # Created: 2013-04-09 14:56:17 +0200
708
+ # Platform: rbx 2.0.0.rc1
709
+ #
710
+ RubyLint.global_scope.define_constant('Encoding::EUCCN') do |klass|
711
+ end
712
+
713
+ ##
714
+ # Constant: Encoding::EUCJP
715
+ # Created: 2013-04-09 14:56:17 +0200
716
+ # Platform: rbx 2.0.0.rc1
717
+ #
718
+ RubyLint.global_scope.define_constant('Encoding::EUCJP') do |klass|
719
+ end
720
+
721
+ ##
722
+ # Constant: Encoding::EUCJP_MS
723
+ # Created: 2013-04-09 14:56:17 +0200
724
+ # Platform: rbx 2.0.0.rc1
725
+ #
726
+ RubyLint.global_scope.define_constant('Encoding::EUCJP_MS') do |klass|
727
+ end
728
+
729
+ ##
730
+ # Constant: Encoding::EUCKR
731
+ # Created: 2013-04-09 14:56:17 +0200
732
+ # Platform: rbx 2.0.0.rc1
733
+ #
734
+ RubyLint.global_scope.define_constant('Encoding::EUCKR') do |klass|
735
+ end
736
+
737
+ ##
738
+ # Constant: Encoding::EUCTW
739
+ # Created: 2013-04-09 14:56:17 +0200
740
+ # Platform: rbx 2.0.0.rc1
741
+ #
742
+ RubyLint.global_scope.define_constant('Encoding::EUCTW') do |klass|
743
+ end
744
+
745
+ ##
746
+ # Constant: Encoding::EUC_CN
747
+ # Created: 2013-04-09 14:56:17 +0200
748
+ # Platform: rbx 2.0.0.rc1
749
+ #
750
+ RubyLint.global_scope.define_constant('Encoding::EUC_CN') do |klass|
751
+ end
752
+
753
+ ##
754
+ # Constant: Encoding::EUC_JP
755
+ # Created: 2013-04-09 14:56:17 +0200
756
+ # Platform: rbx 2.0.0.rc1
757
+ #
758
+ RubyLint.global_scope.define_constant('Encoding::EUC_JP') do |klass|
759
+ end
760
+
761
+ ##
762
+ # Constant: Encoding::EUC_JP_MS
763
+ # Created: 2013-04-09 14:56:17 +0200
764
+ # Platform: rbx 2.0.0.rc1
765
+ #
766
+ RubyLint.global_scope.define_constant('Encoding::EUC_JP_MS') do |klass|
767
+ end
768
+
769
+ ##
770
+ # Constant: Encoding::EUC_KR
771
+ # Created: 2013-04-09 14:56:17 +0200
772
+ # Platform: rbx 2.0.0.rc1
773
+ #
774
+ RubyLint.global_scope.define_constant('Encoding::EUC_KR') do |klass|
775
+ end
776
+
777
+ ##
778
+ # Constant: Encoding::EUC_TW
779
+ # Created: 2013-04-09 14:56:17 +0200
780
+ # Platform: rbx 2.0.0.rc1
781
+ #
782
+ RubyLint.global_scope.define_constant('Encoding::EUC_TW') do |klass|
783
+ end
784
+
785
+ ##
786
+ # Constant: Encoding::Emacs_Mule
787
+ # Created: 2013-04-09 14:56:17 +0200
788
+ # Platform: rbx 2.0.0.rc1
789
+ #
790
+ RubyLint.global_scope.define_constant('Encoding::Emacs_Mule') do |klass|
791
+ end
792
+
793
+ ##
794
+ # Constant: Encoding::EncodingList
795
+ # Created: 2013-04-09 14:56:17 +0200
796
+ # Platform: rbx 2.0.0.rc1
797
+ #
798
+ RubyLint.global_scope.define_constant('Encoding::EncodingList') do |klass|
799
+ end
800
+
801
+ ##
802
+ # Constant: Encoding::EncodingMap
803
+ # Created: 2013-04-09 14:56:17 +0200
804
+ # Platform: rbx 2.0.0.rc1
805
+ #
806
+ RubyLint.global_scope.define_constant('Encoding::EncodingMap') do |klass|
807
+ end
808
+
809
+ ##
810
+ # Constant: Encoding::EucCN
811
+ # Created: 2013-04-09 14:56:17 +0200
812
+ # Platform: rbx 2.0.0.rc1
813
+ #
814
+ RubyLint.global_scope.define_constant('Encoding::EucCN') do |klass|
815
+ end
816
+
817
+ ##
818
+ # Constant: Encoding::EucJP
819
+ # Created: 2013-04-09 14:56:17 +0200
820
+ # Platform: rbx 2.0.0.rc1
821
+ #
822
+ RubyLint.global_scope.define_constant('Encoding::EucJP') do |klass|
823
+ end
824
+
825
+ ##
826
+ # Constant: Encoding::EucJP_ms
827
+ # Created: 2013-04-09 14:56:17 +0200
828
+ # Platform: rbx 2.0.0.rc1
829
+ #
830
+ RubyLint.global_scope.define_constant('Encoding::EucJP_ms') do |klass|
831
+ end
832
+
833
+ ##
834
+ # Constant: Encoding::EucKR
835
+ # Created: 2013-04-09 14:56:17 +0200
836
+ # Platform: rbx 2.0.0.rc1
837
+ #
838
+ RubyLint.global_scope.define_constant('Encoding::EucKR') do |klass|
839
+ end
840
+
841
+ ##
842
+ # Constant: Encoding::EucTW
843
+ # Created: 2013-04-09 14:56:17 +0200
844
+ # Platform: rbx 2.0.0.rc1
845
+ #
846
+ RubyLint.global_scope.define_constant('Encoding::EucTW') do |klass|
847
+ end
848
+
849
+ ##
850
+ # Constant: Encoding::GB12345
851
+ # Created: 2013-04-09 14:56:17 +0200
852
+ # Platform: rbx 2.0.0.rc1
853
+ #
854
+ RubyLint.global_scope.define_constant('Encoding::GB12345') do |klass|
855
+ end
856
+
857
+ ##
858
+ # Constant: Encoding::GB18030
859
+ # Created: 2013-04-09 14:56:17 +0200
860
+ # Platform: rbx 2.0.0.rc1
861
+ #
862
+ RubyLint.global_scope.define_constant('Encoding::GB18030') do |klass|
863
+ end
864
+
865
+ ##
866
+ # Constant: Encoding::GB1988
867
+ # Created: 2013-04-09 14:56:17 +0200
868
+ # Platform: rbx 2.0.0.rc1
869
+ #
870
+ RubyLint.global_scope.define_constant('Encoding::GB1988') do |klass|
871
+ end
872
+
873
+ ##
874
+ # Constant: Encoding::GB2312
875
+ # Created: 2013-04-09 14:56:17 +0200
876
+ # Platform: rbx 2.0.0.rc1
877
+ #
878
+ RubyLint.global_scope.define_constant('Encoding::GB2312') do |klass|
879
+ end
880
+
881
+ ##
882
+ # Constant: Encoding::GBK
883
+ # Created: 2013-04-09 14:56:17 +0200
884
+ # Platform: rbx 2.0.0.rc1
885
+ #
886
+ RubyLint.global_scope.define_constant('Encoding::GBK') do |klass|
887
+ end
888
+
889
+ ##
890
+ # Constant: Encoding::IBM437
891
+ # Created: 2013-04-09 14:56:17 +0200
892
+ # Platform: rbx 2.0.0.rc1
893
+ #
894
+ RubyLint.global_scope.define_constant('Encoding::IBM437') do |klass|
895
+ end
896
+
897
+ ##
898
+ # Constant: Encoding::IBM737
899
+ # Created: 2013-04-09 14:56:17 +0200
900
+ # Platform: rbx 2.0.0.rc1
901
+ #
902
+ RubyLint.global_scope.define_constant('Encoding::IBM737') do |klass|
903
+ end
904
+
905
+ ##
906
+ # Constant: Encoding::IBM775
907
+ # Created: 2013-04-09 14:56:17 +0200
908
+ # Platform: rbx 2.0.0.rc1
909
+ #
910
+ RubyLint.global_scope.define_constant('Encoding::IBM775') do |klass|
911
+ end
912
+
913
+ ##
914
+ # Constant: Encoding::IBM850
915
+ # Created: 2013-04-09 14:56:17 +0200
916
+ # Platform: rbx 2.0.0.rc1
917
+ #
918
+ RubyLint.global_scope.define_constant('Encoding::IBM850') do |klass|
919
+ end
920
+
921
+ ##
922
+ # Constant: Encoding::IBM852
923
+ # Created: 2013-04-09 14:56:17 +0200
924
+ # Platform: rbx 2.0.0.rc1
925
+ #
926
+ RubyLint.global_scope.define_constant('Encoding::IBM852') do |klass|
927
+ end
928
+
929
+ ##
930
+ # Constant: Encoding::IBM855
931
+ # Created: 2013-04-09 14:56:17 +0200
932
+ # Platform: rbx 2.0.0.rc1
933
+ #
934
+ RubyLint.global_scope.define_constant('Encoding::IBM855') do |klass|
935
+ end
936
+
937
+ ##
938
+ # Constant: Encoding::IBM857
939
+ # Created: 2013-04-09 14:56:17 +0200
940
+ # Platform: rbx 2.0.0.rc1
941
+ #
942
+ RubyLint.global_scope.define_constant('Encoding::IBM857') do |klass|
943
+ end
944
+
945
+ ##
946
+ # Constant: Encoding::IBM860
947
+ # Created: 2013-04-09 14:56:17 +0200
948
+ # Platform: rbx 2.0.0.rc1
949
+ #
950
+ RubyLint.global_scope.define_constant('Encoding::IBM860') do |klass|
951
+ end
952
+
953
+ ##
954
+ # Constant: Encoding::IBM861
955
+ # Created: 2013-04-09 14:56:17 +0200
956
+ # Platform: rbx 2.0.0.rc1
957
+ #
958
+ RubyLint.global_scope.define_constant('Encoding::IBM861') do |klass|
959
+ end
960
+
961
+ ##
962
+ # Constant: Encoding::IBM862
963
+ # Created: 2013-04-09 14:56:17 +0200
964
+ # Platform: rbx 2.0.0.rc1
965
+ #
966
+ RubyLint.global_scope.define_constant('Encoding::IBM862') do |klass|
967
+ end
968
+
969
+ ##
970
+ # Constant: Encoding::IBM863
971
+ # Created: 2013-04-09 14:56:17 +0200
972
+ # Platform: rbx 2.0.0.rc1
973
+ #
974
+ RubyLint.global_scope.define_constant('Encoding::IBM863') do |klass|
975
+ end
976
+
977
+ ##
978
+ # Constant: Encoding::IBM864
979
+ # Created: 2013-04-09 14:56:17 +0200
980
+ # Platform: rbx 2.0.0.rc1
981
+ #
982
+ RubyLint.global_scope.define_constant('Encoding::IBM864') do |klass|
983
+ end
984
+
985
+ ##
986
+ # Constant: Encoding::IBM865
987
+ # Created: 2013-04-09 14:56:17 +0200
988
+ # Platform: rbx 2.0.0.rc1
989
+ #
990
+ RubyLint.global_scope.define_constant('Encoding::IBM865') do |klass|
991
+ end
992
+
993
+ ##
994
+ # Constant: Encoding::IBM866
995
+ # Created: 2013-04-09 14:56:17 +0200
996
+ # Platform: rbx 2.0.0.rc1
997
+ #
998
+ RubyLint.global_scope.define_constant('Encoding::IBM866') do |klass|
999
+ end
1000
+
1001
+ ##
1002
+ # Constant: Encoding::IBM869
1003
+ # Created: 2013-04-09 14:56:17 +0200
1004
+ # Platform: rbx 2.0.0.rc1
1005
+ #
1006
+ RubyLint.global_scope.define_constant('Encoding::IBM869') do |klass|
1007
+ end
1008
+
1009
+ ##
1010
+ # Constant: Encoding::ISO2022_JP
1011
+ # Created: 2013-04-09 14:56:17 +0200
1012
+ # Platform: rbx 2.0.0.rc1
1013
+ #
1014
+ RubyLint.global_scope.define_constant('Encoding::ISO2022_JP') do |klass|
1015
+ end
1016
+
1017
+ ##
1018
+ # Constant: Encoding::ISO2022_JP2
1019
+ # Created: 2013-04-09 14:56:17 +0200
1020
+ # Platform: rbx 2.0.0.rc1
1021
+ #
1022
+ RubyLint.global_scope.define_constant('Encoding::ISO2022_JP2') do |klass|
1023
+ end
1024
+
1025
+ ##
1026
+ # Constant: Encoding::ISO8859_1
1027
+ # Created: 2013-04-09 14:56:17 +0200
1028
+ # Platform: rbx 2.0.0.rc1
1029
+ #
1030
+ RubyLint.global_scope.define_constant('Encoding::ISO8859_1') do |klass|
1031
+ end
1032
+
1033
+ ##
1034
+ # Constant: Encoding::ISO8859_10
1035
+ # Created: 2013-04-09 14:56:17 +0200
1036
+ # Platform: rbx 2.0.0.rc1
1037
+ #
1038
+ RubyLint.global_scope.define_constant('Encoding::ISO8859_10') do |klass|
1039
+ end
1040
+
1041
+ ##
1042
+ # Constant: Encoding::ISO8859_11
1043
+ # Created: 2013-04-09 14:56:17 +0200
1044
+ # Platform: rbx 2.0.0.rc1
1045
+ #
1046
+ RubyLint.global_scope.define_constant('Encoding::ISO8859_11') do |klass|
1047
+ end
1048
+
1049
+ ##
1050
+ # Constant: Encoding::ISO8859_13
1051
+ # Created: 2013-04-09 14:56:17 +0200
1052
+ # Platform: rbx 2.0.0.rc1
1053
+ #
1054
+ RubyLint.global_scope.define_constant('Encoding::ISO8859_13') do |klass|
1055
+ end
1056
+
1057
+ ##
1058
+ # Constant: Encoding::ISO8859_14
1059
+ # Created: 2013-04-09 14:56:17 +0200
1060
+ # Platform: rbx 2.0.0.rc1
1061
+ #
1062
+ RubyLint.global_scope.define_constant('Encoding::ISO8859_14') do |klass|
1063
+ end
1064
+
1065
+ ##
1066
+ # Constant: Encoding::ISO8859_15
1067
+ # Created: 2013-04-09 14:56:17 +0200
1068
+ # Platform: rbx 2.0.0.rc1
1069
+ #
1070
+ RubyLint.global_scope.define_constant('Encoding::ISO8859_15') do |klass|
1071
+ end
1072
+
1073
+ ##
1074
+ # Constant: Encoding::ISO8859_16
1075
+ # Created: 2013-04-09 14:56:17 +0200
1076
+ # Platform: rbx 2.0.0.rc1
1077
+ #
1078
+ RubyLint.global_scope.define_constant('Encoding::ISO8859_16') do |klass|
1079
+ end
1080
+
1081
+ ##
1082
+ # Constant: Encoding::ISO8859_2
1083
+ # Created: 2013-04-09 14:56:17 +0200
1084
+ # Platform: rbx 2.0.0.rc1
1085
+ #
1086
+ RubyLint.global_scope.define_constant('Encoding::ISO8859_2') do |klass|
1087
+ end
1088
+
1089
+ ##
1090
+ # Constant: Encoding::ISO8859_3
1091
+ # Created: 2013-04-09 14:56:17 +0200
1092
+ # Platform: rbx 2.0.0.rc1
1093
+ #
1094
+ RubyLint.global_scope.define_constant('Encoding::ISO8859_3') do |klass|
1095
+ end
1096
+
1097
+ ##
1098
+ # Constant: Encoding::ISO8859_4
1099
+ # Created: 2013-04-09 14:56:17 +0200
1100
+ # Platform: rbx 2.0.0.rc1
1101
+ #
1102
+ RubyLint.global_scope.define_constant('Encoding::ISO8859_4') do |klass|
1103
+ end
1104
+
1105
+ ##
1106
+ # Constant: Encoding::ISO8859_5
1107
+ # Created: 2013-04-09 14:56:17 +0200
1108
+ # Platform: rbx 2.0.0.rc1
1109
+ #
1110
+ RubyLint.global_scope.define_constant('Encoding::ISO8859_5') do |klass|
1111
+ end
1112
+
1113
+ ##
1114
+ # Constant: Encoding::ISO8859_6
1115
+ # Created: 2013-04-09 14:56:17 +0200
1116
+ # Platform: rbx 2.0.0.rc1
1117
+ #
1118
+ RubyLint.global_scope.define_constant('Encoding::ISO8859_6') do |klass|
1119
+ end
1120
+
1121
+ ##
1122
+ # Constant: Encoding::ISO8859_7
1123
+ # Created: 2013-04-09 14:56:17 +0200
1124
+ # Platform: rbx 2.0.0.rc1
1125
+ #
1126
+ RubyLint.global_scope.define_constant('Encoding::ISO8859_7') do |klass|
1127
+ end
1128
+
1129
+ ##
1130
+ # Constant: Encoding::ISO8859_8
1131
+ # Created: 2013-04-09 14:56:17 +0200
1132
+ # Platform: rbx 2.0.0.rc1
1133
+ #
1134
+ RubyLint.global_scope.define_constant('Encoding::ISO8859_8') do |klass|
1135
+ end
1136
+
1137
+ ##
1138
+ # Constant: Encoding::ISO8859_9
1139
+ # Created: 2013-04-09 14:56:18 +0200
1140
+ # Platform: rbx 2.0.0.rc1
1141
+ #
1142
+ RubyLint.global_scope.define_constant('Encoding::ISO8859_9') do |klass|
1143
+ end
1144
+
1145
+ ##
1146
+ # Constant: Encoding::ISO_2022_JP
1147
+ # Created: 2013-04-09 14:56:18 +0200
1148
+ # Platform: rbx 2.0.0.rc1
1149
+ #
1150
+ RubyLint.global_scope.define_constant('Encoding::ISO_2022_JP') do |klass|
1151
+ end
1152
+
1153
+ ##
1154
+ # Constant: Encoding::ISO_2022_JP_2
1155
+ # Created: 2013-04-09 14:56:18 +0200
1156
+ # Platform: rbx 2.0.0.rc1
1157
+ #
1158
+ RubyLint.global_scope.define_constant('Encoding::ISO_2022_JP_2') do |klass|
1159
+ end
1160
+
1161
+ ##
1162
+ # Constant: Encoding::ISO_2022_JP_KDDI
1163
+ # Created: 2013-04-09 14:56:18 +0200
1164
+ # Platform: rbx 2.0.0.rc1
1165
+ #
1166
+ RubyLint.global_scope.define_constant('Encoding::ISO_2022_JP_KDDI') do |klass|
1167
+ end
1168
+
1169
+ ##
1170
+ # Constant: Encoding::ISO_8859_1
1171
+ # Created: 2013-04-09 14:56:18 +0200
1172
+ # Platform: rbx 2.0.0.rc1
1173
+ #
1174
+ RubyLint.global_scope.define_constant('Encoding::ISO_8859_1') do |klass|
1175
+ end
1176
+
1177
+ ##
1178
+ # Constant: Encoding::ISO_8859_10
1179
+ # Created: 2013-04-09 14:56:18 +0200
1180
+ # Platform: rbx 2.0.0.rc1
1181
+ #
1182
+ RubyLint.global_scope.define_constant('Encoding::ISO_8859_10') do |klass|
1183
+ end
1184
+
1185
+ ##
1186
+ # Constant: Encoding::ISO_8859_11
1187
+ # Created: 2013-04-09 14:56:18 +0200
1188
+ # Platform: rbx 2.0.0.rc1
1189
+ #
1190
+ RubyLint.global_scope.define_constant('Encoding::ISO_8859_11') do |klass|
1191
+ end
1192
+
1193
+ ##
1194
+ # Constant: Encoding::ISO_8859_13
1195
+ # Created: 2013-04-09 14:56:18 +0200
1196
+ # Platform: rbx 2.0.0.rc1
1197
+ #
1198
+ RubyLint.global_scope.define_constant('Encoding::ISO_8859_13') do |klass|
1199
+ end
1200
+
1201
+ ##
1202
+ # Constant: Encoding::ISO_8859_14
1203
+ # Created: 2013-04-09 14:56:18 +0200
1204
+ # Platform: rbx 2.0.0.rc1
1205
+ #
1206
+ RubyLint.global_scope.define_constant('Encoding::ISO_8859_14') do |klass|
1207
+ end
1208
+
1209
+ ##
1210
+ # Constant: Encoding::ISO_8859_15
1211
+ # Created: 2013-04-09 14:56:18 +0200
1212
+ # Platform: rbx 2.0.0.rc1
1213
+ #
1214
+ RubyLint.global_scope.define_constant('Encoding::ISO_8859_15') do |klass|
1215
+ end
1216
+
1217
+ ##
1218
+ # Constant: Encoding::ISO_8859_16
1219
+ # Created: 2013-04-09 14:56:18 +0200
1220
+ # Platform: rbx 2.0.0.rc1
1221
+ #
1222
+ RubyLint.global_scope.define_constant('Encoding::ISO_8859_16') do |klass|
1223
+ end
1224
+
1225
+ ##
1226
+ # Constant: Encoding::ISO_8859_2
1227
+ # Created: 2013-04-09 14:56:18 +0200
1228
+ # Platform: rbx 2.0.0.rc1
1229
+ #
1230
+ RubyLint.global_scope.define_constant('Encoding::ISO_8859_2') do |klass|
1231
+ end
1232
+
1233
+ ##
1234
+ # Constant: Encoding::ISO_8859_3
1235
+ # Created: 2013-04-09 14:56:18 +0200
1236
+ # Platform: rbx 2.0.0.rc1
1237
+ #
1238
+ RubyLint.global_scope.define_constant('Encoding::ISO_8859_3') do |klass|
1239
+ end
1240
+
1241
+ ##
1242
+ # Constant: Encoding::ISO_8859_4
1243
+ # Created: 2013-04-09 14:56:18 +0200
1244
+ # Platform: rbx 2.0.0.rc1
1245
+ #
1246
+ RubyLint.global_scope.define_constant('Encoding::ISO_8859_4') do |klass|
1247
+ end
1248
+
1249
+ ##
1250
+ # Constant: Encoding::ISO_8859_5
1251
+ # Created: 2013-04-09 14:56:18 +0200
1252
+ # Platform: rbx 2.0.0.rc1
1253
+ #
1254
+ RubyLint.global_scope.define_constant('Encoding::ISO_8859_5') do |klass|
1255
+ end
1256
+
1257
+ ##
1258
+ # Constant: Encoding::ISO_8859_6
1259
+ # Created: 2013-04-09 14:56:18 +0200
1260
+ # Platform: rbx 2.0.0.rc1
1261
+ #
1262
+ RubyLint.global_scope.define_constant('Encoding::ISO_8859_6') do |klass|
1263
+ end
1264
+
1265
+ ##
1266
+ # Constant: Encoding::ISO_8859_7
1267
+ # Created: 2013-04-09 14:56:18 +0200
1268
+ # Platform: rbx 2.0.0.rc1
1269
+ #
1270
+ RubyLint.global_scope.define_constant('Encoding::ISO_8859_7') do |klass|
1271
+ end
1272
+
1273
+ ##
1274
+ # Constant: Encoding::ISO_8859_8
1275
+ # Created: 2013-04-09 14:56:18 +0200
1276
+ # Platform: rbx 2.0.0.rc1
1277
+ #
1278
+ RubyLint.global_scope.define_constant('Encoding::ISO_8859_8') do |klass|
1279
+ end
1280
+
1281
+ ##
1282
+ # Constant: Encoding::ISO_8859_9
1283
+ # Created: 2013-04-09 14:56:18 +0200
1284
+ # Platform: rbx 2.0.0.rc1
1285
+ #
1286
+ RubyLint.global_scope.define_constant('Encoding::ISO_8859_9') do |klass|
1287
+ end
1288
+
1289
+ ##
1290
+ # Constant: Encoding::InvalidByteSequenceError
1291
+ # Created: 2013-04-09 14:56:18 +0200
1292
+ # Platform: rbx 2.0.0.rc1
1293
+ #
1294
+ RubyLint.global_scope.define_constant('Encoding::InvalidByteSequenceError') do |klass|
1295
+ klass.inherits(RubyLint.global_constant('EncodingError'))
1296
+
1297
+ klass.define_method('__class_init__')
1298
+
1299
+ klass.define_instance_method('destination_encoding')
1300
+
1301
+ klass.define_instance_method('destination_encoding_name')
1302
+
1303
+ klass.define_instance_method('error_bytes')
1304
+
1305
+ klass.define_instance_method('incomplete_input?')
1306
+
1307
+ klass.define_instance_method('initialize') do |method|
1308
+ method.define_optional_argument('message')
1309
+ end
1310
+
1311
+ klass.define_instance_method('readagain_bytes')
1312
+
1313
+ klass.define_instance_method('source_encoding')
1314
+
1315
+ klass.define_instance_method('source_encoding_name')
1316
+ end
1317
+
1318
+ ##
1319
+ # Constant: Encoding::KOI8_R
1320
+ # Created: 2013-04-09 14:56:18 +0200
1321
+ # Platform: rbx 2.0.0.rc1
1322
+ #
1323
+ RubyLint.global_scope.define_constant('Encoding::KOI8_R') do |klass|
1324
+ end
1325
+
1326
+ ##
1327
+ # Constant: Encoding::KOI8_U
1328
+ # Created: 2013-04-09 14:56:18 +0200
1329
+ # Platform: rbx 2.0.0.rc1
1330
+ #
1331
+ RubyLint.global_scope.define_constant('Encoding::KOI8_U') do |klass|
1332
+ end
1333
+
1334
+ ##
1335
+ # Constant: Encoding::LocaleCharmap
1336
+ # Created: 2013-04-09 14:56:18 +0200
1337
+ # Platform: rbx 2.0.0.rc1
1338
+ #
1339
+ RubyLint.global_scope.define_constant('Encoding::LocaleCharmap') do |klass|
1340
+ end
1341
+
1342
+ ##
1343
+ # Constant: Encoding::MACCENTEURO
1344
+ # Created: 2013-04-09 14:56:18 +0200
1345
+ # Platform: rbx 2.0.0.rc1
1346
+ #
1347
+ RubyLint.global_scope.define_constant('Encoding::MACCENTEURO') do |klass|
1348
+ end
1349
+
1350
+ ##
1351
+ # Constant: Encoding::MACCROATIAN
1352
+ # Created: 2013-04-09 14:56:18 +0200
1353
+ # Platform: rbx 2.0.0.rc1
1354
+ #
1355
+ RubyLint.global_scope.define_constant('Encoding::MACCROATIAN') do |klass|
1356
+ end
1357
+
1358
+ ##
1359
+ # Constant: Encoding::MACCYRILLIC
1360
+ # Created: 2013-04-09 14:56:18 +0200
1361
+ # Platform: rbx 2.0.0.rc1
1362
+ #
1363
+ RubyLint.global_scope.define_constant('Encoding::MACCYRILLIC') do |klass|
1364
+ end
1365
+
1366
+ ##
1367
+ # Constant: Encoding::MACGREEK
1368
+ # Created: 2013-04-09 14:56:18 +0200
1369
+ # Platform: rbx 2.0.0.rc1
1370
+ #
1371
+ RubyLint.global_scope.define_constant('Encoding::MACGREEK') do |klass|
1372
+ end
1373
+
1374
+ ##
1375
+ # Constant: Encoding::MACICELAND
1376
+ # Created: 2013-04-09 14:56:18 +0200
1377
+ # Platform: rbx 2.0.0.rc1
1378
+ #
1379
+ RubyLint.global_scope.define_constant('Encoding::MACICELAND') do |klass|
1380
+ end
1381
+
1382
+ ##
1383
+ # Constant: Encoding::MACJAPAN
1384
+ # Created: 2013-04-09 14:56:18 +0200
1385
+ # Platform: rbx 2.0.0.rc1
1386
+ #
1387
+ RubyLint.global_scope.define_constant('Encoding::MACJAPAN') do |klass|
1388
+ end
1389
+
1390
+ ##
1391
+ # Constant: Encoding::MACJAPANESE
1392
+ # Created: 2013-04-09 14:56:18 +0200
1393
+ # Platform: rbx 2.0.0.rc1
1394
+ #
1395
+ RubyLint.global_scope.define_constant('Encoding::MACJAPANESE') do |klass|
1396
+ end
1397
+
1398
+ ##
1399
+ # Constant: Encoding::MACROMAN
1400
+ # Created: 2013-04-09 14:56:18 +0200
1401
+ # Platform: rbx 2.0.0.rc1
1402
+ #
1403
+ RubyLint.global_scope.define_constant('Encoding::MACROMAN') do |klass|
1404
+ end
1405
+
1406
+ ##
1407
+ # Constant: Encoding::MACROMANIA
1408
+ # Created: 2013-04-09 14:56:18 +0200
1409
+ # Platform: rbx 2.0.0.rc1
1410
+ #
1411
+ RubyLint.global_scope.define_constant('Encoding::MACROMANIA') do |klass|
1412
+ end
1413
+
1414
+ ##
1415
+ # Constant: Encoding::MACTHAI
1416
+ # Created: 2013-04-09 14:56:18 +0200
1417
+ # Platform: rbx 2.0.0.rc1
1418
+ #
1419
+ RubyLint.global_scope.define_constant('Encoding::MACTHAI') do |klass|
1420
+ end
1421
+
1422
+ ##
1423
+ # Constant: Encoding::MACTURKISH
1424
+ # Created: 2013-04-09 14:56:18 +0200
1425
+ # Platform: rbx 2.0.0.rc1
1426
+ #
1427
+ RubyLint.global_scope.define_constant('Encoding::MACTURKISH') do |klass|
1428
+ end
1429
+
1430
+ ##
1431
+ # Constant: Encoding::MACUKRAINE
1432
+ # Created: 2013-04-09 14:56:18 +0200
1433
+ # Platform: rbx 2.0.0.rc1
1434
+ #
1435
+ RubyLint.global_scope.define_constant('Encoding::MACUKRAINE') do |klass|
1436
+ end
1437
+
1438
+ ##
1439
+ # Constant: Encoding::MacCentEuro
1440
+ # Created: 2013-04-09 14:56:18 +0200
1441
+ # Platform: rbx 2.0.0.rc1
1442
+ #
1443
+ RubyLint.global_scope.define_constant('Encoding::MacCentEuro') do |klass|
1444
+ end
1445
+
1446
+ ##
1447
+ # Constant: Encoding::MacCroatian
1448
+ # Created: 2013-04-09 14:56:18 +0200
1449
+ # Platform: rbx 2.0.0.rc1
1450
+ #
1451
+ RubyLint.global_scope.define_constant('Encoding::MacCroatian') do |klass|
1452
+ end
1453
+
1454
+ ##
1455
+ # Constant: Encoding::MacCyrillic
1456
+ # Created: 2013-04-09 14:56:18 +0200
1457
+ # Platform: rbx 2.0.0.rc1
1458
+ #
1459
+ RubyLint.global_scope.define_constant('Encoding::MacCyrillic') do |klass|
1460
+ end
1461
+
1462
+ ##
1463
+ # Constant: Encoding::MacGreek
1464
+ # Created: 2013-04-09 14:56:18 +0200
1465
+ # Platform: rbx 2.0.0.rc1
1466
+ #
1467
+ RubyLint.global_scope.define_constant('Encoding::MacGreek') do |klass|
1468
+ end
1469
+
1470
+ ##
1471
+ # Constant: Encoding::MacIceland
1472
+ # Created: 2013-04-09 14:56:18 +0200
1473
+ # Platform: rbx 2.0.0.rc1
1474
+ #
1475
+ RubyLint.global_scope.define_constant('Encoding::MacIceland') do |klass|
1476
+ end
1477
+
1478
+ ##
1479
+ # Constant: Encoding::MacJapan
1480
+ # Created: 2013-04-09 14:56:18 +0200
1481
+ # Platform: rbx 2.0.0.rc1
1482
+ #
1483
+ RubyLint.global_scope.define_constant('Encoding::MacJapan') do |klass|
1484
+ end
1485
+
1486
+ ##
1487
+ # Constant: Encoding::MacJapanese
1488
+ # Created: 2013-04-09 14:56:18 +0200
1489
+ # Platform: rbx 2.0.0.rc1
1490
+ #
1491
+ RubyLint.global_scope.define_constant('Encoding::MacJapanese') do |klass|
1492
+ end
1493
+
1494
+ ##
1495
+ # Constant: Encoding::MacRoman
1496
+ # Created: 2013-04-09 14:56:18 +0200
1497
+ # Platform: rbx 2.0.0.rc1
1498
+ #
1499
+ RubyLint.global_scope.define_constant('Encoding::MacRoman') do |klass|
1500
+ end
1501
+
1502
+ ##
1503
+ # Constant: Encoding::MacRomania
1504
+ # Created: 2013-04-09 14:56:18 +0200
1505
+ # Platform: rbx 2.0.0.rc1
1506
+ #
1507
+ RubyLint.global_scope.define_constant('Encoding::MacRomania') do |klass|
1508
+ end
1509
+
1510
+ ##
1511
+ # Constant: Encoding::MacThai
1512
+ # Created: 2013-04-09 14:56:18 +0200
1513
+ # Platform: rbx 2.0.0.rc1
1514
+ #
1515
+ RubyLint.global_scope.define_constant('Encoding::MacThai') do |klass|
1516
+ end
1517
+
1518
+ ##
1519
+ # Constant: Encoding::MacTurkish
1520
+ # Created: 2013-04-09 14:56:18 +0200
1521
+ # Platform: rbx 2.0.0.rc1
1522
+ #
1523
+ RubyLint.global_scope.define_constant('Encoding::MacTurkish') do |klass|
1524
+ end
1525
+
1526
+ ##
1527
+ # Constant: Encoding::MacUkraine
1528
+ # Created: 2013-04-09 14:56:18 +0200
1529
+ # Platform: rbx 2.0.0.rc1
1530
+ #
1531
+ RubyLint.global_scope.define_constant('Encoding::MacUkraine') do |klass|
1532
+ end
1533
+
1534
+ ##
1535
+ # Constant: Encoding::PCK
1536
+ # Created: 2013-04-09 14:56:18 +0200
1537
+ # Platform: rbx 2.0.0.rc1
1538
+ #
1539
+ RubyLint.global_scope.define_constant('Encoding::PCK') do |klass|
1540
+ end
1541
+
1542
+ ##
1543
+ # Constant: Encoding::SHIFT_JIS
1544
+ # Created: 2013-04-09 14:56:18 +0200
1545
+ # Platform: rbx 2.0.0.rc1
1546
+ #
1547
+ RubyLint.global_scope.define_constant('Encoding::SHIFT_JIS') do |klass|
1548
+ end
1549
+
1550
+ ##
1551
+ # Constant: Encoding::SJIS
1552
+ # Created: 2013-04-09 14:56:18 +0200
1553
+ # Platform: rbx 2.0.0.rc1
1554
+ #
1555
+ RubyLint.global_scope.define_constant('Encoding::SJIS') do |klass|
1556
+ end
1557
+
1558
+ ##
1559
+ # Constant: Encoding::SJIS_DOCOMO
1560
+ # Created: 2013-04-09 14:56:18 +0200
1561
+ # Platform: rbx 2.0.0.rc1
1562
+ #
1563
+ RubyLint.global_scope.define_constant('Encoding::SJIS_DOCOMO') do |klass|
1564
+ end
1565
+
1566
+ ##
1567
+ # Constant: Encoding::SJIS_DoCoMo
1568
+ # Created: 2013-04-09 14:56:18 +0200
1569
+ # Platform: rbx 2.0.0.rc1
1570
+ #
1571
+ RubyLint.global_scope.define_constant('Encoding::SJIS_DoCoMo') do |klass|
1572
+ end
1573
+
1574
+ ##
1575
+ # Constant: Encoding::SJIS_KDDI
1576
+ # Created: 2013-04-09 14:56:18 +0200
1577
+ # Platform: rbx 2.0.0.rc1
1578
+ #
1579
+ RubyLint.global_scope.define_constant('Encoding::SJIS_KDDI') do |klass|
1580
+ end
1581
+
1582
+ ##
1583
+ # Constant: Encoding::SJIS_SOFTBANK
1584
+ # Created: 2013-04-09 14:56:18 +0200
1585
+ # Platform: rbx 2.0.0.rc1
1586
+ #
1587
+ RubyLint.global_scope.define_constant('Encoding::SJIS_SOFTBANK') do |klass|
1588
+ end
1589
+
1590
+ ##
1591
+ # Constant: Encoding::SJIS_SoftBank
1592
+ # Created: 2013-04-09 14:56:18 +0200
1593
+ # Platform: rbx 2.0.0.rc1
1594
+ #
1595
+ RubyLint.global_scope.define_constant('Encoding::SJIS_SoftBank') do |klass|
1596
+ end
1597
+
1598
+ ##
1599
+ # Constant: Encoding::STATELESS_ISO_2022_JP
1600
+ # Created: 2013-04-09 14:56:18 +0200
1601
+ # Platform: rbx 2.0.0.rc1
1602
+ #
1603
+ RubyLint.global_scope.define_constant('Encoding::STATELESS_ISO_2022_JP') do |klass|
1604
+ end
1605
+
1606
+ ##
1607
+ # Constant: Encoding::STATELESS_ISO_2022_JP_KDDI
1608
+ # Created: 2013-04-09 14:56:18 +0200
1609
+ # Platform: rbx 2.0.0.rc1
1610
+ #
1611
+ RubyLint.global_scope.define_constant('Encoding::STATELESS_ISO_2022_JP_KDDI') do |klass|
1612
+ end
1613
+
1614
+ ##
1615
+ # Constant: Encoding::Shift_JIS
1616
+ # Created: 2013-04-09 14:56:18 +0200
1617
+ # Platform: rbx 2.0.0.rc1
1618
+ #
1619
+ RubyLint.global_scope.define_constant('Encoding::Shift_JIS') do |klass|
1620
+ end
1621
+
1622
+ ##
1623
+ # Constant: Encoding::Stateless_ISO_2022_JP
1624
+ # Created: 2013-04-09 14:56:18 +0200
1625
+ # Platform: rbx 2.0.0.rc1
1626
+ #
1627
+ RubyLint.global_scope.define_constant('Encoding::Stateless_ISO_2022_JP') do |klass|
1628
+ end
1629
+
1630
+ ##
1631
+ # Constant: Encoding::Stateless_ISO_2022_JP_KDDI
1632
+ # Created: 2013-04-09 14:56:18 +0200
1633
+ # Platform: rbx 2.0.0.rc1
1634
+ #
1635
+ RubyLint.global_scope.define_constant('Encoding::Stateless_ISO_2022_JP_KDDI') do |klass|
1636
+ end
1637
+
1638
+ ##
1639
+ # Constant: Encoding::TIS_620
1640
+ # Created: 2013-04-09 14:56:18 +0200
1641
+ # Platform: rbx 2.0.0.rc1
1642
+ #
1643
+ RubyLint.global_scope.define_constant('Encoding::TIS_620') do |klass|
1644
+ end
1645
+
1646
+ ##
1647
+ # Constant: Encoding::Transcoding
1648
+ # Created: 2013-04-09 14:56:18 +0200
1649
+ # Platform: rbx 2.0.0.rc1
1650
+ #
1651
+ RubyLint.global_scope.define_constant('Encoding::Transcoding') do |klass|
1652
+ klass.inherits(RubyLint.global_constant('Object'))
1653
+
1654
+ klass.define_method('__class_init__')
1655
+
1656
+ klass.define_instance_method('inspect')
1657
+
1658
+ klass.define_instance_method('source')
1659
+
1660
+ klass.define_instance_method('source=')
1661
+
1662
+ klass.define_instance_method('target')
1663
+
1664
+ klass.define_instance_method('target=')
1665
+ end
1666
+
1667
+ ##
1668
+ # Constant: Encoding::TranscodingMap
1669
+ # Created: 2013-04-09 14:56:18 +0200
1670
+ # Platform: rbx 2.0.0.rc1
1671
+ #
1672
+ RubyLint.global_scope.define_constant('Encoding::TranscodingMap') do |klass|
1673
+ end
1674
+
1675
+ ##
1676
+ # Constant: Encoding::UCS_2BE
1677
+ # Created: 2013-04-09 14:56:18 +0200
1678
+ # Platform: rbx 2.0.0.rc1
1679
+ #
1680
+ RubyLint.global_scope.define_constant('Encoding::UCS_2BE') do |klass|
1681
+ end
1682
+
1683
+ ##
1684
+ # Constant: Encoding::UCS_4BE
1685
+ # Created: 2013-04-09 14:56:18 +0200
1686
+ # Platform: rbx 2.0.0.rc1
1687
+ #
1688
+ RubyLint.global_scope.define_constant('Encoding::UCS_4BE') do |klass|
1689
+ end
1690
+
1691
+ ##
1692
+ # Constant: Encoding::UCS_4LE
1693
+ # Created: 2013-04-09 14:56:18 +0200
1694
+ # Platform: rbx 2.0.0.rc1
1695
+ #
1696
+ RubyLint.global_scope.define_constant('Encoding::UCS_4LE') do |klass|
1697
+ end
1698
+
1699
+ ##
1700
+ # Constant: Encoding::US_ASCII
1701
+ # Created: 2013-04-09 14:56:18 +0200
1702
+ # Platform: rbx 2.0.0.rc1
1703
+ #
1704
+ RubyLint.global_scope.define_constant('Encoding::US_ASCII') do |klass|
1705
+ end
1706
+
1707
+ ##
1708
+ # Constant: Encoding::UTF8_DOCOMO
1709
+ # Created: 2013-04-09 14:56:18 +0200
1710
+ # Platform: rbx 2.0.0.rc1
1711
+ #
1712
+ RubyLint.global_scope.define_constant('Encoding::UTF8_DOCOMO') do |klass|
1713
+ end
1714
+
1715
+ ##
1716
+ # Constant: Encoding::UTF8_DoCoMo
1717
+ # Created: 2013-04-09 14:56:18 +0200
1718
+ # Platform: rbx 2.0.0.rc1
1719
+ #
1720
+ RubyLint.global_scope.define_constant('Encoding::UTF8_DoCoMo') do |klass|
1721
+ end
1722
+
1723
+ ##
1724
+ # Constant: Encoding::UTF8_KDDI
1725
+ # Created: 2013-04-09 14:56:18 +0200
1726
+ # Platform: rbx 2.0.0.rc1
1727
+ #
1728
+ RubyLint.global_scope.define_constant('Encoding::UTF8_KDDI') do |klass|
1729
+ end
1730
+
1731
+ ##
1732
+ # Constant: Encoding::UTF8_MAC
1733
+ # Created: 2013-04-09 14:56:18 +0200
1734
+ # Platform: rbx 2.0.0.rc1
1735
+ #
1736
+ RubyLint.global_scope.define_constant('Encoding::UTF8_MAC') do |klass|
1737
+ end
1738
+
1739
+ ##
1740
+ # Constant: Encoding::UTF8_SOFTBANK
1741
+ # Created: 2013-04-09 14:56:18 +0200
1742
+ # Platform: rbx 2.0.0.rc1
1743
+ #
1744
+ RubyLint.global_scope.define_constant('Encoding::UTF8_SOFTBANK') do |klass|
1745
+ end
1746
+
1747
+ ##
1748
+ # Constant: Encoding::UTF8_SoftBank
1749
+ # Created: 2013-04-09 14:56:18 +0200
1750
+ # Platform: rbx 2.0.0.rc1
1751
+ #
1752
+ RubyLint.global_scope.define_constant('Encoding::UTF8_SoftBank') do |klass|
1753
+ end
1754
+
1755
+ ##
1756
+ # Constant: Encoding::UTF_16
1757
+ # Created: 2013-04-09 14:56:18 +0200
1758
+ # Platform: rbx 2.0.0.rc1
1759
+ #
1760
+ RubyLint.global_scope.define_constant('Encoding::UTF_16') do |klass|
1761
+ end
1762
+
1763
+ ##
1764
+ # Constant: Encoding::UTF_16BE
1765
+ # Created: 2013-04-09 14:56:18 +0200
1766
+ # Platform: rbx 2.0.0.rc1
1767
+ #
1768
+ RubyLint.global_scope.define_constant('Encoding::UTF_16BE') do |klass|
1769
+ end
1770
+
1771
+ ##
1772
+ # Constant: Encoding::UTF_16LE
1773
+ # Created: 2013-04-09 14:56:18 +0200
1774
+ # Platform: rbx 2.0.0.rc1
1775
+ #
1776
+ RubyLint.global_scope.define_constant('Encoding::UTF_16LE') do |klass|
1777
+ end
1778
+
1779
+ ##
1780
+ # Constant: Encoding::UTF_32
1781
+ # Created: 2013-04-09 14:56:18 +0200
1782
+ # Platform: rbx 2.0.0.rc1
1783
+ #
1784
+ RubyLint.global_scope.define_constant('Encoding::UTF_32') do |klass|
1785
+ end
1786
+
1787
+ ##
1788
+ # Constant: Encoding::UTF_32BE
1789
+ # Created: 2013-04-09 14:56:18 +0200
1790
+ # Platform: rbx 2.0.0.rc1
1791
+ #
1792
+ RubyLint.global_scope.define_constant('Encoding::UTF_32BE') do |klass|
1793
+ end
1794
+
1795
+ ##
1796
+ # Constant: Encoding::UTF_32LE
1797
+ # Created: 2013-04-09 14:56:18 +0200
1798
+ # Platform: rbx 2.0.0.rc1
1799
+ #
1800
+ RubyLint.global_scope.define_constant('Encoding::UTF_32LE') do |klass|
1801
+ end
1802
+
1803
+ ##
1804
+ # Constant: Encoding::UTF_7
1805
+ # Created: 2013-04-09 14:56:18 +0200
1806
+ # Platform: rbx 2.0.0.rc1
1807
+ #
1808
+ RubyLint.global_scope.define_constant('Encoding::UTF_7') do |klass|
1809
+ end
1810
+
1811
+ ##
1812
+ # Constant: Encoding::UTF_8
1813
+ # Created: 2013-04-09 14:56:18 +0200
1814
+ # Platform: rbx 2.0.0.rc1
1815
+ #
1816
+ RubyLint.global_scope.define_constant('Encoding::UTF_8') do |klass|
1817
+ end
1818
+
1819
+ ##
1820
+ # Constant: Encoding::UTF_8_HFS
1821
+ # Created: 2013-04-09 14:56:18 +0200
1822
+ # Platform: rbx 2.0.0.rc1
1823
+ #
1824
+ RubyLint.global_scope.define_constant('Encoding::UTF_8_HFS') do |klass|
1825
+ end
1826
+
1827
+ ##
1828
+ # Constant: Encoding::UTF_8_MAC
1829
+ # Created: 2013-04-09 14:56:18 +0200
1830
+ # Platform: rbx 2.0.0.rc1
1831
+ #
1832
+ RubyLint.global_scope.define_constant('Encoding::UTF_8_MAC') do |klass|
1833
+ end
1834
+
1835
+ ##
1836
+ # Constant: Encoding::UndefinedConversionError
1837
+ # Created: 2013-04-09 14:56:18 +0200
1838
+ # Platform: rbx 2.0.0.rc1
1839
+ #
1840
+ RubyLint.global_scope.define_constant('Encoding::UndefinedConversionError') do |klass|
1841
+ klass.inherits(RubyLint.global_constant('EncodingError'))
1842
+
1843
+ klass.define_method('__class_init__')
1844
+
1845
+ klass.define_instance_method('destination_encoding')
1846
+
1847
+ klass.define_instance_method('destination_encoding_name')
1848
+
1849
+ klass.define_instance_method('error_char')
1850
+
1851
+ klass.define_instance_method('source_encoding')
1852
+
1853
+ klass.define_instance_method('source_encoding_name')
1854
+ end
1855
+
1856
+ ##
1857
+ # Constant: Encoding::WINDOWS_1250
1858
+ # Created: 2013-04-09 14:56:18 +0200
1859
+ # Platform: rbx 2.0.0.rc1
1860
+ #
1861
+ RubyLint.global_scope.define_constant('Encoding::WINDOWS_1250') do |klass|
1862
+ end
1863
+
1864
+ ##
1865
+ # Constant: Encoding::WINDOWS_1251
1866
+ # Created: 2013-04-09 14:56:18 +0200
1867
+ # Platform: rbx 2.0.0.rc1
1868
+ #
1869
+ RubyLint.global_scope.define_constant('Encoding::WINDOWS_1251') do |klass|
1870
+ end
1871
+
1872
+ ##
1873
+ # Constant: Encoding::WINDOWS_1252
1874
+ # Created: 2013-04-09 14:56:18 +0200
1875
+ # Platform: rbx 2.0.0.rc1
1876
+ #
1877
+ RubyLint.global_scope.define_constant('Encoding::WINDOWS_1252') do |klass|
1878
+ end
1879
+
1880
+ ##
1881
+ # Constant: Encoding::WINDOWS_1253
1882
+ # Created: 2013-04-09 14:56:18 +0200
1883
+ # Platform: rbx 2.0.0.rc1
1884
+ #
1885
+ RubyLint.global_scope.define_constant('Encoding::WINDOWS_1253') do |klass|
1886
+ end
1887
+
1888
+ ##
1889
+ # Constant: Encoding::WINDOWS_1254
1890
+ # Created: 2013-04-09 14:56:18 +0200
1891
+ # Platform: rbx 2.0.0.rc1
1892
+ #
1893
+ RubyLint.global_scope.define_constant('Encoding::WINDOWS_1254') do |klass|
1894
+ end
1895
+
1896
+ ##
1897
+ # Constant: Encoding::WINDOWS_1255
1898
+ # Created: 2013-04-09 14:56:18 +0200
1899
+ # Platform: rbx 2.0.0.rc1
1900
+ #
1901
+ RubyLint.global_scope.define_constant('Encoding::WINDOWS_1255') do |klass|
1902
+ end
1903
+
1904
+ ##
1905
+ # Constant: Encoding::WINDOWS_1256
1906
+ # Created: 2013-04-09 14:56:18 +0200
1907
+ # Platform: rbx 2.0.0.rc1
1908
+ #
1909
+ RubyLint.global_scope.define_constant('Encoding::WINDOWS_1256') do |klass|
1910
+ end
1911
+
1912
+ ##
1913
+ # Constant: Encoding::WINDOWS_1257
1914
+ # Created: 2013-04-09 14:56:18 +0200
1915
+ # Platform: rbx 2.0.0.rc1
1916
+ #
1917
+ RubyLint.global_scope.define_constant('Encoding::WINDOWS_1257') do |klass|
1918
+ end
1919
+
1920
+ ##
1921
+ # Constant: Encoding::WINDOWS_1258
1922
+ # Created: 2013-04-09 14:56:18 +0200
1923
+ # Platform: rbx 2.0.0.rc1
1924
+ #
1925
+ RubyLint.global_scope.define_constant('Encoding::WINDOWS_1258') do |klass|
1926
+ end
1927
+
1928
+ ##
1929
+ # Constant: Encoding::WINDOWS_31J
1930
+ # Created: 2013-04-09 14:56:18 +0200
1931
+ # Platform: rbx 2.0.0.rc1
1932
+ #
1933
+ RubyLint.global_scope.define_constant('Encoding::WINDOWS_31J') do |klass|
1934
+ end
1935
+
1936
+ ##
1937
+ # Constant: Encoding::WINDOWS_874
1938
+ # Created: 2013-04-09 14:56:18 +0200
1939
+ # Platform: rbx 2.0.0.rc1
1940
+ #
1941
+ RubyLint.global_scope.define_constant('Encoding::WINDOWS_874') do |klass|
1942
+ end
1943
+
1944
+ ##
1945
+ # Constant: Encoding::Windows_1250
1946
+ # Created: 2013-04-09 14:56:18 +0200
1947
+ # Platform: rbx 2.0.0.rc1
1948
+ #
1949
+ RubyLint.global_scope.define_constant('Encoding::Windows_1250') do |klass|
1950
+ end
1951
+
1952
+ ##
1953
+ # Constant: Encoding::Windows_1251
1954
+ # Created: 2013-04-09 14:56:18 +0200
1955
+ # Platform: rbx 2.0.0.rc1
1956
+ #
1957
+ RubyLint.global_scope.define_constant('Encoding::Windows_1251') do |klass|
1958
+ end
1959
+
1960
+ ##
1961
+ # Constant: Encoding::Windows_1252
1962
+ # Created: 2013-04-09 14:56:18 +0200
1963
+ # Platform: rbx 2.0.0.rc1
1964
+ #
1965
+ RubyLint.global_scope.define_constant('Encoding::Windows_1252') do |klass|
1966
+ end
1967
+
1968
+ ##
1969
+ # Constant: Encoding::Windows_1253
1970
+ # Created: 2013-04-09 14:56:18 +0200
1971
+ # Platform: rbx 2.0.0.rc1
1972
+ #
1973
+ RubyLint.global_scope.define_constant('Encoding::Windows_1253') do |klass|
1974
+ end
1975
+
1976
+ ##
1977
+ # Constant: Encoding::Windows_1254
1978
+ # Created: 2013-04-09 14:56:18 +0200
1979
+ # Platform: rbx 2.0.0.rc1
1980
+ #
1981
+ RubyLint.global_scope.define_constant('Encoding::Windows_1254') do |klass|
1982
+ end
1983
+
1984
+ ##
1985
+ # Constant: Encoding::Windows_1255
1986
+ # Created: 2013-04-09 14:56:18 +0200
1987
+ # Platform: rbx 2.0.0.rc1
1988
+ #
1989
+ RubyLint.global_scope.define_constant('Encoding::Windows_1255') do |klass|
1990
+ end
1991
+
1992
+ ##
1993
+ # Constant: Encoding::Windows_1256
1994
+ # Created: 2013-04-09 14:56:18 +0200
1995
+ # Platform: rbx 2.0.0.rc1
1996
+ #
1997
+ RubyLint.global_scope.define_constant('Encoding::Windows_1256') do |klass|
1998
+ end
1999
+
2000
+ ##
2001
+ # Constant: Encoding::Windows_1257
2002
+ # Created: 2013-04-09 14:56:18 +0200
2003
+ # Platform: rbx 2.0.0.rc1
2004
+ #
2005
+ RubyLint.global_scope.define_constant('Encoding::Windows_1257') do |klass|
2006
+ end
2007
+
2008
+ ##
2009
+ # Constant: Encoding::Windows_1258
2010
+ # Created: 2013-04-09 14:56:18 +0200
2011
+ # Platform: rbx 2.0.0.rc1
2012
+ #
2013
+ RubyLint.global_scope.define_constant('Encoding::Windows_1258') do |klass|
2014
+ end
2015
+
2016
+ ##
2017
+ # Constant: Encoding::Windows_31J
2018
+ # Created: 2013-04-09 14:56:18 +0200
2019
+ # Platform: rbx 2.0.0.rc1
2020
+ #
2021
+ RubyLint.global_scope.define_constant('Encoding::Windows_31J') do |klass|
2022
+ end
2023
+
2024
+ ##
2025
+ # Constant: Encoding::Windows_874
2026
+ # Created: 2013-04-09 14:56:18 +0200
2027
+ # Platform: rbx 2.0.0.rc1
2028
+ #
2029
+ RubyLint.global_scope.define_constant('Encoding::Windows_874') do |klass|
2030
+ end