ruby-lint 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- checksums.yaml.gz.asc +17 -0
- data.tar.gz.asc +14 -14
- data/.ruby-version +1 -0
- data/.travis.yml +0 -1
- data/.yardopts +1 -0
- data/CONTRIBUTING.md +41 -0
- data/MANIFEST +99 -66
- data/README.md +36 -10
- data/Rakefile +6 -0
- data/checksum/ruby-lint-0.0.4.gem.sha512 +1 -0
- data/doc/changelog.md +94 -0
- data/lib/ruby-lint.rb +18 -1
- data/lib/ruby-lint/analysis/argument_amount.rb +43 -10
- data/lib/ruby-lint/analysis/base.rb +23 -17
- data/lib/ruby-lint/analysis/pedantics.rb +3 -1
- data/lib/ruby-lint/analysis/undefined_methods.rb +48 -10
- data/lib/ruby-lint/analysis/unused_variables.rb +27 -5
- data/lib/ruby-lint/ast/node.rb +10 -0
- data/lib/ruby-lint/cli/analyze.rb +22 -4
- data/lib/ruby-lint/cli/base.rb +8 -2
- data/lib/ruby-lint/configuration.rb +43 -4
- data/lib/ruby-lint/definition/constant_proxy.rb +10 -1
- data/lib/ruby-lint/definition/ruby_method.rb +45 -31
- data/lib/ruby-lint/definition/ruby_object.rb +56 -15
- data/lib/ruby-lint/definition_builder/base.rb +4 -0
- data/lib/ruby-lint/definition_builder/primitive.rb +1 -1
- data/lib/ruby-lint/definition_builder/ruby_array.rb +1 -1
- data/lib/ruby-lint/definition_builder/ruby_block.rb +1 -0
- data/lib/ruby-lint/definition_builder/ruby_class.rb +1 -1
- data/lib/ruby-lint/definition_builder/ruby_hash.rb +1 -1
- data/lib/ruby-lint/definition_builder/ruby_module.rb +3 -1
- data/lib/ruby-lint/definition_generator.rb +15 -7
- data/lib/ruby-lint/definitions/core/arg0.rb +1 -1
- data/lib/ruby-lint/definitions/core/argf.rb +1 -1
- data/lib/ruby-lint/definitions/core/argument_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/argv.rb +1 -1
- data/lib/ruby-lint/definitions/core/array.rb +6 -6
- data/lib/ruby-lint/definitions/core/autoload.rb +2 -2
- data/lib/ruby-lint/definitions/core/basic_object.rb +8 -12
- data/lib/ruby-lint/definitions/core/bignum.rb +2 -2
- data/lib/ruby-lint/definitions/core/binding.rb +2 -2
- data/lib/ruby-lint/definitions/core/class.rb +2 -2
- data/lib/ruby-lint/definitions/core/comparable.rb +1 -1
- data/lib/ruby-lint/definitions/core/complex.rb +4 -4
- data/lib/ruby-lint/definitions/core/condition_variable.rb +2 -2
- data/lib/ruby-lint/definitions/core/continuation.rb +2 -2
- data/lib/ruby-lint/definitions/core/data.rb +2 -2
- data/lib/ruby-lint/definitions/core/date.rb +34 -34
- data/lib/ruby-lint/definitions/core/date_time.rb +26 -26
- data/lib/ruby-lint/definitions/core/default_record_separator.rb +1 -1
- data/lib/ruby-lint/definitions/core/digest.rb +14 -14
- data/lib/ruby-lint/definitions/core/dir.rb +34 -34
- data/lib/ruby-lint/definitions/core/encoding.rb +237 -237
- data/lib/ruby-lint/definitions/core/encoding_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/enumerable.rb +15 -15
- data/lib/ruby-lint/definitions/core/enumerator.rb +2 -2
- data/lib/ruby-lint/definitions/core/env.rb +1 -1
- data/lib/ruby-lint/definitions/core/eoferror.rb +2 -2
- data/lib/ruby-lint/definitions/core/erb.rb +30 -23
- data/lib/ruby-lint/definitions/core/errno.rb +525 -525
- data/lib/ruby-lint/definitions/core/etc.rb +6 -6
- data/lib/ruby-lint/definitions/core/exception.rb +2 -2
- data/lib/ruby-lint/definitions/core/false.rb +1 -1
- data/lib/ruby-lint/definitions/core/false_class.rb +2 -2
- data/lib/ruby-lint/definitions/core/fatal_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/fiber.rb +2 -2
- data/lib/ruby-lint/definitions/core/fiber_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/file.rb +68 -68
- data/lib/ruby-lint/definitions/core/file_list.rb +2 -2
- data/lib/ruby-lint/definitions/core/file_test.rb +1 -1
- data/lib/ruby-lint/definitions/core/file_utils.rb +16 -16
- data/lib/ruby-lint/definitions/core/fixnum.rb +4 -4
- data/lib/ruby-lint/definitions/core/float.rb +16 -16
- data/lib/ruby-lint/definitions/core/float_domain_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/gc.rb +2 -2
- data/lib/ruby-lint/definitions/core/gem.rb +119 -119
- data/lib/ruby-lint/definitions/core/hash.rb +14 -14
- data/lib/ruby-lint/definitions/core/immediate_value.rb +1 -1
- data/lib/ruby-lint/definitions/core/index_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/integer.rb +2 -2
- data/lib/ruby-lint/definitions/core/interrupt.rb +2 -2
- data/lib/ruby-lint/definitions/core/io.rb +38 -38
- data/lib/ruby-lint/definitions/core/ioerror.rb +2 -2
- data/lib/ruby-lint/definitions/core/kernel.rb +113 -60
- data/lib/ruby-lint/definitions/core/key_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/load_error.rb +6 -6
- data/lib/ruby-lint/definitions/core/local_jump_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/marshal.rb +35 -35
- data/lib/ruby-lint/definitions/core/match_data.rb +2 -2
- data/lib/ruby-lint/definitions/core/math.rb +7 -7
- data/lib/ruby-lint/definitions/core/memory_segmention_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/method.rb +2 -2
- data/lib/ruby-lint/definitions/core/module.rb +39 -3
- data/lib/ruby-lint/definitions/core/monitor.rb +4 -4
- data/lib/ruby-lint/definitions/core/monitor_mixin.rb +5 -5
- data/lib/ruby-lint/definitions/core/mutex.rb +2 -2
- data/lib/ruby-lint/definitions/core/name_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/nil.rb +1 -1
- data/lib/ruby-lint/definitions/core/nil_class.rb +2 -2
- data/lib/ruby-lint/definitions/core/no_memory_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/no_method_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/not_implemented_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/numeric.rb +2 -2
- data/lib/ruby-lint/definitions/core/object.rb +2 -2
- data/lib/ruby-lint/definitions/core/object_space.rb +1 -1
- data/lib/ruby-lint/definitions/core/open_struct.rb +3 -3
- data/lib/ruby-lint/definitions/core/option_parser.rb +83 -83
- data/lib/ruby-lint/definitions/core/precision.rb +1 -1
- data/lib/ruby-lint/definitions/core/primitive_failure.rb +2 -2
- data/lib/ruby-lint/definitions/core/proc.rb +2 -2
- data/lib/ruby-lint/definitions/core/process.rb +29 -29
- data/lib/ruby-lint/definitions/core/queue.rb +2 -2
- data/lib/ruby-lint/definitions/core/rake.rb +117 -117
- data/lib/ruby-lint/definitions/core/rake_file_utils.rb +1 -1
- data/lib/ruby-lint/definitions/core/rakeversion.rb +1 -1
- data/lib/ruby-lint/definitions/core/random.rb +2 -2
- data/lib/ruby-lint/definitions/core/range.rb +4 -4
- data/lib/ruby-lint/definitions/core/range_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/rational.rb +2 -2
- data/lib/ruby-lint/definitions/core/rb_config.rb +3 -3
- data/lib/ruby-lint/definitions/core/regexp.rb +28 -28
- data/lib/ruby-lint/definitions/core/regexp_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/ruby_copyright.rb +1 -1
- data/lib/ruby-lint/definitions/core/ruby_description.rb +1 -1
- data/lib/ruby-lint/definitions/core/ruby_engine.rb +1 -1
- data/lib/ruby-lint/definitions/core/ruby_patchlevel.rb +1 -1
- data/lib/ruby-lint/definitions/core/ruby_platform.rb +1 -1
- data/lib/ruby-lint/definitions/core/ruby_release_date.rb +1 -1
- data/lib/ruby-lint/definitions/core/ruby_version.rb +1 -1
- data/lib/ruby-lint/definitions/core/runtime_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/scan_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/script_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/security_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/shellwords.rb +1 -1
- data/lib/ruby-lint/definitions/core/signal.rb +3 -3
- data/lib/ruby-lint/definitions/core/signal_exception.rb +2 -2
- data/lib/ruby-lint/definitions/core/singleton.rb +2 -2
- data/lib/ruby-lint/definitions/core/sized_queue.rb +2 -2
- data/lib/ruby-lint/definitions/core/standard_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/stderr.rb +3 -2
- data/lib/ruby-lint/definitions/core/stdin.rb +3 -2
- data/lib/ruby-lint/definitions/core/stdout.rb +3 -2
- data/lib/ruby-lint/definitions/core/stop_iteration.rb +2 -2
- data/lib/ruby-lint/definitions/core/string.rb +21 -21
- data/lib/ruby-lint/definitions/core/string_io.rb +7 -7
- data/lib/ruby-lint/definitions/core/string_scanner.rb +4 -4
- data/lib/ruby-lint/definitions/core/struct.rb +20 -20
- data/lib/ruby-lint/definitions/core/syck.rb +4 -4
- data/lib/ruby-lint/definitions/core/symbol.rb +2 -2
- data/lib/ruby-lint/definitions/core/syntax_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/system_call_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/system_exit.rb +2 -2
- data/lib/ruby-lint/definitions/core/system_stack_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/thread.rb +6 -6
- data/lib/ruby-lint/definitions/core/thread_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/thread_group.rb +2 -2
- data/lib/ruby-lint/definitions/core/time.rb +3 -3
- data/lib/ruby-lint/definitions/core/toplevel_binding.rb +1 -1
- data/lib/ruby-lint/definitions/core/true.rb +1 -1
- data/lib/ruby-lint/definitions/core/true_class.rb +2 -2
- data/lib/ruby-lint/definitions/core/type_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/unbound_method.rb +2 -2
- data/lib/ruby-lint/definitions/core/unmarshalable.rb +1 -1
- data/lib/ruby-lint/definitions/core/unsupported_library_error.rb +2 -2
- data/lib/ruby-lint/definitions/core/weak_ref.rb +4 -4
- data/lib/ruby-lint/definitions/core/yaml.rb +2361 -0
- data/lib/ruby-lint/definitions/core/zero_division_error.rb +2 -2
- data/lib/ruby-lint/definitions/global_variables.rb +9 -0
- data/lib/ruby-lint/definitions/rails/abstract_controller.rb +174 -28
- data/lib/ruby-lint/definitions/rails/action_controller.rb +4959 -550
- data/lib/ruby-lint/definitions/rails/action_dispatch.rb +2489 -292
- data/lib/ruby-lint/definitions/rails/action_mailer.rb +1285 -42
- data/lib/ruby-lint/definitions/rails/action_pack.rb +14 -6
- data/lib/ruby-lint/definitions/rails/action_view.rb +6941 -445
- data/lib/ruby-lint/definitions/rails/active_model.rb +1212 -69
- data/lib/ruby-lint/definitions/rails/active_record.rb +10344 -1450
- data/lib/ruby-lint/definitions/rails/active_support.rb +4631 -573
- data/lib/ruby-lint/definitions/rails/arel.rb +3211 -319
- data/lib/ruby-lint/definitions/rails/rails.rb +2922 -84
- data/lib/ruby-lint/definitions/rails/sprockets.rb +3048 -277
- data/lib/ruby-lint/docstring/mapping.rb +55 -0
- data/lib/ruby-lint/docstring/param_tag.rb +29 -0
- data/lib/ruby-lint/docstring/parser.rb +133 -0
- data/lib/ruby-lint/docstring/return_tag.rb +24 -0
- data/lib/ruby-lint/file_loader.rb +96 -0
- data/lib/ruby-lint/file_scanner.rb +91 -0
- data/lib/ruby-lint/global_scope.rb +56 -0
- data/lib/ruby-lint/helper/constant_paths.rb +1 -1
- data/lib/ruby-lint/inspector.rb +11 -33
- data/lib/ruby-lint/iterator.rb +31 -4
- data/lib/ruby-lint/method_call/alias.rb +46 -0
- data/lib/ruby-lint/method_call/assign_member.rb +55 -0
- data/lib/ruby-lint/method_call/attribute.rb +102 -0
- data/lib/ruby-lint/method_call/base.rb +37 -0
- data/lib/ruby-lint/method_call/define_method.rb +17 -0
- data/lib/ruby-lint/method_call/include.rb +39 -0
- data/lib/ruby-lint/parser.rb +9 -4
- data/lib/ruby-lint/presenter/text.rb +2 -1
- data/lib/ruby-lint/report.rb +19 -42
- data/lib/ruby-lint/report/entry.rb +20 -17
- data/lib/ruby-lint/runner.rb +92 -11
- data/lib/ruby-lint/template/definition.erb +2 -2
- data/lib/ruby-lint/variable_predicates.rb +7 -10
- data/lib/ruby-lint/version.rb +1 -1
- data/lib/ruby-lint/virtual_machine.rb +265 -188
- data/ruby-lint.gemspec +4 -4
- data/ruby-lint.yml +7 -0
- data/spec/fixtures/associating.rb +7 -0
- data/spec/fixtures/file_scanner/lib/example/recursive/source.rb +6 -0
- data/spec/fixtures/file_scanner/lib/example/recursive/target.rb +8 -0
- data/spec/fixtures/file_scanner/lib/example/user.rb +6 -0
- data/spec/fixtures/file_scanner/lib/test-dashes/foo.rb +4 -0
- data/spec/fixtures/file_scanner/rails/app/models/example/user.rb +6 -0
- data/spec/fixtures/file_scanner/rails/app/models/user.rb +4 -0
- data/spec/fixtures/uses_external.rb +1 -0
- data/spec/fixtures/uses_external_invalid.rb +3 -0
- data/spec/fixtures/uses_external_namespace.rb +1 -0
- data/spec/ruby-lint/analysis/{argument_amount.rb → argument_amount_spec.rb} +33 -7
- data/spec/ruby-lint/analysis/base_spec.rb +12 -0
- data/spec/ruby-lint/analysis/{pedantics.rb → pedantics_spec.rb} +24 -4
- data/spec/ruby-lint/analysis/{shadowing_variables.rb → shadowing_variables_spec.rb} +6 -6
- data/spec/ruby-lint/analysis/undefined_methods_spec.rb +320 -0
- data/spec/ruby-lint/analysis/{undefined_variables.rb → undefined_variables_spec.rb} +33 -10
- data/spec/ruby-lint/analysis/{unused_variables.rb → unused_variables_spec.rb} +36 -9
- data/spec/ruby-lint/ast/{node.rb → node_spec.rb} +12 -6
- data/spec/ruby-lint/cli/{analyze.rb → analyze_spec.rb} +16 -5
- data/spec/ruby-lint/cli/{ast.rb → ast_spec.rb} +3 -3
- data/spec/ruby-lint/configuration_spec.rb +106 -0
- data/spec/ruby-lint/definition/constant_proxy_spec.rb +54 -0
- data/spec/ruby-lint/definition/{dsl.rb → dsl_spec.rb} +15 -15
- data/spec/ruby-lint/definition/{ruby_method.rb → ruby_method_spec.rb} +31 -17
- data/spec/ruby-lint/definition/{ruby_object.rb → ruby_object_spec.rb} +28 -23
- data/spec/ruby-lint/definition_builder/{primitive.rb → primitive_spec.rb} +9 -9
- data/spec/ruby-lint/definition_builder/{ruby_class.rb → ruby_class_spec.rb} +13 -13
- data/spec/ruby-lint/definition_builder/{ruby_method.rb → ruby_method_spec.rb} +9 -9
- data/spec/ruby-lint/definition_builder/{ruby_module.rb → ruby_module_spec.rb} +12 -10
- data/spec/ruby-lint/docstring/mapping.rb +27 -0
- data/spec/ruby-lint/docstring/parser_spec.rb +88 -0
- data/spec/ruby-lint/extensions/{string.rb → string_spec.rb} +3 -3
- data/spec/ruby-lint/file_loader_spec.rb +69 -0
- data/spec/ruby-lint/file_scanner_spec.rb +51 -0
- data/spec/ruby-lint/inspector_spec.rb +44 -0
- data/spec/ruby-lint/{iterator.rb → iterator_spec.rb} +39 -4
- data/spec/ruby-lint/{nested_stack.rb → nested_stack_spec.rb} +4 -4
- data/spec/ruby-lint/parser_spec.rb +31 -0
- data/spec/ruby-lint/presenter/json_spec.rb +58 -0
- data/spec/ruby-lint/presenter/text_spec.rb +49 -0
- data/spec/ruby-lint/report/entry_spec.rb +58 -0
- data/spec/ruby-lint/report_spec.rb +39 -0
- data/spec/ruby-lint/runner_spec.rb +52 -0
- data/spec/ruby-lint/virtual_machine/alias_spec.rb +55 -0
- data/spec/ruby-lint/virtual_machine/assignments/{arrays.rb → arrays_spec.rb} +7 -7
- data/spec/ruby-lint/virtual_machine/assignments/{hashes.rb → hashes_spec.rb} +6 -6
- data/spec/ruby-lint/virtual_machine/assignments/{optional.rb → optional_spec.rb} +6 -6
- data/spec/ruby-lint/virtual_machine/assignments/{return_values.rb → return_values_spec.rb} +11 -11
- data/spec/ruby-lint/virtual_machine/assignments/{variables.rb → variables_spec.rb} +38 -7
- data/spec/ruby-lint/virtual_machine/associate_nodes_spec.rb +59 -0
- data/spec/ruby-lint/virtual_machine/{autoloading.rb → autoloading_spec.rb} +6 -6
- data/spec/ruby-lint/virtual_machine/{blocks.rb → blocks_spec.rb} +30 -4
- data/spec/ruby-lint/virtual_machine/classes/{class_methods.rb → class_methods_spec.rb} +3 -3
- data/spec/ruby-lint/virtual_machine/classes/{extending.rb → extending_spec.rb} +20 -15
- data/spec/ruby-lint/virtual_machine/classes/{redefining.rb → redefining_spec.rb} +3 -3
- data/spec/ruby-lint/virtual_machine/classes/{sclass.rb → sclass_spec.rb} +7 -7
- data/spec/ruby-lint/virtual_machine/classes/{scoping.rb → scoping_spec.rb} +5 -5
- data/spec/ruby-lint/virtual_machine/complex/{rails.rb → rails_spec.rb} +3 -3
- data/spec/ruby-lint/virtual_machine/complex/{rcap.rb → rcap_spec.rb} +3 -3
- data/spec/ruby-lint/virtual_machine/complex/{slop.rb → slop_spec.rb} +3 -3
- data/spec/ruby-lint/virtual_machine/constants_spec.rb +31 -0
- data/spec/ruby-lint/virtual_machine/{for.rb → for_spec.rb} +3 -3
- data/spec/ruby-lint/virtual_machine/{freeze.rb → freeze_spec.rb} +3 -3
- data/spec/ruby-lint/virtual_machine/global_variables_spec.rb +12 -0
- data/spec/ruby-lint/virtual_machine/inherit_kernel_spec.rb +15 -0
- data/spec/ruby-lint/virtual_machine/{interpolation.rb → interpolation_spec.rb} +3 -3
- data/spec/ruby-lint/virtual_machine/methods/attr_spec.rb +116 -0
- data/spec/ruby-lint/virtual_machine/methods/define_method_spec.rb +41 -0
- data/spec/ruby-lint/virtual_machine/methods/{defining.rb → defining_spec.rb} +4 -4
- data/spec/ruby-lint/virtual_machine/methods/docstrings_spec.rb +69 -0
- data/spec/ruby-lint/virtual_machine/methods/{exporting.rb → exporting_spec.rb} +3 -3
- data/spec/ruby-lint/virtual_machine/methods/{parameters.rb → parameters_spec.rb} +17 -5
- data/spec/ruby-lint/virtual_machine/methods/{patching.rb → patching_spec.rb} +4 -4
- data/spec/ruby-lint/virtual_machine/methods/{scoping.rb → scoping_spec.rb} +5 -5
- data/spec/ruby-lint/virtual_machine/methods/{visibility.rb → visibility_spec.rb} +6 -6
- data/spec/ruby-lint/virtual_machine/{modules.rb → modules_spec.rb} +39 -9
- data/spec/ruby-lint/virtual_machine/reference_amount_spec.rb +61 -0
- data/spec/ruby-lint/virtual_machine/{unused.rb → unused_spec.rb} +4 -4
- data/spec/{helper.rb → spec_helper.rb} +6 -4
- data/spec/support/building.rb +10 -6
- data/spec/support/coveralls.rb +1 -1
- data/spec/support/parsing.rb +10 -1
- data/spec/support/simplecov.rb +1 -1
- data/spec/support/versions.rb +9 -0
- data/task/test.rake +2 -4
- data/task/travis.rake +1 -0
- metadata +144 -143
- metadata.gz.asc +14 -14
- data/.rubocop.yml +0 -59
- data/doc/contributing.md +0 -16
- data/lib/ruby-lint/analysis/confusing_variables.rb +0 -26
- data/lib/ruby-lint/definitions/core/main.rb +0 -25
- data/lib/ruby-lint/definitions/core/psych.rb +0 -2231
- data/lib/ruby-lint/definitions/core/rubinius.rb +0 -16637
- data/lib/ruby-lint/definitions/core/ruby_lint.rb +0 -93
- data/spec/ruby-lint/analysis/confusing_variables.rb +0 -46
- data/spec/ruby-lint/analysis/undefined_methods.rb +0 -174
- data/spec/ruby-lint/configuration.rb +0 -54
- data/spec/ruby-lint/definition/constant_proxy.rb +0 -31
- data/spec/ruby-lint/parser.rb +0 -14
- data/spec/ruby-lint/presenter/json.rb +0 -31
- data/spec/ruby-lint/presenter/text.rb +0 -22
- data/spec/ruby-lint/report.rb +0 -50
- data/spec/ruby-lint/report/entry.rb +0 -28
- data/spec/ruby-lint/runner.rb +0 -32
- data/spec/ruby-lint/virtual_machine/associate_nodes.rb +0 -17
- data/spec/ruby-lint/virtual_machine/reference_amount.rb +0 -33
- data/spec/support/bacon.rb +0 -33
- data/task/cop.rake +0 -11
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4
4
|
# Platform: rbx 2.0.0.rc1
|
|
5
5
|
#
|
|
6
|
-
RubyLint::
|
|
6
|
+
RubyLint::GlobalScope.definitions.define_constant('Precision') do |klass|
|
|
7
7
|
|
|
8
8
|
klass.define_method('__module_init__')
|
|
9
9
|
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4
4
|
# Platform: rbx 2.0.0.rc1
|
|
5
5
|
#
|
|
6
|
-
RubyLint::
|
|
7
|
-
klass.inherits(RubyLint::
|
|
6
|
+
RubyLint::GlobalScope.definitions.define_constant('PrimitiveFailure') do |klass|
|
|
7
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Exception'))
|
|
8
8
|
end
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4
4
|
# Platform: rbx 2.0.0.rc1
|
|
5
5
|
#
|
|
6
|
-
RubyLint::
|
|
7
|
-
klass.inherits(RubyLint::
|
|
6
|
+
RubyLint::GlobalScope.definitions.define_constant('Proc') do |klass|
|
|
7
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
8
8
|
|
|
9
9
|
klass.define_method('__allocate__')
|
|
10
10
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4
4
|
# Platform: rbx 2.0.0.rc1
|
|
5
5
|
#
|
|
6
|
-
RubyLint::
|
|
6
|
+
RubyLint::GlobalScope.definitions.define_constant('Process') do |klass|
|
|
7
7
|
|
|
8
8
|
klass.define_method('__module_init__')
|
|
9
9
|
|
|
@@ -178,7 +178,7 @@ end
|
|
|
178
178
|
# Created: 2013-04-01 18:33:54 +0200
|
|
179
179
|
# Platform: rbx 2.0.0.rc1
|
|
180
180
|
#
|
|
181
|
-
RubyLint::
|
|
181
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::Constants') do |klass|
|
|
182
182
|
|
|
183
183
|
klass.define_method('__module_init__')
|
|
184
184
|
end
|
|
@@ -188,7 +188,7 @@ end
|
|
|
188
188
|
# Created: 2013-04-01 18:33:54 +0200
|
|
189
189
|
# Platform: rbx 2.0.0.rc1
|
|
190
190
|
#
|
|
191
|
-
RubyLint::
|
|
191
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::FFI') do |klass|
|
|
192
192
|
|
|
193
193
|
klass.define_method('__module_init__')
|
|
194
194
|
|
|
@@ -239,7 +239,7 @@ end
|
|
|
239
239
|
# Created: 2013-04-01 18:33:54 +0200
|
|
240
240
|
# Platform: rbx 2.0.0.rc1
|
|
241
241
|
#
|
|
242
|
-
RubyLint::
|
|
242
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::GID') do |klass|
|
|
243
243
|
|
|
244
244
|
klass.define_method('__module_init__')
|
|
245
245
|
|
|
@@ -273,7 +273,7 @@ end
|
|
|
273
273
|
# Created: 2013-04-01 18:33:54 +0200
|
|
274
274
|
# Platform: rbx 2.0.0.rc1
|
|
275
275
|
#
|
|
276
|
-
RubyLint::
|
|
276
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::RLIMIT_AS') do |klass|
|
|
277
277
|
end
|
|
278
278
|
|
|
279
279
|
##
|
|
@@ -281,7 +281,7 @@ end
|
|
|
281
281
|
# Created: 2013-04-01 18:33:54 +0200
|
|
282
282
|
# Platform: rbx 2.0.0.rc1
|
|
283
283
|
#
|
|
284
|
-
RubyLint::
|
|
284
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::RLIMIT_CORE') do |klass|
|
|
285
285
|
end
|
|
286
286
|
|
|
287
287
|
##
|
|
@@ -289,7 +289,7 @@ end
|
|
|
289
289
|
# Created: 2013-04-01 18:33:54 +0200
|
|
290
290
|
# Platform: rbx 2.0.0.rc1
|
|
291
291
|
#
|
|
292
|
-
RubyLint::
|
|
292
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::RLIMIT_MEMLOCK') do |klass|
|
|
293
293
|
end
|
|
294
294
|
|
|
295
295
|
##
|
|
@@ -297,7 +297,7 @@ end
|
|
|
297
297
|
# Created: 2013-04-01 18:33:54 +0200
|
|
298
298
|
# Platform: rbx 2.0.0.rc1
|
|
299
299
|
#
|
|
300
|
-
RubyLint::
|
|
300
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::RLIMIT_MSGQUEUE') do |klass|
|
|
301
301
|
end
|
|
302
302
|
|
|
303
303
|
##
|
|
@@ -305,7 +305,7 @@ end
|
|
|
305
305
|
# Created: 2013-04-01 18:33:54 +0200
|
|
306
306
|
# Platform: rbx 2.0.0.rc1
|
|
307
307
|
#
|
|
308
|
-
RubyLint::
|
|
308
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::RLIMIT_NICE') do |klass|
|
|
309
309
|
end
|
|
310
310
|
|
|
311
311
|
##
|
|
@@ -313,7 +313,7 @@ end
|
|
|
313
313
|
# Created: 2013-04-01 18:33:54 +0200
|
|
314
314
|
# Platform: rbx 2.0.0.rc1
|
|
315
315
|
#
|
|
316
|
-
RubyLint::
|
|
316
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::RLIMIT_NOFILE') do |klass|
|
|
317
317
|
end
|
|
318
318
|
|
|
319
319
|
##
|
|
@@ -321,7 +321,7 @@ end
|
|
|
321
321
|
# Created: 2013-04-01 18:33:54 +0200
|
|
322
322
|
# Platform: rbx 2.0.0.rc1
|
|
323
323
|
#
|
|
324
|
-
RubyLint::
|
|
324
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::RLIMIT_NPROC') do |klass|
|
|
325
325
|
end
|
|
326
326
|
|
|
327
327
|
##
|
|
@@ -329,7 +329,7 @@ end
|
|
|
329
329
|
# Created: 2013-04-01 18:33:54 +0200
|
|
330
330
|
# Platform: rbx 2.0.0.rc1
|
|
331
331
|
#
|
|
332
|
-
RubyLint::
|
|
332
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::RLIMIT_RSS') do |klass|
|
|
333
333
|
end
|
|
334
334
|
|
|
335
335
|
##
|
|
@@ -337,7 +337,7 @@ end
|
|
|
337
337
|
# Created: 2013-04-01 18:33:54 +0200
|
|
338
338
|
# Platform: rbx 2.0.0.rc1
|
|
339
339
|
#
|
|
340
|
-
RubyLint::
|
|
340
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::RLIMIT_RTPRIO') do |klass|
|
|
341
341
|
end
|
|
342
342
|
|
|
343
343
|
##
|
|
@@ -345,7 +345,7 @@ end
|
|
|
345
345
|
# Created: 2013-04-01 18:33:54 +0200
|
|
346
346
|
# Platform: rbx 2.0.0.rc1
|
|
347
347
|
#
|
|
348
|
-
RubyLint::
|
|
348
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::RLIMIT_RTTIME') do |klass|
|
|
349
349
|
end
|
|
350
350
|
|
|
351
351
|
##
|
|
@@ -353,7 +353,7 @@ end
|
|
|
353
353
|
# Created: 2013-04-01 18:33:54 +0200
|
|
354
354
|
# Platform: rbx 2.0.0.rc1
|
|
355
355
|
#
|
|
356
|
-
RubyLint::
|
|
356
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::RLIMIT_SIGPENDING') do |klass|
|
|
357
357
|
end
|
|
358
358
|
|
|
359
359
|
##
|
|
@@ -361,7 +361,7 @@ end
|
|
|
361
361
|
# Created: 2013-04-01 18:33:54 +0200
|
|
362
362
|
# Platform: rbx 2.0.0.rc1
|
|
363
363
|
#
|
|
364
|
-
RubyLint::
|
|
364
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::RLIMIT_STACK') do |klass|
|
|
365
365
|
end
|
|
366
366
|
|
|
367
367
|
##
|
|
@@ -369,7 +369,7 @@ end
|
|
|
369
369
|
# Created: 2013-04-01 18:33:54 +0200
|
|
370
370
|
# Platform: rbx 2.0.0.rc1
|
|
371
371
|
#
|
|
372
|
-
RubyLint::
|
|
372
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::RLIM_INFINITY') do |klass|
|
|
373
373
|
end
|
|
374
374
|
|
|
375
375
|
##
|
|
@@ -377,8 +377,8 @@ end
|
|
|
377
377
|
# Created: 2013-04-01 18:33:54 +0200
|
|
378
378
|
# Platform: rbx 2.0.0.rc1
|
|
379
379
|
#
|
|
380
|
-
RubyLint::
|
|
381
|
-
klass.inherits(RubyLint::
|
|
380
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::Rlimit') do |klass|
|
|
381
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Rubinius::FFI::Struct'))
|
|
382
382
|
|
|
383
383
|
klass.define_method('__class_init__')
|
|
384
384
|
end
|
|
@@ -388,8 +388,8 @@ end
|
|
|
388
388
|
# Created: 2013-04-01 18:33:54 +0200
|
|
389
389
|
# Platform: rbx 2.0.0.rc1
|
|
390
390
|
#
|
|
391
|
-
RubyLint::
|
|
392
|
-
klass.inherits(RubyLint::
|
|
391
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::Rlimit::InlineArray') do |klass|
|
|
392
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
393
393
|
|
|
394
394
|
klass.define_method('__class_init__')
|
|
395
395
|
|
|
@@ -421,8 +421,8 @@ end
|
|
|
421
421
|
# Created: 2013-04-01 18:33:54 +0200
|
|
422
422
|
# Platform: rbx 2.0.0.rc1
|
|
423
423
|
#
|
|
424
|
-
RubyLint::
|
|
425
|
-
klass.inherits(RubyLint::
|
|
424
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::Rlimit::InlineCharArray') do |klass|
|
|
425
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Rubinius::FFI::Struct::InlineArray'))
|
|
426
426
|
|
|
427
427
|
klass.define_method('__class_init__')
|
|
428
428
|
|
|
@@ -438,8 +438,8 @@ end
|
|
|
438
438
|
# Created: 2013-04-01 18:33:54 +0200
|
|
439
439
|
# Platform: rbx 2.0.0.rc1
|
|
440
440
|
#
|
|
441
|
-
RubyLint::
|
|
442
|
-
klass.inherits(RubyLint::
|
|
441
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::Status') do |klass|
|
|
442
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
443
443
|
|
|
444
444
|
klass.define_method('__class_init__')
|
|
445
445
|
|
|
@@ -490,7 +490,7 @@ end
|
|
|
490
490
|
# Created: 2013-04-01 18:33:54 +0200
|
|
491
491
|
# Platform: rbx 2.0.0.rc1
|
|
492
492
|
#
|
|
493
|
-
RubyLint::
|
|
493
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::Sys') do |klass|
|
|
494
494
|
|
|
495
495
|
klass.define_method('__module_init__')
|
|
496
496
|
|
|
@@ -556,7 +556,7 @@ end
|
|
|
556
556
|
# Created: 2013-04-01 18:33:54 +0200
|
|
557
557
|
# Platform: rbx 2.0.0.rc1
|
|
558
558
|
#
|
|
559
|
-
RubyLint::
|
|
559
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::UID') do |klass|
|
|
560
560
|
|
|
561
561
|
klass.define_method('__module_init__')
|
|
562
562
|
|
|
@@ -590,7 +590,7 @@ end
|
|
|
590
590
|
# Created: 2013-04-01 18:33:54 +0200
|
|
591
591
|
# Platform: rbx 2.0.0.rc1
|
|
592
592
|
#
|
|
593
|
-
RubyLint::
|
|
593
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::WNOHANG') do |klass|
|
|
594
594
|
end
|
|
595
595
|
|
|
596
596
|
##
|
|
@@ -598,5 +598,5 @@ end
|
|
|
598
598
|
# Created: 2013-04-01 18:33:54 +0200
|
|
599
599
|
# Platform: rbx 2.0.0.rc1
|
|
600
600
|
#
|
|
601
|
-
RubyLint::
|
|
601
|
+
RubyLint::GlobalScope.definitions.define_constant('Process::WUNTRACED') do |klass|
|
|
602
602
|
end
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4
4
|
# Platform: rbx 2.0.0.rc1
|
|
5
5
|
#
|
|
6
|
-
RubyLint::
|
|
7
|
-
klass.inherits(RubyLint::
|
|
6
|
+
RubyLint::GlobalScope.definitions.define_constant('Queue') do |klass|
|
|
7
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
8
8
|
|
|
9
9
|
klass.define_method('__class_init__')
|
|
10
10
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4
4
|
# Platform: rbx 2.0.0.rc1
|
|
5
5
|
#
|
|
6
|
-
RubyLint::
|
|
6
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake') do |klass|
|
|
7
7
|
|
|
8
8
|
klass.define_method('__module_init__')
|
|
9
9
|
|
|
@@ -29,7 +29,7 @@ end
|
|
|
29
29
|
# Created: 2013-04-01 18:33:54 +0200
|
|
30
30
|
# Platform: rbx 2.0.0.rc1
|
|
31
31
|
#
|
|
32
|
-
RubyLint::
|
|
32
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::AltSystem') do |klass|
|
|
33
33
|
|
|
34
34
|
klass.define_method('__module_init__')
|
|
35
35
|
|
|
@@ -50,8 +50,8 @@ end
|
|
|
50
50
|
# Created: 2013-04-01 18:33:54 +0200
|
|
51
51
|
# Platform: rbx 2.0.0.rc1
|
|
52
52
|
#
|
|
53
|
-
RubyLint::
|
|
54
|
-
klass.inherits(RubyLint::
|
|
53
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::Application') do |klass|
|
|
54
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
55
55
|
|
|
56
56
|
klass.define_method('__class_init__')
|
|
57
57
|
|
|
@@ -177,7 +177,7 @@ end
|
|
|
177
177
|
# Created: 2013-04-01 18:33:54 +0200
|
|
178
178
|
# Platform: rbx 2.0.0.rc1
|
|
179
179
|
#
|
|
180
|
-
RubyLint::
|
|
180
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::Application::DEFAULT_RAKEFILES') do |klass|
|
|
181
181
|
end
|
|
182
182
|
|
|
183
183
|
##
|
|
@@ -185,7 +185,7 @@ end
|
|
|
185
185
|
# Created: 2013-04-01 18:33:54 +0200
|
|
186
186
|
# Platform: rbx 2.0.0.rc1
|
|
187
187
|
#
|
|
188
|
-
RubyLint::
|
|
188
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::Cloneable') do |klass|
|
|
189
189
|
|
|
190
190
|
klass.define_method('__module_init__')
|
|
191
191
|
|
|
@@ -199,7 +199,7 @@ end
|
|
|
199
199
|
# Created: 2013-04-01 18:33:54 +0200
|
|
200
200
|
# Platform: rbx 2.0.0.rc1
|
|
201
201
|
#
|
|
202
|
-
RubyLint::
|
|
202
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::DSL') do |klass|
|
|
203
203
|
|
|
204
204
|
klass.define_method('__module_init__')
|
|
205
205
|
end
|
|
@@ -209,7 +209,7 @@ end
|
|
|
209
209
|
# Created: 2013-04-01 18:33:54 +0200
|
|
210
210
|
# Platform: rbx 2.0.0.rc1
|
|
211
211
|
#
|
|
212
|
-
RubyLint::
|
|
212
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::DSL::DEFAULT') do |klass|
|
|
213
213
|
end
|
|
214
214
|
|
|
215
215
|
##
|
|
@@ -217,7 +217,7 @@ end
|
|
|
217
217
|
# Created: 2013-04-01 18:33:54 +0200
|
|
218
218
|
# Platform: rbx 2.0.0.rc1
|
|
219
219
|
#
|
|
220
|
-
RubyLint::
|
|
220
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::DSL::DryRun') do |klass|
|
|
221
221
|
|
|
222
222
|
klass.define_method('__module_init__')
|
|
223
223
|
|
|
@@ -403,8 +403,8 @@ end
|
|
|
403
403
|
# Created: 2013-04-01 18:33:54 +0200
|
|
404
404
|
# Platform: rbx 2.0.0.rc1
|
|
405
405
|
#
|
|
406
|
-
RubyLint::
|
|
407
|
-
klass.inherits(RubyLint::
|
|
406
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::DSL::Entry_') do |klass|
|
|
407
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
408
408
|
|
|
409
409
|
klass.define_method('__class_init__')
|
|
410
410
|
|
|
@@ -487,7 +487,7 @@ end
|
|
|
487
487
|
# Created: 2013-04-01 18:33:54 +0200
|
|
488
488
|
# Platform: rbx 2.0.0.rc1
|
|
489
489
|
#
|
|
490
|
-
RubyLint::
|
|
490
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::DSL::LN_SUPPORTED') do |klass|
|
|
491
491
|
end
|
|
492
492
|
|
|
493
493
|
##
|
|
@@ -495,7 +495,7 @@ end
|
|
|
495
495
|
# Created: 2013-04-01 18:33:54 +0200
|
|
496
496
|
# Platform: rbx 2.0.0.rc1
|
|
497
497
|
#
|
|
498
|
-
RubyLint::
|
|
498
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::DSL::LOW_METHODS') do |klass|
|
|
499
499
|
end
|
|
500
500
|
|
|
501
501
|
##
|
|
@@ -503,7 +503,7 @@ end
|
|
|
503
503
|
# Created: 2013-04-01 18:33:54 +0200
|
|
504
504
|
# Platform: rbx 2.0.0.rc1
|
|
505
505
|
#
|
|
506
|
-
RubyLint::
|
|
506
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::DSL::LowMethods') do |klass|
|
|
507
507
|
|
|
508
508
|
klass.define_method('__module_init__')
|
|
509
509
|
end
|
|
@@ -513,7 +513,7 @@ end
|
|
|
513
513
|
# Created: 2013-04-01 18:33:54 +0200
|
|
514
514
|
# Platform: rbx 2.0.0.rc1
|
|
515
515
|
#
|
|
516
|
-
RubyLint::
|
|
516
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::DSL::METHODS') do |klass|
|
|
517
517
|
end
|
|
518
518
|
|
|
519
519
|
##
|
|
@@ -521,7 +521,7 @@ end
|
|
|
521
521
|
# Created: 2013-04-01 18:33:54 +0200
|
|
522
522
|
# Platform: rbx 2.0.0.rc1
|
|
523
523
|
#
|
|
524
|
-
RubyLint::
|
|
524
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::DSL::NoWrite') do |klass|
|
|
525
525
|
|
|
526
526
|
klass.define_method('__module_init__')
|
|
527
527
|
|
|
@@ -707,7 +707,7 @@ end
|
|
|
707
707
|
# Created: 2013-04-01 18:33:54 +0200
|
|
708
708
|
# Platform: rbx 2.0.0.rc1
|
|
709
709
|
#
|
|
710
|
-
RubyLint::
|
|
710
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::DSL::OPT_TABLE') do |klass|
|
|
711
711
|
end
|
|
712
712
|
|
|
713
713
|
##
|
|
@@ -715,7 +715,7 @@ end
|
|
|
715
715
|
# Created: 2013-04-01 18:33:54 +0200
|
|
716
716
|
# Platform: rbx 2.0.0.rc1
|
|
717
717
|
#
|
|
718
|
-
RubyLint::
|
|
718
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::DSL::RUBY') do |klass|
|
|
719
719
|
end
|
|
720
720
|
|
|
721
721
|
##
|
|
@@ -723,7 +723,7 @@ end
|
|
|
723
723
|
# Created: 2013-04-01 18:33:54 +0200
|
|
724
724
|
# Platform: rbx 2.0.0.rc1
|
|
725
725
|
#
|
|
726
|
-
RubyLint::
|
|
726
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::DSL::StreamUtils_') do |klass|
|
|
727
727
|
|
|
728
728
|
klass.define_method('__module_init__')
|
|
729
729
|
end
|
|
@@ -733,7 +733,7 @@ end
|
|
|
733
733
|
# Created: 2013-04-01 18:33:54 +0200
|
|
734
734
|
# Platform: rbx 2.0.0.rc1
|
|
735
735
|
#
|
|
736
|
-
RubyLint::
|
|
736
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::DSL::Verbose') do |klass|
|
|
737
737
|
|
|
738
738
|
klass.define_method('__module_init__')
|
|
739
739
|
|
|
@@ -933,8 +933,8 @@ end
|
|
|
933
933
|
# Created: 2013-04-01 18:33:54 +0200
|
|
934
934
|
# Platform: rbx 2.0.0.rc1
|
|
935
935
|
#
|
|
936
|
-
RubyLint::
|
|
937
|
-
klass.inherits(RubyLint::
|
|
936
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::DefaultLoader') do |klass|
|
|
937
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
938
938
|
|
|
939
939
|
klass.define_method('__class_init__')
|
|
940
940
|
|
|
@@ -948,7 +948,7 @@ end
|
|
|
948
948
|
# Created: 2013-04-01 18:33:54 +0200
|
|
949
949
|
# Platform: rbx 2.0.0.rc1
|
|
950
950
|
#
|
|
951
|
-
RubyLint::
|
|
951
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::DeprecatedCommands') do |klass|
|
|
952
952
|
end
|
|
953
953
|
|
|
954
954
|
##
|
|
@@ -956,7 +956,7 @@ end
|
|
|
956
956
|
# Created: 2013-04-01 18:33:54 +0200
|
|
957
957
|
# Platform: rbx 2.0.0.rc1
|
|
958
958
|
#
|
|
959
|
-
RubyLint::
|
|
959
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::DeprecatedObjectDSL') do |klass|
|
|
960
960
|
|
|
961
961
|
klass.define_method('__module_init__')
|
|
962
962
|
end
|
|
@@ -966,7 +966,7 @@ end
|
|
|
966
966
|
# Created: 2013-04-01 18:33:54 +0200
|
|
967
967
|
# Platform: rbx 2.0.0.rc1
|
|
968
968
|
#
|
|
969
|
-
RubyLint::
|
|
969
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::EARLY') do |klass|
|
|
970
970
|
end
|
|
971
971
|
|
|
972
972
|
##
|
|
@@ -974,7 +974,7 @@ end
|
|
|
974
974
|
# Created: 2013-04-01 18:33:54 +0200
|
|
975
975
|
# Platform: rbx 2.0.0.rc1
|
|
976
976
|
#
|
|
977
|
-
RubyLint::
|
|
977
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::EMPTY_TASK_ARGS') do |klass|
|
|
978
978
|
end
|
|
979
979
|
|
|
980
980
|
##
|
|
@@ -982,8 +982,8 @@ end
|
|
|
982
982
|
# Created: 2013-04-01 18:33:54 +0200
|
|
983
983
|
# Platform: rbx 2.0.0.rc1
|
|
984
984
|
#
|
|
985
|
-
RubyLint::
|
|
986
|
-
klass.inherits(RubyLint::
|
|
985
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::EarlyTime') do |klass|
|
|
986
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
987
987
|
|
|
988
988
|
klass.define_method('__class_init__')
|
|
989
989
|
|
|
@@ -1001,7 +1001,7 @@ end
|
|
|
1001
1001
|
# Created: 2013-04-01 18:33:54 +0200
|
|
1002
1002
|
# Platform: rbx 2.0.0.rc1
|
|
1003
1003
|
#
|
|
1004
|
-
RubyLint::
|
|
1004
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::EarlyTime::SingletonClassMethods') do |klass|
|
|
1005
1005
|
|
|
1006
1006
|
klass.define_method('__module_init__')
|
|
1007
1007
|
|
|
@@ -1017,8 +1017,8 @@ end
|
|
|
1017
1017
|
# Created: 2013-04-01 18:33:54 +0200
|
|
1018
1018
|
# Platform: rbx 2.0.0.rc1
|
|
1019
1019
|
#
|
|
1020
|
-
RubyLint::
|
|
1021
|
-
klass.inherits(RubyLint::
|
|
1020
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileCreationTask') do |klass|
|
|
1021
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Rake::FileTask'))
|
|
1022
1022
|
|
|
1023
1023
|
klass.define_method('__class_init__')
|
|
1024
1024
|
|
|
@@ -1032,8 +1032,8 @@ end
|
|
|
1032
1032
|
# Created: 2013-04-01 18:33:54 +0200
|
|
1033
1033
|
# Platform: rbx 2.0.0.rc1
|
|
1034
1034
|
#
|
|
1035
|
-
RubyLint::
|
|
1036
|
-
klass.inherits(RubyLint::
|
|
1035
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileList') do |klass|
|
|
1036
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
1037
1037
|
|
|
1038
1038
|
klass.define_method('[]') do |method|
|
|
1039
1039
|
method.define_rest_argument('args')
|
|
@@ -1760,7 +1760,7 @@ end
|
|
|
1760
1760
|
# Created: 2013-04-01 18:33:54 +0200
|
|
1761
1761
|
# Platform: rbx 2.0.0.rc1
|
|
1762
1762
|
#
|
|
1763
|
-
RubyLint::
|
|
1763
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileList::ARRAY_METHODS') do |klass|
|
|
1764
1764
|
end
|
|
1765
1765
|
|
|
1766
1766
|
##
|
|
@@ -1768,7 +1768,7 @@ end
|
|
|
1768
1768
|
# Created: 2013-04-01 18:33:54 +0200
|
|
1769
1769
|
# Platform: rbx 2.0.0.rc1
|
|
1770
1770
|
#
|
|
1771
|
-
RubyLint::
|
|
1771
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileList::DEFAULT_IGNORE_PATTERNS') do |klass|
|
|
1772
1772
|
end
|
|
1773
1773
|
|
|
1774
1774
|
##
|
|
@@ -1776,7 +1776,7 @@ end
|
|
|
1776
1776
|
# Created: 2013-04-01 18:33:54 +0200
|
|
1777
1777
|
# Platform: rbx 2.0.0.rc1
|
|
1778
1778
|
#
|
|
1779
|
-
RubyLint::
|
|
1779
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileList::DEFAULT_IGNORE_PROCS') do |klass|
|
|
1780
1780
|
end
|
|
1781
1781
|
|
|
1782
1782
|
##
|
|
@@ -1784,7 +1784,7 @@ end
|
|
|
1784
1784
|
# Created: 2013-04-01 18:33:54 +0200
|
|
1785
1785
|
# Platform: rbx 2.0.0.rc1
|
|
1786
1786
|
#
|
|
1787
|
-
RubyLint::
|
|
1787
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileList::DELEGATING_METHODS') do |klass|
|
|
1788
1788
|
end
|
|
1789
1789
|
|
|
1790
1790
|
##
|
|
@@ -1792,7 +1792,7 @@ end
|
|
|
1792
1792
|
# Created: 2013-04-01 18:33:54 +0200
|
|
1793
1793
|
# Platform: rbx 2.0.0.rc1
|
|
1794
1794
|
#
|
|
1795
|
-
RubyLint::
|
|
1795
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileList::MUST_DEFINE') do |klass|
|
|
1796
1796
|
end
|
|
1797
1797
|
|
|
1798
1798
|
##
|
|
@@ -1800,7 +1800,7 @@ end
|
|
|
1800
1800
|
# Created: 2013-04-01 18:33:54 +0200
|
|
1801
1801
|
# Platform: rbx 2.0.0.rc1
|
|
1802
1802
|
#
|
|
1803
|
-
RubyLint::
|
|
1803
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileList::MUST_NOT_DEFINE') do |klass|
|
|
1804
1804
|
end
|
|
1805
1805
|
|
|
1806
1806
|
##
|
|
@@ -1808,7 +1808,7 @@ end
|
|
|
1808
1808
|
# Created: 2013-04-01 18:33:54 +0200
|
|
1809
1809
|
# Platform: rbx 2.0.0.rc1
|
|
1810
1810
|
#
|
|
1811
|
-
RubyLint::
|
|
1811
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileList::SPECIAL_RETURN') do |klass|
|
|
1812
1812
|
end
|
|
1813
1813
|
|
|
1814
1814
|
##
|
|
@@ -1816,8 +1816,8 @@ end
|
|
|
1816
1816
|
# Created: 2013-04-01 18:33:54 +0200
|
|
1817
1817
|
# Platform: rbx 2.0.0.rc1
|
|
1818
1818
|
#
|
|
1819
|
-
RubyLint::
|
|
1820
|
-
klass.inherits(RubyLint::
|
|
1819
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileTask') do |klass|
|
|
1820
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Rake::Task'))
|
|
1821
1821
|
|
|
1822
1822
|
klass.define_method('__class_init__')
|
|
1823
1823
|
|
|
@@ -1836,7 +1836,7 @@ end
|
|
|
1836
1836
|
# Created: 2013-04-01 18:33:54 +0200
|
|
1837
1837
|
# Platform: rbx 2.0.0.rc1
|
|
1838
1838
|
#
|
|
1839
|
-
RubyLint::
|
|
1839
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileUtilsExt') do |klass|
|
|
1840
1840
|
|
|
1841
1841
|
klass.define_method('__module_init__')
|
|
1842
1842
|
|
|
@@ -2040,7 +2040,7 @@ end
|
|
|
2040
2040
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2041
2041
|
# Platform: rbx 2.0.0.rc1
|
|
2042
2042
|
#
|
|
2043
|
-
RubyLint::
|
|
2043
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileUtilsExt::DEFAULT') do |klass|
|
|
2044
2044
|
end
|
|
2045
2045
|
|
|
2046
2046
|
##
|
|
@@ -2048,7 +2048,7 @@ end
|
|
|
2048
2048
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2049
2049
|
# Platform: rbx 2.0.0.rc1
|
|
2050
2050
|
#
|
|
2051
|
-
RubyLint::
|
|
2051
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileUtilsExt::DryRun') do |klass|
|
|
2052
2052
|
|
|
2053
2053
|
klass.define_method('__module_init__')
|
|
2054
2054
|
|
|
@@ -2234,8 +2234,8 @@ end
|
|
|
2234
2234
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2235
2235
|
# Platform: rbx 2.0.0.rc1
|
|
2236
2236
|
#
|
|
2237
|
-
RubyLint::
|
|
2238
|
-
klass.inherits(RubyLint::
|
|
2237
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileUtilsExt::Entry_') do |klass|
|
|
2238
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
2239
2239
|
|
|
2240
2240
|
klass.define_method('__class_init__')
|
|
2241
2241
|
|
|
@@ -2318,7 +2318,7 @@ end
|
|
|
2318
2318
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2319
2319
|
# Platform: rbx 2.0.0.rc1
|
|
2320
2320
|
#
|
|
2321
|
-
RubyLint::
|
|
2321
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileUtilsExt::LN_SUPPORTED') do |klass|
|
|
2322
2322
|
end
|
|
2323
2323
|
|
|
2324
2324
|
##
|
|
@@ -2326,7 +2326,7 @@ end
|
|
|
2326
2326
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2327
2327
|
# Platform: rbx 2.0.0.rc1
|
|
2328
2328
|
#
|
|
2329
|
-
RubyLint::
|
|
2329
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileUtilsExt::LOW_METHODS') do |klass|
|
|
2330
2330
|
end
|
|
2331
2331
|
|
|
2332
2332
|
##
|
|
@@ -2334,7 +2334,7 @@ end
|
|
|
2334
2334
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2335
2335
|
# Platform: rbx 2.0.0.rc1
|
|
2336
2336
|
#
|
|
2337
|
-
RubyLint::
|
|
2337
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileUtilsExt::LowMethods') do |klass|
|
|
2338
2338
|
|
|
2339
2339
|
klass.define_method('__module_init__')
|
|
2340
2340
|
end
|
|
@@ -2344,7 +2344,7 @@ end
|
|
|
2344
2344
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2345
2345
|
# Platform: rbx 2.0.0.rc1
|
|
2346
2346
|
#
|
|
2347
|
-
RubyLint::
|
|
2347
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileUtilsExt::METHODS') do |klass|
|
|
2348
2348
|
end
|
|
2349
2349
|
|
|
2350
2350
|
##
|
|
@@ -2352,7 +2352,7 @@ end
|
|
|
2352
2352
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2353
2353
|
# Platform: rbx 2.0.0.rc1
|
|
2354
2354
|
#
|
|
2355
|
-
RubyLint::
|
|
2355
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileUtilsExt::NoWrite') do |klass|
|
|
2356
2356
|
|
|
2357
2357
|
klass.define_method('__module_init__')
|
|
2358
2358
|
|
|
@@ -2538,7 +2538,7 @@ end
|
|
|
2538
2538
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2539
2539
|
# Platform: rbx 2.0.0.rc1
|
|
2540
2540
|
#
|
|
2541
|
-
RubyLint::
|
|
2541
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileUtilsExt::OPT_TABLE') do |klass|
|
|
2542
2542
|
end
|
|
2543
2543
|
|
|
2544
2544
|
##
|
|
@@ -2546,7 +2546,7 @@ end
|
|
|
2546
2546
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2547
2547
|
# Platform: rbx 2.0.0.rc1
|
|
2548
2548
|
#
|
|
2549
|
-
RubyLint::
|
|
2549
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileUtilsExt::RUBY') do |klass|
|
|
2550
2550
|
end
|
|
2551
2551
|
|
|
2552
2552
|
##
|
|
@@ -2554,7 +2554,7 @@ end
|
|
|
2554
2554
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2555
2555
|
# Platform: rbx 2.0.0.rc1
|
|
2556
2556
|
#
|
|
2557
|
-
RubyLint::
|
|
2557
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileUtilsExt::StreamUtils_') do |klass|
|
|
2558
2558
|
|
|
2559
2559
|
klass.define_method('__module_init__')
|
|
2560
2560
|
end
|
|
@@ -2564,7 +2564,7 @@ end
|
|
|
2564
2564
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2565
2565
|
# Platform: rbx 2.0.0.rc1
|
|
2566
2566
|
#
|
|
2567
|
-
RubyLint::
|
|
2567
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::FileUtilsExt::Verbose') do |klass|
|
|
2568
2568
|
|
|
2569
2569
|
klass.define_method('__module_init__')
|
|
2570
2570
|
|
|
@@ -2764,8 +2764,8 @@ end
|
|
|
2764
2764
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2765
2765
|
# Platform: rbx 2.0.0.rc1
|
|
2766
2766
|
#
|
|
2767
|
-
RubyLint::
|
|
2768
|
-
klass.inherits(RubyLint::
|
|
2767
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::InvocationChain') do |klass|
|
|
2768
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
2769
2769
|
|
|
2770
2770
|
klass.define_method('__class_init__')
|
|
2771
2771
|
|
|
@@ -2790,7 +2790,7 @@ end
|
|
|
2790
2790
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2791
2791
|
# Platform: rbx 2.0.0.rc1
|
|
2792
2792
|
#
|
|
2793
|
-
RubyLint::
|
|
2793
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::InvocationChain::EMPTY') do |klass|
|
|
2794
2794
|
end
|
|
2795
2795
|
|
|
2796
2796
|
##
|
|
@@ -2798,8 +2798,8 @@ end
|
|
|
2798
2798
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2799
2799
|
# Platform: rbx 2.0.0.rc1
|
|
2800
2800
|
#
|
|
2801
|
-
RubyLint::
|
|
2802
|
-
klass.inherits(RubyLint::
|
|
2801
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::InvocationChain::EmptyInvocationChain') do |klass|
|
|
2802
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
2803
2803
|
|
|
2804
2804
|
klass.define_method('__class_init__')
|
|
2805
2805
|
|
|
@@ -2819,7 +2819,7 @@ end
|
|
|
2819
2819
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2820
2820
|
# Platform: rbx 2.0.0.rc1
|
|
2821
2821
|
#
|
|
2822
|
-
RubyLint::
|
|
2822
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::InvocationExceptionMixin') do |klass|
|
|
2823
2823
|
|
|
2824
2824
|
klass.define_method('__module_init__')
|
|
2825
2825
|
|
|
@@ -2835,8 +2835,8 @@ end
|
|
|
2835
2835
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2836
2836
|
# Platform: rbx 2.0.0.rc1
|
|
2837
2837
|
#
|
|
2838
|
-
RubyLint::
|
|
2839
|
-
klass.inherits(RubyLint::
|
|
2838
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::MultiTask') do |klass|
|
|
2839
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Rake::Task'))
|
|
2840
2840
|
|
|
2841
2841
|
klass.define_method('__class_init__')
|
|
2842
2842
|
end
|
|
@@ -2846,8 +2846,8 @@ end
|
|
|
2846
2846
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2847
2847
|
# Platform: rbx 2.0.0.rc1
|
|
2848
2848
|
#
|
|
2849
|
-
RubyLint::
|
|
2850
|
-
klass.inherits(RubyLint::
|
|
2849
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::NameSpace') do |klass|
|
|
2850
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
2851
2851
|
|
|
2852
2852
|
klass.define_method('__class_init__')
|
|
2853
2853
|
|
|
@@ -2863,8 +2863,8 @@ end
|
|
|
2863
2863
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2864
2864
|
# Platform: rbx 2.0.0.rc1
|
|
2865
2865
|
#
|
|
2866
|
-
RubyLint::
|
|
2867
|
-
klass.inherits(RubyLint::
|
|
2866
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::PackageTask') do |klass|
|
|
2867
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Rake::TaskLib'))
|
|
2868
2868
|
|
|
2869
2869
|
klass.define_method('__class_init__')
|
|
2870
2870
|
|
|
@@ -2933,7 +2933,7 @@ end
|
|
|
2933
2933
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2934
2934
|
# Platform: rbx 2.0.0.rc1
|
|
2935
2935
|
#
|
|
2936
|
-
RubyLint::
|
|
2936
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::PackageTask::DEFAULT') do |klass|
|
|
2937
2937
|
end
|
|
2938
2938
|
|
|
2939
2939
|
##
|
|
@@ -2941,7 +2941,7 @@ end
|
|
|
2941
2941
|
# Created: 2013-04-01 18:33:54 +0200
|
|
2942
2942
|
# Platform: rbx 2.0.0.rc1
|
|
2943
2943
|
#
|
|
2944
|
-
RubyLint::
|
|
2944
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::PackageTask::DryRun') do |klass|
|
|
2945
2945
|
|
|
2946
2946
|
klass.define_method('__module_init__')
|
|
2947
2947
|
|
|
@@ -3127,8 +3127,8 @@ end
|
|
|
3127
3127
|
# Created: 2013-04-01 18:33:54 +0200
|
|
3128
3128
|
# Platform: rbx 2.0.0.rc1
|
|
3129
3129
|
#
|
|
3130
|
-
RubyLint::
|
|
3131
|
-
klass.inherits(RubyLint::
|
|
3130
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::PackageTask::Entry_') do |klass|
|
|
3131
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
3132
3132
|
|
|
3133
3133
|
klass.define_method('__class_init__')
|
|
3134
3134
|
|
|
@@ -3211,7 +3211,7 @@ end
|
|
|
3211
3211
|
# Created: 2013-04-01 18:33:54 +0200
|
|
3212
3212
|
# Platform: rbx 2.0.0.rc1
|
|
3213
3213
|
#
|
|
3214
|
-
RubyLint::
|
|
3214
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::PackageTask::LN_SUPPORTED') do |klass|
|
|
3215
3215
|
end
|
|
3216
3216
|
|
|
3217
3217
|
##
|
|
@@ -3219,7 +3219,7 @@ end
|
|
|
3219
3219
|
# Created: 2013-04-01 18:33:54 +0200
|
|
3220
3220
|
# Platform: rbx 2.0.0.rc1
|
|
3221
3221
|
#
|
|
3222
|
-
RubyLint::
|
|
3222
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::PackageTask::LOW_METHODS') do |klass|
|
|
3223
3223
|
end
|
|
3224
3224
|
|
|
3225
3225
|
##
|
|
@@ -3227,7 +3227,7 @@ end
|
|
|
3227
3227
|
# Created: 2013-04-01 18:33:54 +0200
|
|
3228
3228
|
# Platform: rbx 2.0.0.rc1
|
|
3229
3229
|
#
|
|
3230
|
-
RubyLint::
|
|
3230
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::PackageTask::LowMethods') do |klass|
|
|
3231
3231
|
|
|
3232
3232
|
klass.define_method('__module_init__')
|
|
3233
3233
|
end
|
|
@@ -3237,7 +3237,7 @@ end
|
|
|
3237
3237
|
# Created: 2013-04-01 18:33:54 +0200
|
|
3238
3238
|
# Platform: rbx 2.0.0.rc1
|
|
3239
3239
|
#
|
|
3240
|
-
RubyLint::
|
|
3240
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::PackageTask::METHODS') do |klass|
|
|
3241
3241
|
end
|
|
3242
3242
|
|
|
3243
3243
|
##
|
|
@@ -3245,7 +3245,7 @@ end
|
|
|
3245
3245
|
# Created: 2013-04-01 18:33:54 +0200
|
|
3246
3246
|
# Platform: rbx 2.0.0.rc1
|
|
3247
3247
|
#
|
|
3248
|
-
RubyLint::
|
|
3248
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::PackageTask::NoWrite') do |klass|
|
|
3249
3249
|
|
|
3250
3250
|
klass.define_method('__module_init__')
|
|
3251
3251
|
|
|
@@ -3431,7 +3431,7 @@ end
|
|
|
3431
3431
|
# Created: 2013-04-01 18:33:54 +0200
|
|
3432
3432
|
# Platform: rbx 2.0.0.rc1
|
|
3433
3433
|
#
|
|
3434
|
-
RubyLint::
|
|
3434
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::PackageTask::OPT_TABLE') do |klass|
|
|
3435
3435
|
end
|
|
3436
3436
|
|
|
3437
3437
|
##
|
|
@@ -3439,7 +3439,7 @@ end
|
|
|
3439
3439
|
# Created: 2013-04-01 18:33:54 +0200
|
|
3440
3440
|
# Platform: rbx 2.0.0.rc1
|
|
3441
3441
|
#
|
|
3442
|
-
RubyLint::
|
|
3442
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::PackageTask::RUBY') do |klass|
|
|
3443
3443
|
end
|
|
3444
3444
|
|
|
3445
3445
|
##
|
|
@@ -3447,7 +3447,7 @@ end
|
|
|
3447
3447
|
# Created: 2013-04-01 18:33:54 +0200
|
|
3448
3448
|
# Platform: rbx 2.0.0.rc1
|
|
3449
3449
|
#
|
|
3450
|
-
RubyLint::
|
|
3450
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::PackageTask::StreamUtils_') do |klass|
|
|
3451
3451
|
|
|
3452
3452
|
klass.define_method('__module_init__')
|
|
3453
3453
|
end
|
|
@@ -3457,7 +3457,7 @@ end
|
|
|
3457
3457
|
# Created: 2013-04-01 18:33:54 +0200
|
|
3458
3458
|
# Platform: rbx 2.0.0.rc1
|
|
3459
3459
|
#
|
|
3460
|
-
RubyLint::
|
|
3460
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::PackageTask::Verbose') do |klass|
|
|
3461
3461
|
|
|
3462
3462
|
klass.define_method('__module_init__')
|
|
3463
3463
|
|
|
@@ -3657,8 +3657,8 @@ end
|
|
|
3657
3657
|
# Created: 2013-04-01 18:33:54 +0200
|
|
3658
3658
|
# Platform: rbx 2.0.0.rc1
|
|
3659
3659
|
#
|
|
3660
|
-
RubyLint::
|
|
3661
|
-
klass.inherits(RubyLint::
|
|
3660
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::PseudoStatus') do |klass|
|
|
3661
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
3662
3662
|
|
|
3663
3663
|
klass.define_method('__class_init__')
|
|
3664
3664
|
|
|
@@ -3680,8 +3680,8 @@ end
|
|
|
3680
3680
|
# Created: 2013-04-01 18:33:54 +0200
|
|
3681
3681
|
# Platform: rbx 2.0.0.rc1
|
|
3682
3682
|
#
|
|
3683
|
-
RubyLint::
|
|
3684
|
-
klass.inherits(RubyLint::
|
|
3683
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::RuleRecursionOverflowError') do |klass|
|
|
3684
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('StandardError'))
|
|
3685
3685
|
|
|
3686
3686
|
klass.define_method('__class_init__')
|
|
3687
3687
|
|
|
@@ -3697,8 +3697,8 @@ end
|
|
|
3697
3697
|
# Created: 2013-04-01 18:33:54 +0200
|
|
3698
3698
|
# Platform: rbx 2.0.0.rc1
|
|
3699
3699
|
#
|
|
3700
|
-
RubyLint::
|
|
3701
|
-
klass.inherits(RubyLint::
|
|
3700
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::Task') do |klass|
|
|
3701
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
3702
3702
|
|
|
3703
3703
|
klass.define_method('[]') do |method|
|
|
3704
3704
|
method.define_argument('task_name')
|
|
@@ -3820,8 +3820,8 @@ end
|
|
|
3820
3820
|
# Created: 2013-04-01 18:33:54 +0200
|
|
3821
3821
|
# Platform: rbx 2.0.0.rc1
|
|
3822
3822
|
#
|
|
3823
|
-
RubyLint::
|
|
3824
|
-
klass.inherits(RubyLint::
|
|
3823
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::TaskArgumentError') do |klass|
|
|
3824
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('ArgumentError'))
|
|
3825
3825
|
end
|
|
3826
3826
|
|
|
3827
3827
|
##
|
|
@@ -3829,8 +3829,8 @@ end
|
|
|
3829
3829
|
# Created: 2013-04-01 18:33:54 +0200
|
|
3830
3830
|
# Platform: rbx 2.0.0.rc1
|
|
3831
3831
|
#
|
|
3832
|
-
RubyLint::
|
|
3833
|
-
klass.inherits(RubyLint::
|
|
3832
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::TaskArguments') do |klass|
|
|
3833
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
3834
3834
|
|
|
3835
3835
|
klass.define_method('__class_init__')
|
|
3836
3836
|
|
|
@@ -3878,8 +3878,8 @@ end
|
|
|
3878
3878
|
# Created: 2013-04-01 18:33:54 +0200
|
|
3879
3879
|
# Platform: rbx 2.0.0.rc1
|
|
3880
3880
|
#
|
|
3881
|
-
RubyLint::
|
|
3882
|
-
klass.inherits(RubyLint::
|
|
3881
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::TaskArguments::SortedElement') do |klass|
|
|
3882
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
3883
3883
|
|
|
3884
3884
|
klass.define_method('__class_init__')
|
|
3885
3885
|
|
|
@@ -3902,8 +3902,8 @@ end
|
|
|
3902
3902
|
# Created: 2013-04-01 18:33:54 +0200
|
|
3903
3903
|
# Platform: rbx 2.0.0.rc1
|
|
3904
3904
|
#
|
|
3905
|
-
RubyLint::
|
|
3906
|
-
klass.inherits(RubyLint::
|
|
3905
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::TaskLib') do |klass|
|
|
3906
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
3907
3907
|
|
|
3908
3908
|
klass.define_method('__class_init__')
|
|
3909
3909
|
|
|
@@ -3918,7 +3918,7 @@ end
|
|
|
3918
3918
|
# Created: 2013-04-01 18:33:54 +0200
|
|
3919
3919
|
# Platform: rbx 2.0.0.rc1
|
|
3920
3920
|
#
|
|
3921
|
-
RubyLint::
|
|
3921
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::TaskLib::DEFAULT') do |klass|
|
|
3922
3922
|
end
|
|
3923
3923
|
|
|
3924
3924
|
##
|
|
@@ -3926,7 +3926,7 @@ end
|
|
|
3926
3926
|
# Created: 2013-04-01 18:33:54 +0200
|
|
3927
3927
|
# Platform: rbx 2.0.0.rc1
|
|
3928
3928
|
#
|
|
3929
|
-
RubyLint::
|
|
3929
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::TaskLib::DryRun') do |klass|
|
|
3930
3930
|
|
|
3931
3931
|
klass.define_method('__module_init__')
|
|
3932
3932
|
|
|
@@ -4112,8 +4112,8 @@ end
|
|
|
4112
4112
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4113
4113
|
# Platform: rbx 2.0.0.rc1
|
|
4114
4114
|
#
|
|
4115
|
-
RubyLint::
|
|
4116
|
-
klass.inherits(RubyLint::
|
|
4115
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::TaskLib::Entry_') do |klass|
|
|
4116
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('Object'))
|
|
4117
4117
|
|
|
4118
4118
|
klass.define_method('__class_init__')
|
|
4119
4119
|
|
|
@@ -4196,7 +4196,7 @@ end
|
|
|
4196
4196
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4197
4197
|
# Platform: rbx 2.0.0.rc1
|
|
4198
4198
|
#
|
|
4199
|
-
RubyLint::
|
|
4199
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::TaskLib::LN_SUPPORTED') do |klass|
|
|
4200
4200
|
end
|
|
4201
4201
|
|
|
4202
4202
|
##
|
|
@@ -4204,7 +4204,7 @@ end
|
|
|
4204
4204
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4205
4205
|
# Platform: rbx 2.0.0.rc1
|
|
4206
4206
|
#
|
|
4207
|
-
RubyLint::
|
|
4207
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::TaskLib::LOW_METHODS') do |klass|
|
|
4208
4208
|
end
|
|
4209
4209
|
|
|
4210
4210
|
##
|
|
@@ -4212,7 +4212,7 @@ end
|
|
|
4212
4212
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4213
4213
|
# Platform: rbx 2.0.0.rc1
|
|
4214
4214
|
#
|
|
4215
|
-
RubyLint::
|
|
4215
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::TaskLib::LowMethods') do |klass|
|
|
4216
4216
|
|
|
4217
4217
|
klass.define_method('__module_init__')
|
|
4218
4218
|
end
|
|
@@ -4222,7 +4222,7 @@ end
|
|
|
4222
4222
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4223
4223
|
# Platform: rbx 2.0.0.rc1
|
|
4224
4224
|
#
|
|
4225
|
-
RubyLint::
|
|
4225
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::TaskLib::METHODS') do |klass|
|
|
4226
4226
|
end
|
|
4227
4227
|
|
|
4228
4228
|
##
|
|
@@ -4230,7 +4230,7 @@ end
|
|
|
4230
4230
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4231
4231
|
# Platform: rbx 2.0.0.rc1
|
|
4232
4232
|
#
|
|
4233
|
-
RubyLint::
|
|
4233
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::TaskLib::NoWrite') do |klass|
|
|
4234
4234
|
|
|
4235
4235
|
klass.define_method('__module_init__')
|
|
4236
4236
|
|
|
@@ -4416,7 +4416,7 @@ end
|
|
|
4416
4416
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4417
4417
|
# Platform: rbx 2.0.0.rc1
|
|
4418
4418
|
#
|
|
4419
|
-
RubyLint::
|
|
4419
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::TaskLib::OPT_TABLE') do |klass|
|
|
4420
4420
|
end
|
|
4421
4421
|
|
|
4422
4422
|
##
|
|
@@ -4424,7 +4424,7 @@ end
|
|
|
4424
4424
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4425
4425
|
# Platform: rbx 2.0.0.rc1
|
|
4426
4426
|
#
|
|
4427
|
-
RubyLint::
|
|
4427
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::TaskLib::RUBY') do |klass|
|
|
4428
4428
|
end
|
|
4429
4429
|
|
|
4430
4430
|
##
|
|
@@ -4432,7 +4432,7 @@ end
|
|
|
4432
4432
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4433
4433
|
# Platform: rbx 2.0.0.rc1
|
|
4434
4434
|
#
|
|
4435
|
-
RubyLint::
|
|
4435
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::TaskLib::StreamUtils_') do |klass|
|
|
4436
4436
|
|
|
4437
4437
|
klass.define_method('__module_init__')
|
|
4438
4438
|
end
|
|
@@ -4442,7 +4442,7 @@ end
|
|
|
4442
4442
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4443
4443
|
# Platform: rbx 2.0.0.rc1
|
|
4444
4444
|
#
|
|
4445
|
-
RubyLint::
|
|
4445
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::TaskLib::Verbose') do |klass|
|
|
4446
4446
|
|
|
4447
4447
|
klass.define_method('__module_init__')
|
|
4448
4448
|
|
|
@@ -4642,7 +4642,7 @@ end
|
|
|
4642
4642
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4643
4643
|
# Platform: rbx 2.0.0.rc1
|
|
4644
4644
|
#
|
|
4645
|
-
RubyLint::
|
|
4645
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::TaskManager') do |klass|
|
|
4646
4646
|
|
|
4647
4647
|
klass.define_method('__module_init__')
|
|
4648
4648
|
|
|
@@ -4715,7 +4715,7 @@ end
|
|
|
4715
4715
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4716
4716
|
# Platform: rbx 2.0.0.rc1
|
|
4717
4717
|
#
|
|
4718
|
-
RubyLint::
|
|
4718
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::Version') do |klass|
|
|
4719
4719
|
|
|
4720
4720
|
klass.define_method('__module_init__')
|
|
4721
4721
|
end
|
|
@@ -4725,7 +4725,7 @@ end
|
|
|
4725
4725
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4726
4726
|
# Platform: rbx 2.0.0.rc1
|
|
4727
4727
|
#
|
|
4728
|
-
RubyLint::
|
|
4728
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::Version::BUILD') do |klass|
|
|
4729
4729
|
end
|
|
4730
4730
|
|
|
4731
4731
|
##
|
|
@@ -4733,7 +4733,7 @@ end
|
|
|
4733
4733
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4734
4734
|
# Platform: rbx 2.0.0.rc1
|
|
4735
4735
|
#
|
|
4736
|
-
RubyLint::
|
|
4736
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::Version::MAJOR') do |klass|
|
|
4737
4737
|
end
|
|
4738
4738
|
|
|
4739
4739
|
##
|
|
@@ -4741,7 +4741,7 @@ end
|
|
|
4741
4741
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4742
4742
|
# Platform: rbx 2.0.0.rc1
|
|
4743
4743
|
#
|
|
4744
|
-
RubyLint::
|
|
4744
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::Version::MINOR') do |klass|
|
|
4745
4745
|
end
|
|
4746
4746
|
|
|
4747
4747
|
##
|
|
@@ -4749,7 +4749,7 @@ end
|
|
|
4749
4749
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4750
4750
|
# Platform: rbx 2.0.0.rc1
|
|
4751
4751
|
#
|
|
4752
|
-
RubyLint::
|
|
4752
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::Version::NUMBERS') do |klass|
|
|
4753
4753
|
end
|
|
4754
4754
|
|
|
4755
4755
|
##
|
|
@@ -4757,7 +4757,7 @@ end
|
|
|
4757
4757
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4758
4758
|
# Platform: rbx 2.0.0.rc1
|
|
4759
4759
|
#
|
|
4760
|
-
RubyLint::
|
|
4760
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::Win32') do |klass|
|
|
4761
4761
|
|
|
4762
4762
|
klass.define_method('__module_init__')
|
|
4763
4763
|
|
|
@@ -4779,6 +4779,6 @@ end
|
|
|
4779
4779
|
# Created: 2013-04-01 18:33:54 +0200
|
|
4780
4780
|
# Platform: rbx 2.0.0.rc1
|
|
4781
4781
|
#
|
|
4782
|
-
RubyLint::
|
|
4783
|
-
klass.inherits(RubyLint::
|
|
4782
|
+
RubyLint::GlobalScope.definitions.define_constant('Rake::Win32::Win32HomeError') do |klass|
|
|
4783
|
+
klass.inherits(RubyLint::GlobalScope.constant_proxy('RuntimeError'))
|
|
4784
4784
|
end
|