rbs 2.8.4 → 3.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +12 -4
- data/.github/workflows/comments.yml +11 -11
- data/.github/workflows/dependabot.yml +30 -0
- data/.github/workflows/ruby.yml +40 -49
- data/.github/workflows/typecheck.yml +36 -0
- data/.github/workflows/windows.yml +28 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +42 -2
- data/CHANGELOG.md +845 -1
- data/README.md +64 -4
- data/Rakefile +198 -18
- data/Steepfile +11 -11
- data/config.yml +311 -0
- data/core/array.rbs +2189 -1914
- data/core/basic_object.rbs +59 -84
- data/core/binding.rbs +7 -69
- data/core/builtin.rbs +210 -11
- data/core/class.rbs +37 -0
- data/core/comparable.rbs +23 -25
- data/core/complex.rbs +449 -227
- data/core/constants.rbs +29 -21
- data/core/data.rbs +415 -0
- data/core/dir.rbs +698 -415
- data/core/encoding.rbs +468 -843
- data/core/enumerable.rbs +495 -455
- data/core/enumerator/product.rbs +92 -0
- data/core/enumerator.rbs +106 -9
- data/core/env.rbs +1 -1
- data/core/errno.rbs +506 -605
- data/core/errors.rbs +15 -17
- data/core/exception.rbs +361 -145
- data/core/false_class.rbs +39 -26
- data/core/fiber.rbs +121 -14
- data/core/file.rbs +1262 -320
- data/core/file_test.rbs +62 -45
- data/core/float.rbs +187 -208
- data/core/gc.rbs +446 -196
- data/core/global_variables.rbs +29 -29
- data/core/hash.rbs +242 -349
- data/core/integer.rbs +246 -308
- data/core/io/buffer.rbs +373 -122
- data/core/io/wait.rbs +29 -17
- data/core/io.rbs +1881 -1518
- data/core/kernel.rbs +2116 -1538
- data/core/marshal.rbs +24 -14
- data/core/match_data.rbs +413 -166
- data/core/math.rbs +531 -291
- data/core/method.rbs +101 -32
- data/core/module.rbs +228 -64
- data/core/nil_class.rbs +106 -47
- data/core/numeric.rbs +206 -292
- data/core/object.rbs +73 -1168
- data/core/object_space/weak_key_map.rbs +166 -0
- data/core/object_space.rbs +5 -3
- data/core/proc.rbs +280 -39
- data/core/process.rbs +1318 -658
- data/core/ractor.rbs +200 -134
- data/core/random.rbs +21 -4
- data/core/range.rbs +309 -153
- data/core/rational.rbs +4 -12
- data/core/rb_config.rbs +64 -43
- data/core/rbs/unnamed/argf.rbs +411 -147
- data/core/rbs/unnamed/env_class.rbs +137 -253
- data/core/rbs/unnamed/random.rbs +49 -26
- data/core/refinement.rbs +16 -1
- data/core/regexp.rbs +1568 -862
- data/core/ruby_vm.rbs +719 -7
- data/core/rubygems/config_file.rbs +3 -0
- data/core/rubygems/errors.rbs +69 -6
- data/core/rubygems/rubygems.rbs +71 -17
- data/core/rubygems/version.rbs +11 -7
- data/{stdlib/set/0 → core}/set.rbs +80 -91
- data/core/signal.rbs +14 -8
- data/core/string.rbs +1732 -1607
- data/core/struct.rbs +467 -95
- data/core/symbol.rbs +215 -245
- data/core/thread.rbs +133 -89
- data/core/thread_group.rbs +9 -9
- data/core/time.rbs +1141 -841
- data/core/trace_point.rbs +181 -121
- data/core/true_class.rbs +58 -32
- data/core/unbound_method.rbs +103 -30
- data/core/warning.rbs +50 -5
- data/docs/CONTRIBUTING.md +1 -1
- data/docs/architecture.md +110 -0
- data/docs/collection.md +59 -5
- data/docs/data_and_struct.md +86 -0
- data/docs/gem.md +57 -0
- data/docs/rbs_by_example.md +16 -35
- data/docs/repo.md +1 -1
- data/docs/sigs.md +7 -7
- data/docs/stdlib.md +63 -5
- data/docs/syntax.md +255 -61
- data/docs/tools.md +1 -0
- data/ext/rbs_extension/extconf.rb +10 -0
- data/ext/rbs_extension/lexer.c +1741 -1548
- data/ext/rbs_extension/lexer.h +11 -1
- data/ext/rbs_extension/lexer.re +12 -6
- data/ext/rbs_extension/lexstate.c +26 -3
- data/ext/rbs_extension/location.c +119 -111
- data/ext/rbs_extension/location.h +32 -7
- data/ext/rbs_extension/main.c +3 -0
- data/ext/rbs_extension/parser.c +883 -481
- data/ext/rbs_extension/parserstate.c +65 -25
- data/ext/rbs_extension/parserstate.h +13 -3
- data/ext/rbs_extension/rbs_extension.h +1 -10
- data/ext/rbs_extension/unescape.c +7 -47
- data/goodcheck.yml +2 -2
- data/{ext/rbs_extension → include/rbs}/constants.h +26 -15
- data/include/rbs/ruby_objs.h +72 -0
- data/include/rbs.h +7 -0
- data/lib/rbs/annotate/annotations.rb +3 -3
- data/lib/rbs/annotate/formatter.rb +13 -3
- data/lib/rbs/annotate/rdoc_annotator.rb +1 -1
- data/lib/rbs/annotate/rdoc_source.rb +12 -3
- data/lib/rbs/ast/declarations.rb +85 -2
- data/lib/rbs/ast/directives.rb +39 -0
- data/lib/rbs/ast/members.rb +49 -15
- data/lib/rbs/ast/type_param.rb +104 -15
- data/lib/rbs/ast/visitor.rb +137 -0
- data/lib/rbs/buffer.rb +5 -0
- data/lib/rbs/cli/colored_io.rb +48 -0
- data/lib/rbs/cli/diff.rb +83 -0
- data/lib/rbs/cli/validate.rb +356 -0
- data/lib/rbs/cli.rb +253 -143
- data/lib/rbs/collection/cleaner.rb +8 -1
- data/lib/rbs/collection/config/lockfile.rb +92 -0
- data/lib/rbs/collection/config/lockfile_generator.rb +154 -65
- data/lib/rbs/collection/config.rb +19 -46
- data/lib/rbs/collection/installer.rb +12 -13
- data/lib/rbs/collection/sources/base.rb +2 -2
- data/lib/rbs/collection/sources/git.rb +146 -69
- data/lib/rbs/collection/sources/local.rb +81 -0
- data/lib/rbs/collection/sources/rubygems.rb +10 -12
- data/lib/rbs/collection/sources/stdlib.rb +14 -13
- data/lib/rbs/collection/sources.rb +15 -2
- data/lib/rbs/collection.rb +2 -1
- data/lib/rbs/definition.rb +13 -16
- data/lib/rbs/definition_builder/ancestor_builder.rb +100 -24
- data/lib/rbs/definition_builder/method_builder.rb +4 -4
- data/lib/rbs/definition_builder.rb +489 -584
- data/lib/rbs/diff.rb +125 -0
- data/lib/rbs/environment/use_map.rb +77 -0
- data/lib/rbs/environment.rb +406 -105
- data/lib/rbs/environment_loader.rb +48 -44
- data/lib/rbs/environment_walker.rb +1 -1
- data/lib/rbs/errors.rb +175 -56
- data/lib/rbs/file_finder.rb +28 -0
- data/lib/rbs/location_aux.rb +8 -7
- data/lib/rbs/locator.rb +37 -15
- data/lib/rbs/method_type.rb +23 -0
- data/lib/rbs/namespace.rb +1 -0
- data/lib/rbs/parser/lex_result.rb +15 -0
- data/lib/rbs/parser/token.rb +23 -0
- data/lib/rbs/parser_aux.rb +22 -13
- data/lib/rbs/prototype/helpers.rb +48 -22
- data/lib/rbs/prototype/node_usage.rb +99 -0
- data/lib/rbs/prototype/rb.rb +125 -31
- data/lib/rbs/prototype/rbi.rb +49 -36
- data/lib/rbs/prototype/runtime/helpers.rb +59 -0
- data/lib/rbs/prototype/runtime/reflection.rb +19 -0
- data/lib/rbs/prototype/runtime/value_object_generator.rb +279 -0
- data/lib/rbs/prototype/runtime.rb +273 -159
- data/lib/rbs/resolver/constant_resolver.rb +24 -8
- data/lib/rbs/resolver/type_name_resolver.rb +41 -7
- data/lib/rbs/sorter.rb +153 -123
- data/lib/rbs/substitution.rb +19 -0
- data/lib/rbs/subtractor.rb +201 -0
- data/lib/rbs/test/errors.rb +24 -11
- data/lib/rbs/test/guaranteed.rb +30 -0
- data/lib/rbs/test/hook.rb +45 -40
- data/lib/rbs/test/setup.rb +1 -1
- data/lib/rbs/test/tester.rb +1 -1
- data/lib/rbs/test/type_check.rb +120 -23
- data/lib/rbs/test.rb +6 -3
- data/lib/rbs/type_alias_dependency.rb +13 -3
- data/lib/rbs/type_alias_regularity.rb +21 -14
- data/lib/rbs/type_name.rb +18 -13
- data/lib/rbs/types.rb +352 -18
- data/lib/rbs/unit_test/convertibles.rb +176 -0
- data/lib/rbs/unit_test/spy.rb +136 -0
- data/lib/rbs/unit_test/type_assertions.rb +341 -0
- data/lib/rbs/unit_test/with_aliases.rb +143 -0
- data/lib/rbs/unit_test.rb +6 -0
- data/lib/rbs/validator.rb +55 -30
- data/lib/rbs/variance_calculator.rb +26 -23
- data/lib/rbs/vendorer.rb +3 -3
- data/lib/rbs/version.rb +1 -1
- data/lib/rbs/writer.rb +69 -22
- data/lib/rbs.rb +7 -2
- data/lib/rdoc/discover.rb +1 -1
- data/lib/rdoc_plugin/parser.rb +5 -5
- data/rbs.gemspec +12 -2
- data/schema/decls.json +1 -1
- data/schema/members.json +15 -10
- data/sig/ancestor_builder.rbs +4 -0
- data/sig/ancestor_graph.rbs +22 -2
- data/sig/annotate/formatter.rbs +2 -2
- data/sig/annotate/rdoc_annotater.rbs +1 -1
- data/sig/cli/colored_io.rbs +15 -0
- data/sig/cli/diff.rbs +21 -0
- data/sig/cli/validate.rbs +43 -0
- data/sig/cli.rbs +4 -0
- data/sig/collection/config/lockfile.rbs +74 -0
- data/sig/collection/config/lockfile_generator.rbs +66 -0
- data/sig/collection/config.rbs +5 -48
- data/sig/collection/installer.rbs +1 -1
- data/sig/collection/sources.rbs +105 -33
- data/sig/constant.rbs +1 -1
- data/sig/declarations.rbs +42 -3
- data/sig/definition.rbs +26 -10
- data/sig/definition_builder.rbs +103 -81
- data/sig/diff.rbs +28 -0
- data/sig/directives.rbs +61 -0
- data/sig/environment.rbs +175 -29
- data/sig/environment_loader.rbs +20 -18
- data/sig/errors.rbs +123 -2
- data/sig/file_finder.rbs +28 -0
- data/sig/location.rbs +0 -3
- data/sig/locator.rbs +14 -2
- data/sig/manifest.yaml +0 -1
- data/sig/members.rbs +32 -9
- data/sig/method_types.rbs +10 -4
- data/sig/namespace.rbs +2 -3
- data/sig/parser.rbs +55 -16
- data/sig/prototype/helpers.rbs +4 -0
- data/sig/prototype/node_usage.rbs +20 -0
- data/sig/prototype/rb.rbs +10 -2
- data/sig/prototype/rbi.rbs +2 -0
- data/sig/prototype/runtime.rbs +182 -0
- data/sig/rbs.rbs +1 -1
- data/sig/rdoc/rbs.rbs +4 -0
- data/sig/repository.rbs +7 -5
- data/sig/resolver/constant_resolver.rbs +3 -4
- data/sig/resolver/context.rbs +1 -1
- data/sig/resolver/type_name_resolver.rbs +5 -1
- data/sig/shims/bundler.rbs +38 -0
- data/sig/shims/rubygems.rbs +19 -0
- data/sig/sorter.rbs +23 -5
- data/sig/substitution.rbs +6 -0
- data/sig/subtractor.rbs +37 -0
- data/sig/test/errors.rbs +52 -0
- data/sig/test/guranteed.rbs +9 -0
- data/sig/test/type_check.rbs +19 -0
- data/sig/test.rbs +82 -0
- data/sig/type_alias_dependency.rbs +31 -0
- data/sig/type_alias_regularity.rbs +12 -6
- data/sig/type_param.rbs +45 -9
- data/sig/typename.rbs +8 -5
- data/sig/types.rbs +119 -12
- data/sig/unit_test/convertibles.rbs +154 -0
- data/sig/unit_test/spy.rbs +28 -0
- data/sig/unit_test/type_assertions.rbs +194 -0
- data/sig/unit_test/with_aliases.rbs +136 -0
- data/sig/use_map.rbs +35 -0
- data/sig/validator.rbs +12 -5
- data/sig/variance_calculator.rbs +3 -1
- data/sig/vendorer.rbs +1 -1
- data/sig/visitor.rbs +47 -0
- data/sig/writer.rbs +6 -2
- data/src/constants.c +153 -0
- data/src/ruby_objs.c +793 -0
- data/stdlib/base64/0/base64.rbs +298 -45
- data/stdlib/benchmark/0/benchmark.rbs +12 -3
- data/stdlib/bigdecimal/0/big_decimal.rbs +62 -198
- data/stdlib/cgi/0/core.rbs +68 -15
- data/stdlib/cgi/0/manifest.yaml +1 -0
- data/stdlib/coverage/0/coverage.rbs +50 -11
- data/stdlib/csv/0/csv.rbs +90 -119
- data/stdlib/csv/0/manifest.yaml +1 -0
- data/stdlib/date/0/date.rbs +806 -735
- data/stdlib/date/0/date_time.rbs +70 -211
- data/stdlib/dbm/0/dbm.rbs +0 -2
- data/stdlib/delegate/0/delegator.rbs +184 -0
- data/stdlib/delegate/0/kernel.rbs +47 -0
- data/stdlib/delegate/0/simple_delegator.rbs +96 -0
- data/stdlib/did_you_mean/0/did_you_mean.rbs +3 -8
- data/stdlib/digest/0/digest.rbs +48 -35
- data/stdlib/erb/0/erb.rbs +15 -39
- data/stdlib/etc/0/etc.rbs +174 -54
- data/stdlib/fileutils/0/fileutils.rbs +1234 -385
- data/stdlib/forwardable/0/forwardable.rbs +4 -4
- data/stdlib/io-console/0/io-console.rbs +82 -17
- data/stdlib/ipaddr/0/ipaddr.rbs +11 -6
- data/stdlib/json/0/json.rbs +434 -151
- data/stdlib/kconv/0/kconv.rbs +166 -0
- data/stdlib/logger/0/formatter.rbs +0 -2
- data/stdlib/logger/0/log_device.rbs +1 -3
- data/stdlib/logger/0/logger.rbs +465 -328
- data/stdlib/minitest/0/kernel.rbs +2 -2
- data/stdlib/minitest/0/minitest/abstract_reporter.rbs +4 -1
- data/stdlib/minitest/0/minitest/assertion.rbs +1 -0
- data/stdlib/minitest/0/minitest/assertions.rbs +58 -13
- data/stdlib/minitest/0/minitest/backtrace_filter.rbs +7 -0
- data/stdlib/minitest/0/minitest/bench_spec.rbs +8 -8
- data/stdlib/minitest/0/minitest/benchmark.rbs +17 -16
- data/stdlib/minitest/0/minitest/compress.rbs +13 -0
- data/stdlib/minitest/0/minitest/error_on_warning.rbs +3 -0
- data/stdlib/minitest/0/minitest/mock.rbs +9 -5
- data/stdlib/minitest/0/minitest/parallel/executor.rbs +4 -0
- data/stdlib/minitest/0/minitest/parallel/test/class_methods.rbs +0 -1
- data/stdlib/minitest/0/minitest/pride_io.rbs +8 -0
- data/stdlib/minitest/0/minitest/pride_lol.rbs +2 -0
- data/stdlib/minitest/0/minitest/progress_reporter.rbs +1 -1
- data/stdlib/minitest/0/minitest/reportable.rbs +2 -0
- data/stdlib/minitest/0/minitest/runnable.rbs +33 -1
- data/stdlib/minitest/0/minitest/spec/dsl/instance_methods.rbs +1 -1
- data/stdlib/minitest/0/minitest/spec/dsl.rbs +10 -6
- data/stdlib/minitest/0/minitest/spec.rbs +1 -1
- data/stdlib/minitest/0/minitest/statistics_reporter.rbs +5 -0
- data/stdlib/minitest/0/minitest/summary_reporter.rbs +0 -7
- data/stdlib/minitest/0/minitest/test/lifecycle_hooks.rbs +7 -7
- data/stdlib/minitest/0/minitest/test.rbs +7 -14
- data/stdlib/minitest/0/minitest/unexpected_error.rbs +2 -0
- data/stdlib/minitest/0/minitest/unexpected_warning.rbs +6 -0
- data/stdlib/minitest/0/minitest/unit.rbs +1 -2
- data/stdlib/minitest/0/minitest.rbs +41 -892
- data/stdlib/monitor/0/monitor.rbs +91 -10
- data/stdlib/mutex_m/0/mutex_m.rbs +0 -2
- data/stdlib/net-http/0/manifest.yaml +1 -1
- data/stdlib/net-http/0/net-http.rbs +3858 -964
- data/stdlib/net-protocol/0/manifest.yaml +2 -0
- data/stdlib/net-protocol/0/net-protocol.rbs +56 -0
- data/stdlib/net-smtp/0/manifest.yaml +2 -0
- data/stdlib/net-smtp/0/net-smtp.rbs +55 -0
- data/stdlib/nkf/0/nkf.rbs +35 -5
- data/stdlib/objspace/0/objspace.rbs +40 -18
- data/stdlib/observable/0/observable.rbs +217 -0
- data/stdlib/open-uri/0/manifest.yaml +4 -0
- data/stdlib/open-uri/0/open-uri.rbs +393 -0
- data/stdlib/open3/0/open3.rbs +147 -0
- data/stdlib/openssl/0/manifest.yaml +1 -0
- data/stdlib/openssl/0/openssl.rbs +681 -316
- data/stdlib/optparse/0/optparse.rbs +100 -65
- data/stdlib/pathname/0/pathname.rbs +24 -15
- data/stdlib/pp/0/manifest.yaml +2 -0
- data/stdlib/pp/0/pp.rbs +300 -0
- data/stdlib/prettyprint/0/prettyprint.rbs +2 -6
- data/stdlib/pstore/0/pstore.rbs +370 -156
- data/stdlib/psych/0/core_ext.rbs +12 -0
- data/stdlib/{yaml → psych}/0/dbm.rbs +3 -3
- data/stdlib/psych/0/manifest.yaml +3 -0
- data/stdlib/psych/0/psych.rbs +402 -0
- data/stdlib/{yaml → psych}/0/store.rbs +2 -2
- data/stdlib/pty/0/pty.rbs +63 -11
- data/stdlib/rdoc/0/code_object.rbs +51 -0
- data/stdlib/rdoc/0/comment.rbs +59 -0
- data/stdlib/rdoc/0/context.rbs +153 -0
- data/stdlib/rdoc/0/markup.rbs +117 -0
- data/stdlib/rdoc/0/parser.rbs +56 -0
- data/stdlib/rdoc/0/rdoc.rbs +13 -380
- data/stdlib/rdoc/0/ri.rbs +17 -0
- data/stdlib/rdoc/0/store.rbs +48 -0
- data/stdlib/rdoc/0/top_level.rbs +97 -0
- data/stdlib/resolv/0/resolv.rbs +16 -79
- data/stdlib/ripper/0/ripper.rbs +1648 -0
- data/stdlib/securerandom/0/securerandom.rbs +7 -2
- data/stdlib/shellwords/0/shellwords.rbs +11 -12
- data/stdlib/singleton/0/singleton.rbs +0 -3
- data/stdlib/socket/0/addrinfo.rbs +13 -18
- data/stdlib/socket/0/basic_socket.rbs +5 -10
- data/stdlib/socket/0/ip_socket.rbs +0 -2
- data/stdlib/socket/0/socket.rbs +77 -46
- data/stdlib/socket/0/tcp_server.rbs +0 -5
- data/stdlib/socket/0/tcp_socket.rbs +36 -3
- data/stdlib/socket/0/udp_socket.rbs +4 -5
- data/stdlib/socket/0/unix_server.rbs +0 -5
- data/stdlib/socket/0/unix_socket.rbs +2 -4
- data/{core/string_io.rbs → stdlib/stringio/0/stringio.rbs} +188 -107
- data/stdlib/strscan/0/string_scanner.rbs +1269 -425
- data/stdlib/tempfile/0/tempfile.rbs +224 -61
- data/stdlib/time/0/time.rbs +48 -35
- data/stdlib/timeout/0/timeout.rbs +17 -8
- data/stdlib/tmpdir/0/tmpdir.rbs +10 -3
- data/stdlib/tsort/0/tsort.rbs +0 -4
- data/stdlib/uri/0/common.rbs +271 -144
- data/stdlib/uri/0/file.rbs +5 -0
- data/stdlib/uri/0/ftp.rbs +1 -1
- data/stdlib/uri/0/generic.rbs +26 -22
- data/stdlib/uri/0/http.rbs +4 -4
- data/stdlib/uri/0/ldap.rbs +1 -1
- data/stdlib/uri/0/mailto.rbs +84 -0
- data/stdlib/uri/0/rfc2396_parser.rbs +3 -0
- data/stdlib/yaml/0/manifest.yaml +1 -2
- data/stdlib/yaml/0/yaml.rbs +1 -199
- data/stdlib/zlib/0/buf_error.rbs +10 -0
- data/stdlib/zlib/0/data_error.rbs +10 -0
- data/stdlib/zlib/0/deflate.rbs +210 -0
- data/stdlib/zlib/0/error.rbs +20 -0
- data/stdlib/zlib/0/gzip_file/crc_error.rbs +12 -0
- data/stdlib/zlib/0/gzip_file/error.rbs +23 -0
- data/stdlib/zlib/0/gzip_file/length_error.rbs +12 -0
- data/stdlib/zlib/0/gzip_file/no_footer.rbs +11 -0
- data/stdlib/zlib/0/gzip_file.rbs +156 -0
- data/stdlib/zlib/0/gzip_reader.rbs +293 -0
- data/stdlib/zlib/0/gzip_writer.rbs +166 -0
- data/stdlib/zlib/0/inflate.rbs +180 -0
- data/stdlib/zlib/0/mem_error.rbs +10 -0
- data/stdlib/zlib/0/need_dict.rbs +13 -0
- data/stdlib/zlib/0/stream_end.rbs +11 -0
- data/stdlib/zlib/0/stream_error.rbs +11 -0
- data/stdlib/zlib/0/version_error.rbs +11 -0
- data/stdlib/zlib/0/zlib.rbs +1 -3
- data/stdlib/zlib/0/zstream.rbs +200 -0
- data/templates/include/rbs/constants.h.erb +20 -0
- data/templates/include/rbs/ruby_objs.h.erb +10 -0
- data/templates/src/constants.c.erb +36 -0
- data/templates/src/ruby_objs.c.erb +27 -0
- data/templates/template.rb +122 -0
- metadata +136 -36
- data/Gemfile +0 -33
- data/Gemfile.lock +0 -118
- data/core/deprecated.rbs +0 -9
- data/ext/rbs_extension/constants.c +0 -135
- data/ext/rbs_extension/ruby_objs.c +0 -525
- data/ext/rbs_extension/ruby_objs.h +0 -43
- data/lib/rbs/constant_table.rb +0 -167
- data/lib/rbs/parser_compat/lexer_error.rb +0 -6
- data/lib/rbs/parser_compat/located_value.rb +0 -7
- data/lib/rbs/parser_compat/semantics_error.rb +0 -6
- data/lib/rbs/parser_compat/syntax_error.rb +0 -6
- data/lib/rbs/test/spy.rb +0 -6
- data/lib/rbs/type_name_resolver.rb +0 -67
- data/sig/constant_table.rbs +0 -30
- data/sig/shims/abstract_syntax_tree.rbs +0 -25
- data/sig/shims/pp.rbs +0 -3
- data/sig/shims/ripper.rbs +0 -8
- data/sig/shims.rbs +0 -69
- data/sig/type_name_resolver.rbs +0 -26
- data/stdlib/minitest/0/manifest.yaml +0 -2
- data/stdlib/prime/0/integer-extension.rbs +0 -41
- data/stdlib/prime/0/manifest.yaml +0 -2
- data/stdlib/prime/0/prime.rbs +0 -372
data/lib/rbs/cli.rb
CHANGED
@@ -3,9 +3,14 @@
|
|
3
3
|
require "open3"
|
4
4
|
require "optparse"
|
5
5
|
require "shellwords"
|
6
|
+
require "stringio"
|
6
7
|
|
7
8
|
module RBS
|
8
9
|
class CLI
|
10
|
+
autoload :ColoredIO, 'rbs/cli/colored_io'
|
11
|
+
autoload :Diff, 'rbs/cli/diff'
|
12
|
+
autoload :Validate, 'rbs/cli/validate'
|
13
|
+
|
9
14
|
class LibraryOptions
|
10
15
|
attr_accessor :core_root
|
11
16
|
attr_accessor :config_path
|
@@ -29,7 +34,12 @@ module RBS
|
|
29
34
|
end
|
30
35
|
|
31
36
|
loader = EnvironmentLoader.new(core_root: core_root, repository: repository)
|
32
|
-
|
37
|
+
if config_path
|
38
|
+
lock_path = Collection::Config.to_lockfile_path(config_path)
|
39
|
+
if lock_path.file?
|
40
|
+
lock = Collection::Config::Lockfile.from_lockfile(lockfile_path: lock_path, data: YAML.load_file(lock_path.to_s))
|
41
|
+
end
|
42
|
+
end
|
33
43
|
loader.add_collection(lock) if lock
|
34
44
|
|
35
45
|
dirs.each do |dir|
|
@@ -83,7 +93,7 @@ module RBS
|
|
83
93
|
@stderr = stderr
|
84
94
|
end
|
85
95
|
|
86
|
-
COMMANDS = [:ast, :annotate, :list, :ancestors, :methods, :method, :validate, :constant, :paths, :prototype, :vendor, :parse, :test, :collection]
|
96
|
+
COMMANDS = [:ast, :annotate, :list, :ancestors, :methods, :method, :validate, :constant, :paths, :prototype, :vendor, :parse, :test, :collection, :subtract, :diff]
|
87
97
|
|
88
98
|
def parse_logging_options(opts)
|
89
99
|
opts.on("--log-level LEVEL", "Specify log level (defaults to `warn`)") do |level|
|
@@ -99,7 +109,7 @@ module RBS
|
|
99
109
|
end
|
100
110
|
|
101
111
|
def has_parser?
|
102
|
-
defined?(RubyVM::AbstractSyntaxTree)
|
112
|
+
defined?(RubyVM::AbstractSyntaxTree) ? true : false
|
103
113
|
end
|
104
114
|
|
105
115
|
def run(args)
|
@@ -225,6 +235,19 @@ EOB
|
|
225
235
|
end
|
226
236
|
end
|
227
237
|
end
|
238
|
+
|
239
|
+
env.class_alias_decls.each do |name, entry|
|
240
|
+
case entry
|
241
|
+
when Environment::ModuleAliasEntry
|
242
|
+
if list.include?(:module)
|
243
|
+
stdout.puts "#{name} (module alias)"
|
244
|
+
end
|
245
|
+
when Environment::ClassAliasEntry
|
246
|
+
if list.include?(:class)
|
247
|
+
stdout.puts "#{name} (class alias)"
|
248
|
+
end
|
249
|
+
end
|
250
|
+
end
|
228
251
|
end
|
229
252
|
|
230
253
|
if list.include?(:interface)
|
@@ -255,14 +278,22 @@ EOU
|
|
255
278
|
opts.on("--singleton", "Ancestors of singleton of the given type_name") { kind = :singleton }
|
256
279
|
end.order!(args)
|
257
280
|
|
281
|
+
unless args.size == 1
|
282
|
+
stdout.puts "Expected one argument."
|
283
|
+
return
|
284
|
+
end
|
285
|
+
|
258
286
|
loader = options.loader()
|
259
287
|
|
260
288
|
env = Environment.from_loader(loader).resolve_type_names
|
261
289
|
|
262
290
|
builder = DefinitionBuilder::AncestorBuilder.new(env: env)
|
263
|
-
type_name = TypeName(args[0]).absolute!
|
291
|
+
type_name = TypeName.parse(args[0]).absolute!
|
292
|
+
|
293
|
+
case env.constant_entry(type_name)
|
294
|
+
when Environment::ClassEntry, Environment::ModuleEntry, Environment::ClassAliasEntry, Environment::ModuleAliasEntry
|
295
|
+
type_name = env.normalize_module_name(type_name)
|
264
296
|
|
265
|
-
if env.class_decls.key?(type_name)
|
266
297
|
ancestors = case kind
|
267
298
|
when :instance
|
268
299
|
builder.instance_ancestors(type_name)
|
@@ -322,9 +353,9 @@ EOU
|
|
322
353
|
env = Environment.from_loader(loader).resolve_type_names
|
323
354
|
|
324
355
|
builder = DefinitionBuilder.new(env: env)
|
325
|
-
type_name = TypeName(args[0]).absolute!
|
356
|
+
type_name = TypeName.parse(args[0]).absolute!
|
326
357
|
|
327
|
-
if env.
|
358
|
+
if env.module_name?(type_name)
|
328
359
|
definition = case kind
|
329
360
|
when :instance
|
330
361
|
builder.build_instance(type_name)
|
@@ -375,10 +406,10 @@ EOU
|
|
375
406
|
env = Environment.from_loader(loader).resolve_type_names
|
376
407
|
|
377
408
|
builder = DefinitionBuilder.new(env: env)
|
378
|
-
type_name = TypeName(args[0]).absolute!
|
409
|
+
type_name = TypeName.parse(args[0]).absolute!
|
379
410
|
method_name = args[1].to_sym
|
380
411
|
|
381
|
-
unless env.
|
412
|
+
unless env.module_name?(type_name)
|
382
413
|
stdout.puts "Cannot find class: #{type_name}"
|
383
414
|
return
|
384
415
|
end
|
@@ -405,101 +436,15 @@ EOU
|
|
405
436
|
stdout.puts " accessibility: #{method.accessibility}"
|
406
437
|
stdout.puts " types:"
|
407
438
|
separator = " "
|
408
|
-
|
409
|
-
|
439
|
+
length_max = method.method_types.map { |type| type.to_s.length }.max or raise
|
440
|
+
method.method_types.each do |type|
|
441
|
+
stdout.puts format(" %s %-#{length_max}s at %s", separator, type, type.location)
|
410
442
|
separator = "|"
|
411
443
|
end
|
412
444
|
end
|
413
445
|
|
414
446
|
def run_validate(args, options)
|
415
|
-
|
416
|
-
opts.banner = <<EOU
|
417
|
-
Usage: rbs validate
|
418
|
-
|
419
|
-
Validate RBS files. It ensures the type names in RBS files are present and the type applications have correct arity.
|
420
|
-
|
421
|
-
Examples:
|
422
|
-
|
423
|
-
$ rbs validate
|
424
|
-
EOU
|
425
|
-
|
426
|
-
opts.on("--silent") do
|
427
|
-
require "stringio"
|
428
|
-
@stdout = StringIO.new
|
429
|
-
end
|
430
|
-
end.parse!(args)
|
431
|
-
|
432
|
-
loader = options.loader()
|
433
|
-
env = Environment.from_loader(loader).resolve_type_names
|
434
|
-
|
435
|
-
builder = DefinitionBuilder.new(env: env)
|
436
|
-
validator = Validator.new(env: env, resolver: TypeNameResolver.from_env(env))
|
437
|
-
|
438
|
-
env.class_decls.each do |name, decl|
|
439
|
-
stdout.puts "Validating class/module definition: `#{name}`..."
|
440
|
-
builder.build_instance(name).each_type do |type|
|
441
|
-
validator.validate_type type, context: [Namespace.root]
|
442
|
-
end
|
443
|
-
builder.build_singleton(name).each_type do |type|
|
444
|
-
validator.validate_type type, context: [Namespace.root]
|
445
|
-
end
|
446
|
-
|
447
|
-
d = decl.primary.decl
|
448
|
-
|
449
|
-
validator.validate_type_params(
|
450
|
-
d.type_params,
|
451
|
-
type_name: name,
|
452
|
-
location: d.location&.aref(:type_params)
|
453
|
-
)
|
454
|
-
|
455
|
-
decl.decls.each do |d|
|
456
|
-
d.decl.each_member do |member|
|
457
|
-
case member
|
458
|
-
when AST::Members::MethodDefinition
|
459
|
-
validator.validate_method_definition(member, type_name: name)
|
460
|
-
end
|
461
|
-
end
|
462
|
-
end
|
463
|
-
end
|
464
|
-
|
465
|
-
env.interface_decls.each do |name, decl|
|
466
|
-
stdout.puts "Validating interface: `#{name}`..."
|
467
|
-
builder.build_interface(name).each_type do |type|
|
468
|
-
validator.validate_type type, context: [Namespace.root]
|
469
|
-
end
|
470
|
-
|
471
|
-
validator.validate_type_params(
|
472
|
-
decl.decl.type_params,
|
473
|
-
type_name: name,
|
474
|
-
location: decl.decl.location&.aref(:type_params)
|
475
|
-
)
|
476
|
-
|
477
|
-
decl.decl.members.each do |member|
|
478
|
-
case member
|
479
|
-
when AST::Members::MethodDefinition
|
480
|
-
validator.validate_method_definition(member, type_name: name)
|
481
|
-
end
|
482
|
-
end
|
483
|
-
end
|
484
|
-
|
485
|
-
env.constant_decls.each do |name, const|
|
486
|
-
stdout.puts "Validating constant: `#{name}`..."
|
487
|
-
validator.validate_type const.decl.type, context: const.context
|
488
|
-
builder.ensure_namespace!(name.namespace, location: const.decl.location)
|
489
|
-
end
|
490
|
-
|
491
|
-
env.global_decls.each do |name, global|
|
492
|
-
stdout.puts "Validating global: `#{name}`..."
|
493
|
-
validator.validate_type global.decl.type, context: [Namespace.root]
|
494
|
-
end
|
495
|
-
|
496
|
-
env.alias_decls.each do |name, decl|
|
497
|
-
stdout.puts "Validating alias: `#{name}`..."
|
498
|
-
builder.expand_alias1(name).tap do |type|
|
499
|
-
validator.validate_type type, context: [Namespace.root]
|
500
|
-
end
|
501
|
-
validator.validate_type_alias(entry: decl)
|
502
|
-
end
|
447
|
+
CLI::Validate.new(args: args, options: options).run
|
503
448
|
end
|
504
449
|
|
505
450
|
def run_constant(args, options)
|
@@ -532,14 +477,26 @@ EOU
|
|
532
477
|
env = Environment.from_loader(loader).resolve_type_names
|
533
478
|
|
534
479
|
builder = DefinitionBuilder.new(env: env)
|
535
|
-
|
480
|
+
resolver = Resolver::ConstantResolver.new(builder: builder)
|
536
481
|
|
537
|
-
|
538
|
-
stdout.puts "Context: #{
|
539
|
-
|
540
|
-
stdout.puts "Constant name: #{
|
482
|
+
resolver_context = context ? [nil, TypeName.parse(context).absolute!] : nil #: Resolver::context
|
483
|
+
stdout.puts "Context: #{context}"
|
484
|
+
const_name = TypeName.parse(args[0])
|
485
|
+
stdout.puts "Constant name: #{const_name}"
|
541
486
|
|
542
|
-
|
487
|
+
if const_name.absolute?
|
488
|
+
constant = resolver.table.constant(const_name)
|
489
|
+
else
|
490
|
+
head, *components = const_name.to_namespace.path
|
491
|
+
head or raise
|
492
|
+
|
493
|
+
constant = resolver.resolve(head, context: resolver_context)
|
494
|
+
constant = components.inject(constant) do |const, component|
|
495
|
+
if const
|
496
|
+
resolver.resolve_child(const.name, component)
|
497
|
+
end
|
498
|
+
end
|
499
|
+
end
|
543
500
|
|
544
501
|
if constant
|
545
502
|
stdout.puts " => #{constant.name}: #{constant.type}"
|
@@ -597,10 +554,13 @@ EOU
|
|
597
554
|
when "rbi", "rb"
|
598
555
|
run_prototype_file(format, args)
|
599
556
|
when "runtime"
|
600
|
-
require_libs = []
|
601
|
-
relative_libs = []
|
557
|
+
require_libs = [] #: Array[String]
|
558
|
+
relative_libs = [] #: Array[String]
|
602
559
|
merge = false
|
603
|
-
|
560
|
+
todo = false
|
561
|
+
owners_included = [] #: Array[Symbol]
|
562
|
+
outline = false
|
563
|
+
autoload = false
|
604
564
|
|
605
565
|
OptionParser.new do |opts|
|
606
566
|
opts.banner = <<EOU
|
@@ -613,7 +573,7 @@ Examples:
|
|
613
573
|
|
614
574
|
$ rbs prototype runtime String
|
615
575
|
$ rbs prototype runtime --require set Set
|
616
|
-
$ rbs prototype runtime -R lib/rbs RBS::*
|
576
|
+
$ rbs prototype runtime -R lib/rbs RBS RBS::*
|
617
577
|
|
618
578
|
Options:
|
619
579
|
EOU
|
@@ -626,23 +586,65 @@ EOU
|
|
626
586
|
opts.on("--merge", "Merge generated prototype RBS with existing RBS") do
|
627
587
|
merge = true
|
628
588
|
end
|
589
|
+
opts.on("--todo", "Generates only undefined methods compared to objects") do
|
590
|
+
Warning.warn("Geneating prototypes with `--todo` option is experimental\n", category: :experimental)
|
591
|
+
todo = true
|
592
|
+
end
|
629
593
|
opts.on("--method-owner CLASS", "Generate method prototypes if the owner of the method is [CLASS]") do |klass|
|
630
|
-
owners_included << klass
|
594
|
+
owners_included << klass.to_sym
|
595
|
+
end
|
596
|
+
opts.on("--outline", "Generates only module/class/constant declaration (no method definition)") do
|
597
|
+
outline = true
|
598
|
+
end
|
599
|
+
opts.on("--autoload", "Load all autoload path") do
|
600
|
+
autoload = true
|
631
601
|
end
|
632
602
|
end.parse!(args)
|
633
603
|
|
634
604
|
loader = options.loader()
|
635
605
|
env = Environment.from_loader(loader).resolve_type_names
|
636
606
|
|
637
|
-
|
638
|
-
|
607
|
+
# @type var autoloader: ^() { () -> void } -> void
|
608
|
+
autoloader = ->(&block) {
|
609
|
+
if autoload
|
610
|
+
hook = Module.new do
|
611
|
+
def autoload(name, path)
|
612
|
+
super
|
613
|
+
end
|
614
|
+
end
|
615
|
+
::Module.prepend(hook)
|
616
|
+
::Kernel.prepend(hook)
|
617
|
+
|
618
|
+
arguments = [] #: Array[[Module, interned]]
|
619
|
+
TracePoint.new(:call) do |tp|
|
620
|
+
base = tp.self.kind_of?(Module) ? tp.self : Kernel #: Module
|
621
|
+
name = (tp.binding or raise).local_variable_get(:name)
|
622
|
+
arguments << [base, name]
|
623
|
+
end.enable(target: hook.instance_method(:autoload), &block)
|
624
|
+
|
625
|
+
arguments.each do |(base, name)|
|
626
|
+
begin
|
627
|
+
base.const_get(name)
|
628
|
+
rescue LoadError, StandardError
|
629
|
+
end
|
630
|
+
end
|
631
|
+
else
|
632
|
+
block.call
|
633
|
+
end
|
634
|
+
}
|
635
|
+
autoloader.call do
|
636
|
+
require_libs.each do |lib|
|
637
|
+
require(lib)
|
638
|
+
end
|
639
|
+
relative_libs.each do |lib|
|
640
|
+
eval("require_relative(lib)", binding, "rbs")
|
641
|
+
end
|
639
642
|
end
|
640
643
|
|
641
|
-
|
642
|
-
|
643
|
-
end
|
644
|
+
runtime = Prototype::Runtime.new(patterns: args, env: env, merge: merge, todo: todo, owners_included: owners_included)
|
645
|
+
runtime.outline = outline
|
644
646
|
|
645
|
-
decls =
|
647
|
+
decls = runtime.decls
|
646
648
|
|
647
649
|
writer = Writer.new(out: stdout)
|
648
650
|
writer.write decls
|
@@ -776,7 +778,12 @@ EOU
|
|
776
778
|
output_path = (output_dir + relative_path).sub_ext(".rbs")
|
777
779
|
|
778
780
|
parser = new_parser[]
|
779
|
-
|
781
|
+
begin
|
782
|
+
parser.parse file_path.read()
|
783
|
+
rescue SyntaxError
|
784
|
+
stdout.puts " ⚠️ Unable to parse due to SyntaxError: `#{file_path}`"
|
785
|
+
next
|
786
|
+
end
|
780
787
|
|
781
788
|
if output_path.file?
|
782
789
|
if force
|
@@ -877,6 +884,10 @@ Options:
|
|
877
884
|
end
|
878
885
|
|
879
886
|
def run_parse(args, options)
|
887
|
+
parse_method = :parse_signature
|
888
|
+
# @type var e_code: String?
|
889
|
+
e_code = nil
|
890
|
+
|
880
891
|
OptionParser.new do |opts|
|
881
892
|
opts.banner = <<-EOB
|
882
893
|
Usage: rbs parse [files...]
|
@@ -886,22 +897,35 @@ Parse given RBS files and print syntax errors.
|
|
886
897
|
Examples:
|
887
898
|
|
888
899
|
$ rbs parse sig/app/models.rbs sig/app/controllers.rbs
|
900
|
+
|
901
|
+
Options:
|
889
902
|
EOB
|
890
|
-
end.parse!(args)
|
891
903
|
|
892
|
-
|
904
|
+
opts.on('-e CODE', 'One line RBS script to parse') { |e| e_code = e }
|
905
|
+
opts.on('--type', 'Parse code as a type') { |e| parse_method = :parse_type }
|
906
|
+
opts.on('--method-type', 'Parse code as a method type') { |e| parse_method = :parse_method_type }
|
907
|
+
end.parse!(args)
|
893
908
|
|
894
909
|
syntax_error = false
|
895
|
-
args.
|
910
|
+
bufs = args.flat_map do |path|
|
896
911
|
path = Pathname(path)
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
912
|
+
FileFinder.each_file(path, skip_hidden: false).map do |file_path|
|
913
|
+
Buffer.new(content: file_path.read, name: file_path)
|
914
|
+
end
|
915
|
+
end
|
916
|
+
bufs << Buffer.new(content: e_code, name: '-e') if e_code
|
917
|
+
|
918
|
+
bufs.each do |buf|
|
919
|
+
RBS.logger.info "Parsing #{buf.name}..."
|
920
|
+
case parse_method
|
921
|
+
when :parse_signature
|
922
|
+
Parser.parse_signature(buf)
|
923
|
+
else
|
924
|
+
Parser.public_send(parse_method, buf, require_eof: true)
|
904
925
|
end
|
926
|
+
rescue RBS::ParsingError => ex
|
927
|
+
stdout.print ex.detailed_message(highlight: true)
|
928
|
+
syntax_error = true
|
905
929
|
end
|
906
930
|
|
907
931
|
exit 1 if syntax_error
|
@@ -955,7 +979,7 @@ Options:
|
|
955
979
|
end
|
956
980
|
|
957
981
|
def test_opt options
|
958
|
-
opts = []
|
982
|
+
opts = [] #: Array[String]
|
959
983
|
|
960
984
|
opts.push(*options.repos.map {|dir| "--repo #{Shellwords.escape(dir)}"})
|
961
985
|
opts.push(*options.dirs.map {|dir| "-I #{Shellwords.escape(dir)}"})
|
@@ -1029,24 +1053,23 @@ EOB
|
|
1029
1053
|
end
|
1030
1054
|
|
1031
1055
|
def run_collection(args, options)
|
1056
|
+
require 'bundler'
|
1057
|
+
|
1032
1058
|
opts = collection_options(args)
|
1033
|
-
params = {}
|
1059
|
+
params = {} #: Hash[Symbol, untyped]
|
1034
1060
|
opts.order args.drop(1), into: params
|
1035
1061
|
config_path = options.config_path or raise
|
1036
1062
|
lock_path = Collection::Config.to_lockfile_path(config_path)
|
1037
1063
|
|
1038
1064
|
case args[0]
|
1039
|
-
when 'install'
|
1065
|
+
when 'install', 'instal', 'insta', 'inst', 'ins', 'in', 'i'
|
1040
1066
|
unless params[:frozen]
|
1041
|
-
|
1042
|
-
Collection::Config.generate_lockfile(config_path: config_path, gemfile_lock_path: gemfile_lock_path)
|
1067
|
+
Collection::Config.generate_lockfile(config_path: config_path, definition: Bundler.definition)
|
1043
1068
|
end
|
1044
1069
|
Collection::Installer.new(lockfile_path: lock_path, stdout: stdout).install_from_lockfile
|
1045
|
-
when 'update'
|
1046
|
-
gemfile_lock_path = Bundler.default_lockfile
|
1047
|
-
|
1070
|
+
when 'update', 'updat', 'upda', 'upd', 'up', 'u'
|
1048
1071
|
# TODO: Be aware of argv to update only specified gem
|
1049
|
-
Collection::Config.generate_lockfile(config_path: config_path,
|
1072
|
+
Collection::Config.generate_lockfile(config_path: config_path, definition: Bundler.definition, with_lockfile: false)
|
1050
1073
|
Collection::Installer.new(lockfile_path: lock_path, stdout: stdout).install_from_lockfile
|
1051
1074
|
when 'init'
|
1052
1075
|
if config_path.exist?
|
@@ -1057,19 +1080,23 @@ EOB
|
|
1057
1080
|
config_path.write(<<~'YAML')
|
1058
1081
|
# Download sources
|
1059
1082
|
sources:
|
1060
|
-
-
|
1083
|
+
- type: git
|
1084
|
+
name: ruby/gem_rbs_collection
|
1061
1085
|
remote: https://github.com/ruby/gem_rbs_collection.git
|
1062
1086
|
revision: main
|
1063
1087
|
repo_dir: gems
|
1064
1088
|
|
1089
|
+
# You can specify local directories as sources also.
|
1090
|
+
# - type: local
|
1091
|
+
# path: path/to/your/local/repository
|
1092
|
+
|
1065
1093
|
# A directory to install the downloaded RBSs
|
1066
1094
|
path: .gem_rbs_collection
|
1067
1095
|
|
1068
|
-
gems:
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
1072
|
-
ignore: true
|
1096
|
+
# gems:
|
1097
|
+
# # If you want to avoid installing rbs files for gems, you can specify them here.
|
1098
|
+
# - name: GEM_NAME
|
1099
|
+
# ignore: true
|
1073
1100
|
YAML
|
1074
1101
|
stdout.puts "created: #{config_path}"
|
1075
1102
|
when 'clean'
|
@@ -1078,7 +1105,7 @@ EOB
|
|
1078
1105
|
exit 1
|
1079
1106
|
end
|
1080
1107
|
Collection::Cleaner.new(lockfile_path: lock_path)
|
1081
|
-
when 'help'
|
1108
|
+
when 'help', 'hel', 'he', 'h'
|
1082
1109
|
puts opts.help
|
1083
1110
|
else
|
1084
1111
|
puts opts.help
|
@@ -1109,5 +1136,88 @@ EOB
|
|
1109
1136
|
opts.on('--frozen') if args[0] == 'install'
|
1110
1137
|
end
|
1111
1138
|
end
|
1139
|
+
|
1140
|
+
def run_subtract(args, _)
|
1141
|
+
write_to_file = false
|
1142
|
+
# @type var subtrahend_paths: Array[String]
|
1143
|
+
subtrahend_paths = []
|
1144
|
+
|
1145
|
+
opts = OptionParser.new do |opts|
|
1146
|
+
opts.banner = <<~HELP
|
1147
|
+
Usage:
|
1148
|
+
rbs subtract [options...] minuend.rbs [minuend2.rbs, ...] subtrahend.rbs
|
1149
|
+
rbs subtract [options...] minuend.rbs [minuend2.rbs, ...] --subtrahend subtrahend_1.rbs --subtrahend subtrahend_2.rbs
|
1150
|
+
|
1151
|
+
Remove duplications between RBS files.
|
1152
|
+
|
1153
|
+
Examples:
|
1154
|
+
|
1155
|
+
# Generate RBS files from the codebase.
|
1156
|
+
$ rbs prototype rb lib/ > generated.rbs
|
1157
|
+
|
1158
|
+
# Write more descrictive types by hand.
|
1159
|
+
$ $EDITOR handwritten.rbs
|
1160
|
+
|
1161
|
+
# Remove hand-written method definitions from generated.rbs.
|
1162
|
+
$ rbs subtract --write generated.rbs handwritten.rbs
|
1163
|
+
|
1164
|
+
Options:
|
1165
|
+
HELP
|
1166
|
+
opts.on('-w', '--write', 'Overwrite files directry') { write_to_file = true }
|
1167
|
+
opts.on('--subtrahend=PATH', '') { |path| subtrahend_paths << path }
|
1168
|
+
opts.parse!(args)
|
1169
|
+
end
|
1170
|
+
|
1171
|
+
if subtrahend_paths.empty?
|
1172
|
+
*minuend_paths, subtrahend_path = args
|
1173
|
+
unless subtrahend_path
|
1174
|
+
stdout.puts opts.help
|
1175
|
+
exit 1
|
1176
|
+
end
|
1177
|
+
subtrahend_paths << subtrahend_path
|
1178
|
+
else
|
1179
|
+
minuend_paths = args
|
1180
|
+
end
|
1181
|
+
|
1182
|
+
if minuend_paths.empty?
|
1183
|
+
stdout.puts opts.help
|
1184
|
+
exit 1
|
1185
|
+
end
|
1186
|
+
|
1187
|
+
subtrahend = Environment.new.tap do |env|
|
1188
|
+
loader = EnvironmentLoader.new(core_root: nil)
|
1189
|
+
subtrahend_paths.each do |path|
|
1190
|
+
loader.add(path: Pathname(path))
|
1191
|
+
end
|
1192
|
+
loader.load(env: env)
|
1193
|
+
end
|
1194
|
+
|
1195
|
+
minuend_paths.each do |minuend_path|
|
1196
|
+
FileFinder.each_file(Pathname(minuend_path), skip_hidden: true) do |rbs_path|
|
1197
|
+
buf = Buffer.new(name: rbs_path, content: rbs_path.read)
|
1198
|
+
_, dirs, decls = Parser.parse_signature(buf)
|
1199
|
+
subtracted = Subtractor.new(decls, subtrahend).call
|
1200
|
+
|
1201
|
+
io = StringIO.new
|
1202
|
+
w = Writer.new(out: io)
|
1203
|
+
w.write(dirs)
|
1204
|
+
w.write(subtracted)
|
1205
|
+
|
1206
|
+
if write_to_file
|
1207
|
+
if io.string.empty?
|
1208
|
+
rbs_path.delete
|
1209
|
+
else
|
1210
|
+
rbs_path.write(io.string)
|
1211
|
+
end
|
1212
|
+
else
|
1213
|
+
stdout.puts(io.string)
|
1214
|
+
end
|
1215
|
+
end
|
1216
|
+
end
|
1217
|
+
end
|
1218
|
+
|
1219
|
+
def run_diff(argv, library_options)
|
1220
|
+
Diff.new(argv: argv, library_options: library_options, stdout: stdout, stderr: stderr).run
|
1221
|
+
end
|
1112
1222
|
end
|
1113
1223
|
end
|
@@ -16,7 +16,14 @@ module RBS
|
|
16
16
|
version or raise
|
17
17
|
next if needed? gem_name, version
|
18
18
|
|
19
|
-
|
19
|
+
case
|
20
|
+
when dir.symlink?
|
21
|
+
dir.unlink
|
22
|
+
when dir.directory?
|
23
|
+
FileUtils.remove_entry_secure(dir.to_s)
|
24
|
+
else
|
25
|
+
raise
|
26
|
+
end
|
20
27
|
end
|
21
28
|
end
|
22
29
|
|
@@ -0,0 +1,92 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module RBS
|
4
|
+
module Collection
|
5
|
+
class Config
|
6
|
+
class Lockfile
|
7
|
+
attr_reader :lockfile_path, :lockfile_dir, :path, :gemfile_lock_path, :sources, :gems
|
8
|
+
|
9
|
+
def initialize(lockfile_path:, path:, gemfile_lock_path:)
|
10
|
+
@lockfile_path = lockfile_path
|
11
|
+
@lockfile_dir = lockfile_path.parent
|
12
|
+
@path = path
|
13
|
+
@gemfile_lock_path = gemfile_lock_path
|
14
|
+
|
15
|
+
@gems = {}
|
16
|
+
end
|
17
|
+
|
18
|
+
def fullpath
|
19
|
+
lockfile_dir + path
|
20
|
+
end
|
21
|
+
|
22
|
+
def gemfile_lock_fullpath
|
23
|
+
if gemfile_lock_path
|
24
|
+
lockfile_dir + gemfile_lock_path
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def to_lockfile
|
29
|
+
# @type var data: lockfile_data
|
30
|
+
|
31
|
+
data = {
|
32
|
+
"path" => path.to_s,
|
33
|
+
"gems" => gems.each_value.sort_by {|g| g[:name] }.map {|hash| library_data(hash) },
|
34
|
+
"gemfile_lock_path" => gemfile_lock_path.to_s
|
35
|
+
}
|
36
|
+
|
37
|
+
data.delete("gems") if gems.empty?
|
38
|
+
|
39
|
+
data
|
40
|
+
end
|
41
|
+
|
42
|
+
def self.from_lockfile(lockfile_path:, data:)
|
43
|
+
path = Pathname(data["path"])
|
44
|
+
if p = data["gemfile_lock_path"]
|
45
|
+
gemfile_lock_path = Pathname(p)
|
46
|
+
end
|
47
|
+
|
48
|
+
lockfile = Lockfile.new(lockfile_path: lockfile_path, path: path, gemfile_lock_path: gemfile_lock_path)
|
49
|
+
|
50
|
+
if gems = data["gems"]
|
51
|
+
gems.each do |gem|
|
52
|
+
src = gem["source"]
|
53
|
+
source = Sources.from_config_entry(src, base_directory: lockfile_path.dirname)
|
54
|
+
lockfile.gems[gem["name"]] = {
|
55
|
+
name: gem["name"],
|
56
|
+
version: gem["version"],
|
57
|
+
source: source
|
58
|
+
}
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
lockfile
|
63
|
+
end
|
64
|
+
|
65
|
+
def library_data(lib)
|
66
|
+
{
|
67
|
+
"name" => lib[:name],
|
68
|
+
"version" => lib[:version],
|
69
|
+
"source" => lib[:source].to_lockfile
|
70
|
+
}
|
71
|
+
end
|
72
|
+
|
73
|
+
def check_rbs_availability!
|
74
|
+
raise CollectionNotAvailable unless fullpath.exist?
|
75
|
+
|
76
|
+
gems.each_value do |gem|
|
77
|
+
source = gem[:source]
|
78
|
+
|
79
|
+
case source
|
80
|
+
when Sources::Git
|
81
|
+
meta_path = fullpath.join(gem[:name], gem[:version], Sources::Git::METADATA_FILENAME)
|
82
|
+
raise CollectionNotAvailable unless meta_path.exist?
|
83
|
+
raise CollectionNotAvailable unless library_data(gem) == YAML.load(meta_path.read)
|
84
|
+
when Sources::Local
|
85
|
+
raise CollectionNotAvailable unless fullpath.join(gem[:name], gem[:version]).symlink?
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|