diff --git a/.gitignore b/.gitignore index c53d182..1810c46 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,8 @@ /test/version_tmp/ /tmp/ .vscode +.idea +.DS_Store # Used by dotenv library to load environment variables. # .env @@ -43,7 +45,7 @@ build-iPhoneSimulator/ # for a library or gem, you might want to ignore these files since the code is # intended to run in multiple environments; otherwise, check them in: -Gemfile.lock +# Gemfile.lock # See https://github.com/rubygems/rubygems/issues/3372 for more info .ruby-version # .ruby-gemset diff --git a/Gemfile b/Gemfile index 1405786..c341636 100644 --- a/Gemfile +++ b/Gemfile @@ -5,15 +5,16 @@ source 'https://rubygems.org' gemspec group :dev do - gem 'method_source' - gem 'pry' - gem 'pry-doc' - gem 'rubocop', require: false - gem 'sorbet' + gem 'method_source', '= 1.0.0' + gem 'pry', '= 0.14.1' + gem 'pry-doc', '= 1.3.0' + gem 'rubocop', '= 1.28.2', require: false + gem 'rubocop-ast', '= 1.17.0', require: false + gem 'sorbet', '= 0.5.10346' end group :test do - gem 'rack' - gem 'simplecov' - gem 'simplecov-console' + gem 'rack', '= 2.2.3' + gem 'simplecov', '= 0.21.2' + gem 'simplecov-console', '= 0.9.1' end diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..36e1c4c --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,130 @@ +PATH + remote: . + specs: + stream-chat-ruby (3.0.0) + faraday (= 1.10.0) + faraday-multipart (= 1.0.3) + faraday-net_http_persistent (= 1.2.0) + jwt (= 2.3.0) + net-http-persistent (= 4.0.1) + sorbet-runtime (= 0.5.10354) + +GEM + remote: https://rubygems.org/ + specs: + ansi (1.5.0) + ast (2.4.2) + coderay (1.1.3) + connection_pool (2.2.5) + diff-lcs (1.5.0) + docile (1.4.0) + faraday (1.10.0) + faraday-em_http (~> 1.0) + faraday-em_synchrony (~> 1.0) + faraday-excon (~> 1.1) + faraday-httpclient (~> 1.0) + faraday-multipart (~> 1.0) + faraday-net_http (~> 1.0) + faraday-net_http_persistent (~> 1.0) + faraday-patron (~> 1.0) + faraday-rack (~> 1.0) + faraday-retry (~> 1.0) + ruby2_keywords (>= 0.0.4) + faraday-em_http (1.0.0) + faraday-em_synchrony (1.0.0) + faraday-excon (1.1.0) + faraday-httpclient (1.0.1) + faraday-multipart (1.0.3) + multipart-post (>= 1.2, < 3) + faraday-net_http (1.0.1) + faraday-net_http_persistent (1.2.0) + faraday-patron (1.0.0) + faraday-rack (1.0.0) + faraday-retry (1.0.3) + jwt (2.3.0) + method_source (1.0.0) + multipart-post (2.2.3) + net-http-persistent (4.0.1) + connection_pool (~> 2.2) + parallel (1.22.1) + parser (3.1.2.1) + ast (~> 2.4.1) + pry (0.14.1) + coderay (~> 1.1) + method_source (~> 1.0) + pry-doc (1.3.0) + pry (~> 0.11) + yard (~> 0.9.11) + rack (2.2.3) + rainbow (3.1.1) + rake (13.0.6) + regexp_parser (2.5.0) + rexml (3.2.5) + rspec (3.11.0) + rspec-core (~> 3.11.0) + rspec-expectations (~> 3.11.0) + rspec-mocks (~> 3.11.0) + rspec-core (3.11.0) + rspec-support (~> 3.11.0) + rspec-expectations (3.11.0) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.11.0) + rspec-mocks (3.11.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.11.0) + rspec-support (3.11.0) + rubocop (1.28.2) + parallel (~> 1.10) + parser (>= 3.1.0.0) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml + rubocop-ast (>= 1.17.0, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 1.4.0, < 3.0) + rubocop-ast (1.17.0) + parser (>= 3.1.1.0) + ruby-progressbar (1.11.0) + ruby2_keywords (0.0.5) + simplecov (0.21.2) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-console (0.9.1) + ansi + simplecov + terminal-table + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) + sorbet (0.5.10346) + sorbet-static (= 0.5.10346) + sorbet-runtime (0.5.10354) + sorbet-static (0.5.10346-universal-darwin-21) + sorbet-static (0.5.10346-x86_64-linux) + terminal-table (3.0.2) + unicode-display_width (>= 1.1.1, < 3) + unicode-display_width (2.2.0) + webrick (1.7.0) + yard (0.9.28) + webrick (~> 1.7.0) + +PLATFORMS + x86_64-darwin-21 + x86_64-linux + +DEPENDENCIES + method_source (= 1.0.0) + pry (= 0.14.1) + pry-doc (= 1.3.0) + rack (= 2.2.3) + rake (= 13.0.6) + rspec (= 3.11.0) + rubocop (= 1.28.2) + rubocop-ast (= 1.17.0) + simplecov (= 0.21.2) + simplecov-console (= 0.9.1) + sorbet (= 0.5.10346) + stream-chat-ruby! + +BUNDLED WITH + 2.3.20 diff --git a/sorbet/rbi/hidden-definitions/errors.txt b/sorbet/rbi/hidden-definitions/errors.txt index 75f28f8..aea9892 100644 --- a/sorbet/rbi/hidden-definitions/errors.txt +++ b/sorbet/rbi/hidden-definitions/errors.txt @@ -9,22 +9,14 @@ # wrong constant name # wrong constant name # wrong constant name > -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name +# wrong constant name +# wrong constant name # wrong constant name -# wrong constant name -# wrong constant name # wrong constant name # wrong constant name # wrong constant name # wrong constant name # wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name # wrong constant name # wrong constant name # wrong constant name @@ -33,10 +25,416 @@ # wrong constant name # wrong constant name # wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name ansi +# wrong constant name ansi_to_bbcode +# wrong constant name ansi_to_html +# wrong constant name bbcode_to_ansi +# wrong constant name bbcode_to_html +# wrong constant name html_to_ansi +# wrong constant name html_to_bbcode +# wrong constant name strip_bbcode +# wrong constant name codes +# wrong constant name initialize +# wrong constant name method_missing +# wrong constant name string +# wrong constant name to_str +# wrong constant name +# uninitialized constant ANSI::Code::BLACK +# uninitialized constant ANSI::Code::BLINK +# uninitialized constant ANSI::Code::BLINK_OFF +# uninitialized constant ANSI::Code::BLUE +# uninitialized constant ANSI::Code::BOLD +# uninitialized constant ANSI::Code::BOLD_OFF +# uninitialized constant ANSI::Code::BRIGHT +# uninitialized constant ANSI::Code::BRIGHT_OFF +# uninitialized constant ANSI::Code::CLEAN +# uninitialized constant ANSI::Code::CLEAR +# uninitialized constant ANSI::Code::CLEAR_EOL +# uninitialized constant ANSI::Code::CLEAR_LEFT +# uninitialized constant ANSI::Code::CLEAR_LINE +# uninitialized constant ANSI::Code::CLEAR_RIGHT +# uninitialized constant ANSI::Code::CLEAR_SCREEN +# uninitialized constant ANSI::Code::CLR +# uninitialized constant ANSI::Code::CLS +# uninitialized constant ANSI::Code::CONCEAL +# uninitialized constant ANSI::Code::CONCEALED +# uninitialized constant ANSI::Code::CONCEAL_OFF +# uninitialized constant ANSI::Code::CROSSED_OFF +# uninitialized constant ANSI::Code::CROSSED_OUT_OFF +# uninitialized constant ANSI::Code::CURSOR_HIDE +# uninitialized constant ANSI::Code::CURSOR_SHOW +# uninitialized constant ANSI::Code::CYAN +# uninitialized constant ANSI::Code::DARK +# uninitialized constant ANSI::Code::DEFAULT_FONT +# uninitialized constant ANSI::Code::DOUBLE_UNDERLINE +# uninitialized constant ANSI::Code::ENCIRCLE +# uninitialized constant ANSI::Code::ENCIRCLE_OFF +# uninitialized constant ANSI::Code::FAINT +# uninitialized constant ANSI::Code::FONT0 +# uninitialized constant ANSI::Code::FONT1 +# uninitialized constant ANSI::Code::FONT2 +# uninitialized constant ANSI::Code::FONT3 +# uninitialized constant ANSI::Code::FONT4 +# uninitialized constant ANSI::Code::FONT5 +# uninitialized constant ANSI::Code::FONT6 +# uninitialized constant ANSI::Code::FONT7 +# uninitialized constant ANSI::Code::FONT8 +# uninitialized constant ANSI::Code::FONT9 +# uninitialized constant ANSI::Code::FONT_DEFAULT +# uninitialized constant ANSI::Code::FRAKTUR +# uninitialized constant ANSI::Code::FRAKTUR_OFF +# uninitialized constant ANSI::Code::FRAME +# uninitialized constant ANSI::Code::FRAME_OFF +# uninitialized constant ANSI::Code::GREEN +# uninitialized constant ANSI::Code::HIDE +# uninitialized constant ANSI::Code::INVERSE +# uninitialized constant ANSI::Code::INVERSE_OFF +# uninitialized constant ANSI::Code::INVERT +# uninitialized constant ANSI::Code::ITALIC +# uninitialized constant ANSI::Code::ITALIC_OFF +# uninitialized constant ANSI::Code::MAGENTA +# uninitialized constant ANSI::Code::NEGATIVE +# uninitialized constant ANSI::Code::ON_BLACK +# uninitialized constant ANSI::Code::ON_BLUE +# uninitialized constant ANSI::Code::ON_CYAN +# uninitialized constant ANSI::Code::ON_GREEN +# uninitialized constant ANSI::Code::ON_MAGENTA +# uninitialized constant ANSI::Code::ON_RED +# uninitialized constant ANSI::Code::ON_WHITE +# uninitialized constant ANSI::Code::ON_YELLOW +# uninitialized constant ANSI::Code::OVERLINE +# uninitialized constant ANSI::Code::OVERLINE_OFF +# uninitialized constant ANSI::Code::POSITIVE +# uninitialized constant ANSI::Code::RAPID +# uninitialized constant ANSI::Code::RAPID_BLINK +# uninitialized constant ANSI::Code::RED +# uninitialized constant ANSI::Code::RESET +# uninitialized constant ANSI::Code::RESTORE +# uninitialized constant ANSI::Code::REVEAL +# uninitialized constant ANSI::Code::REVERSE +# uninitialized constant ANSI::Code::SAVE +# uninitialized constant ANSI::Code::SHOW +# uninitialized constant ANSI::Code::SLOW_BLINK +# uninitialized constant ANSI::Code::STRIKE +# uninitialized constant ANSI::Code::SWAP +# uninitialized constant ANSI::Code::UNDERLINE +# uninitialized constant ANSI::Code::UNDERLINE_OFF +# uninitialized constant ANSI::Code::UNDERSCORE +# uninitialized constant ANSI::Code::WHITE +# uninitialized constant ANSI::Code::YELLOW +# wrong constant name [] +# wrong constant name ansi +# wrong constant name back +# wrong constant name black_on_black +# wrong constant name black_on_blue +# wrong constant name black_on_cyan +# wrong constant name black_on_green +# wrong constant name black_on_magenta +# wrong constant name black_on_red +# wrong constant name black_on_white +# wrong constant name black_on_yellow +# wrong constant name blue_on_black +# wrong constant name blue_on_blue +# wrong constant name blue_on_cyan +# wrong constant name blue_on_green +# wrong constant name blue_on_magenta +# wrong constant name blue_on_red +# wrong constant name blue_on_white +# wrong constant name blue_on_yellow +# wrong constant name code +# wrong constant name color +# wrong constant name cyan_on_black +# wrong constant name cyan_on_blue +# wrong constant name cyan_on_cyan +# wrong constant name cyan_on_green +# wrong constant name cyan_on_magenta +# wrong constant name cyan_on_red +# wrong constant name cyan_on_white +# wrong constant name cyan_on_yellow +# wrong constant name display +# wrong constant name down +# wrong constant name forward +# wrong constant name green_on_black +# wrong constant name green_on_blue +# wrong constant name green_on_cyan +# wrong constant name green_on_green +# wrong constant name green_on_magenta +# wrong constant name green_on_red +# wrong constant name green_on_white +# wrong constant name green_on_yellow +# wrong constant name hex_code +# wrong constant name left +# wrong constant name magenta_on_black +# wrong constant name magenta_on_blue +# wrong constant name magenta_on_cyan +# wrong constant name magenta_on_green +# wrong constant name magenta_on_magenta +# wrong constant name magenta_on_red +# wrong constant name magenta_on_white +# wrong constant name magenta_on_yellow +# wrong constant name method_missing +# wrong constant name move +# wrong constant name random +# wrong constant name red_on_black +# wrong constant name red_on_blue +# wrong constant name red_on_cyan +# wrong constant name red_on_green +# wrong constant name red_on_magenta +# wrong constant name red_on_red +# wrong constant name red_on_white +# wrong constant name red_on_yellow +# wrong constant name rgb +# wrong constant name rgb_256 +# wrong constant name rgb_code +# wrong constant name right +# wrong constant name style +# wrong constant name unansi +# wrong constant name uncolor +# wrong constant name unstyle +# wrong constant name up +# wrong constant name white_on_black +# wrong constant name white_on_blue +# wrong constant name white_on_cyan +# wrong constant name white_on_green +# wrong constant name white_on_magenta +# wrong constant name white_on_red +# wrong constant name white_on_white +# wrong constant name white_on_yellow +# wrong constant name yellow_on_black +# wrong constant name yellow_on_blue +# wrong constant name yellow_on_cyan +# wrong constant name yellow_on_green +# wrong constant name yellow_on_magenta +# wrong constant name yellow_on_red +# wrong constant name yellow_on_white +# wrong constant name yellow_on_yellow +# wrong constant name +# wrong constant name colors +# wrong constant name styles +# wrong constant name align +# wrong constant name align= +# wrong constant name columns +# wrong constant name columns= +# wrong constant name format +# wrong constant name format= +# wrong constant name initialize +# wrong constant name join +# wrong constant name list +# wrong constant name list= +# wrong constant name padding +# wrong constant name padding= +# wrong constant name to_s +# wrong constant name +# wrong constant name +# wrong constant name diff1 +# wrong constant name diff2 +# wrong constant name initialize +# wrong constant name join +# wrong constant name to_a +# wrong constant name +# wrong constant name diff +# uninitialized constant ANSI::Logger::DEBUG +# uninitialized constant ANSI::Logger::ERROR +# uninitialized constant ANSI::Logger::FATAL +# uninitialized constant ANSI::Logger::INFO +# uninitialized constant ANSI::Logger::ProgName +# uninitialized constant ANSI::Logger::SEV_LABEL +# uninitialized constant ANSI::Logger::UNKNOWN +# uninitialized constant ANSI::Logger::VERSION +# uninitialized constant ANSI::Logger::WARN +# wrong constant name ansicolor= +# wrong constant name ansicolor? +# wrong constant name formatter +# wrong constant name styles +# wrong constant name +# wrong constant name black +# wrong constant name black_on_blue +# wrong constant name black_on_cyan +# wrong constant name black_on_green +# wrong constant name black_on_magenta +# wrong constant name black_on_red +# wrong constant name black_on_white +# wrong constant name black_on_yellow +# wrong constant name blink +# wrong constant name blue +# wrong constant name blue_on_black +# wrong constant name blue_on_cyan +# wrong constant name blue_on_green +# wrong constant name blue_on_magenta +# wrong constant name blue_on_red +# wrong constant name blue_on_white +# wrong constant name blue_on_yellow +# wrong constant name bold +# wrong constant name concealed +# wrong constant name cyan +# wrong constant name cyan_on_black +# wrong constant name cyan_on_blue +# wrong constant name cyan_on_green +# wrong constant name cyan_on_magenta +# wrong constant name cyan_on_red +# wrong constant name cyan_on_white +# wrong constant name cyan_on_yellow +# wrong constant name dark +# wrong constant name display +# wrong constant name green +# wrong constant name green_on_black +# wrong constant name green_on_blue +# wrong constant name green_on_cyan +# wrong constant name green_on_magenta +# wrong constant name green_on_red +# wrong constant name green_on_white +# wrong constant name green_on_yellow +# wrong constant name italic +# wrong constant name magenta +# wrong constant name magenta_on_black +# wrong constant name magenta_on_blue +# wrong constant name magenta_on_cyan +# wrong constant name magenta_on_green +# wrong constant name magenta_on_red +# wrong constant name magenta_on_white +# wrong constant name magenta_on_yellow +# wrong constant name negative +# wrong constant name on_black +# wrong constant name on_blue +# wrong constant name on_cyan +# wrong constant name on_green +# wrong constant name on_magenta +# wrong constant name on_red +# wrong constant name on_white +# wrong constant name on_yellow +# wrong constant name rapid +# wrong constant name red +# wrong constant name red_on_black +# wrong constant name red_on_blue +# wrong constant name red_on_cyan +# wrong constant name red_on_green +# wrong constant name red_on_magenta +# wrong constant name red_on_white +# wrong constant name red_on_yellow +# wrong constant name reverse +# wrong constant name strike +# wrong constant name underline +# wrong constant name underscore +# wrong constant name white +# wrong constant name white_on_black +# wrong constant name white_on_blue +# wrong constant name white_on_cyan +# wrong constant name white_on_green +# wrong constant name white_on_magenta +# wrong constant name white_on_red +# wrong constant name white_on_yellow +# wrong constant name yellow +# wrong constant name yellow_on_black +# wrong constant name yellow_on_blue +# wrong constant name yellow_on_cyan +# wrong constant name yellow_on_green +# wrong constant name yellow_on_magenta +# wrong constant name yellow_on_red +# wrong constant name yellow_on_white +# wrong constant name +# wrong constant name bar_mark= +# wrong constant name barmark= +# wrong constant name clear +# wrong constant name file_transfer_mode +# wrong constant name finish +# wrong constant name flush +# wrong constant name format +# wrong constant name format= +# wrong constant name format_arguments +# wrong constant name format_arguments= +# wrong constant name halt +# wrong constant name inc +# wrong constant name initialize +# wrong constant name mark= +# wrong constant name reset +# wrong constant name set +# wrong constant name standard_mode +# wrong constant name style +# wrong constant name styles +# wrong constant name styles= +# wrong constant name title= +# wrong constant name total_overflow= +# wrong constant name transfer_mode +# wrong constant name +# wrong constant name + +# wrong constant name [] +# wrong constant name ansi +# wrong constant name ansi! +# wrong constant name black +# wrong constant name black! +# wrong constant name blue +# wrong constant name blue! +# wrong constant name bold +# wrong constant name bold! +# wrong constant name color +# wrong constant name color! +# wrong constant name cyan +# wrong constant name cyan! +# wrong constant name downcase +# wrong constant name downcase! +# wrong constant name green +# wrong constant name green! +# wrong constant name gsub +# wrong constant name gsub! +# wrong constant name initialize +# wrong constant name magenta +# wrong constant name magenta! +# wrong constant name marks +# wrong constant name red +# wrong constant name red! +# wrong constant name size +# wrong constant name slice +# wrong constant name sub +# wrong constant name sub! +# wrong constant name text +# wrong constant name to_str +# wrong constant name underline +# wrong constant name underline! +# wrong constant name upcase +# wrong constant name upcase! +# wrong constant name yellow +# wrong constant name yellow! +# wrong constant name +# wrong constant name align +# wrong constant name align= +# wrong constant name border +# wrong constant name border= +# wrong constant name fit +# wrong constant name fit= +# wrong constant name format +# wrong constant name format= +# wrong constant name initialize +# wrong constant name padding +# wrong constant name padding= +# wrong constant name table +# wrong constant name table= +# wrong constant name +# wrong constant name +# wrong constant name get_character +# wrong constant name raw_no_echo_mode +# wrong constant name restore_mode +# wrong constant name terminal_height +# wrong constant name terminal_size +# wrong constant name terminal_width +# wrong constant name +# wrong constant name const_missing +# wrong constant name metadata +# wrong constant name string # uninitialized constant Abbrev # uninitialized constant Abbrev -# wrong constant name connect_internal -# wrong constant name deconstruct # wrong constant name shelljoin # wrong constant name to_h # wrong constant name try_convert @@ -44,17 +442,77 @@ # uninitialized constant Benchmark # uninitialized constant Benchmark # wrong constant name clone -# wrong constant name interpret_loosely +# wrong constant name ver # wrong constant name clone # wrong constant name irb +# wrong constant name status_code +# wrong constant name +# wrong constant name jruby_30? +# wrong constant name jruby_31? +# wrong constant name jruby_3? +# wrong constant name maglev_30? +# wrong constant name maglev_31? +# wrong constant name maglev_3? +# wrong constant name mingw_30? +# wrong constant name mingw_31? +# wrong constant name mingw_3? +# wrong constant name mri_30? +# wrong constant name mri_31? +# wrong constant name mri_3? +# wrong constant name mswin64_30? +# wrong constant name mswin64_31? +# wrong constant name mswin64_3? +# wrong constant name mswin_30? +# wrong constant name mswin_31? +# wrong constant name mswin_3? +# wrong constant name on_30? +# wrong constant name on_31? +# wrong constant name on_3? +# wrong constant name rbx_30? +# wrong constant name rbx_31? +# wrong constant name rbx_3? +# wrong constant name ruby_30? +# wrong constant name ruby_31? +# wrong constant name ruby_3? +# wrong constant name truffleruby_30? +# wrong constant name truffleruby_31? +# wrong constant name truffleruby_3? +# wrong constant name x64_mingw_30? +# wrong constant name x64_mingw_31? +# wrong constant name x64_mingw_3? +# uninitialized constant Bundler::Definition::GENERICS +# uninitialized constant Bundler::Definition::GENERIC_CACHE +# wrong constant name deleted_deps +# wrong constant name dependencies_for +# wrong constant name locked_dependencies +# wrong constant name most_specific_locked_platform +# wrong constant name new_deps +# wrong constant name requested_dependencies +# wrong constant name resolve_only_locally! +# wrong constant name resolve_prefering_local! +# wrong constant name no_lock +# wrong constant name no_lock= +# wrong constant name clone +# wrong constant name get_proxy # uninitialized constant Bundler::Dependency::TYPES # wrong constant name branch # wrong constant name expanded_platforms # wrong constant name git +# wrong constant name github +# wrong constant name ref +# wrong constant name +# wrong constant name sha1 +# wrong constant name initialize +# wrong constant name status_code +# wrong constant name +# wrong constant name check_primary_source_safety # wrong constant name # wrong constant name environment # wrong constant name report # wrong constant name write +# wrong constant name replace_with_backup +# wrong constant name env_to_hash +# wrong constant name from_env # wrong constant name # wrong constant name # wrong constant name @@ -84,7 +542,6 @@ # wrong constant name initialize # wrong constant name # wrong constant name available? -# wrong constant name fetch_spec # wrong constant name specs # wrong constant name specs_for_names # uninitialized constant Bundler::Fetcher::CompactIndex::ClientFetcher::Elem @@ -110,7 +567,6 @@ # wrong constant name redirect_limit # wrong constant name request # wrong constant name -# wrong constant name fetch_spec # wrong constant name specs # wrong constant name # wrong constant name initialize @@ -129,20 +585,20 @@ # uninitialized constant Bundler::GemHelper::DEFAULT # uninitialized constant Bundler::GemHelper::LN_SUPPORTED # uninitialized constant Bundler::GemHelper::LOW_METHODS -# Did you mean? Bundler::GemHelper::LowMethods # uninitialized constant Bundler::GemHelper::METHODS -# Did you mean? Method # uninitialized constant Bundler::GemHelper::OPT_TABLE # uninitialized constant Bundler::GemHelper::RUBY # uninitialized constant Bundler::GemHelper::VERSION -# Did you mean? Bundler::VERSION # wrong constant name allowed_push_host # wrong constant name already_tagged? # wrong constant name base +# wrong constant name build_checksum # wrong constant name build_gem # wrong constant name built_gem_path # wrong constant name clean? # wrong constant name committed? +# wrong constant name current_branch +# wrong constant name default_remote # wrong constant name gem_command # wrong constant name gem_key # wrong constant name gem_push? @@ -154,12 +610,12 @@ # wrong constant name install # wrong constant name install_gem # wrong constant name name -# wrong constant name perform_git_push # wrong constant name rubygem_push # wrong constant name sh # wrong constant name sh_with_input # wrong constant name sh_with_status # wrong constant name spec_path +# wrong constant name tag_prefix= # wrong constant name tag_version # wrong constant name version # wrong constant name version_tag @@ -168,6 +624,12 @@ # wrong constant name install_tasks # wrong constant name instance # wrong constant name instance= +# wrong constant name tag_prefix= +# wrong constant name specificity_score +# wrong constant name local_platform +# wrong constant name same_deps +# wrong constant name same_specificity +# wrong constant name sort_best_platform_match # wrong constant name initialize # wrong constant name level # wrong constant name level= @@ -196,17 +658,36 @@ # wrong constant name # wrong constant name # wrong constant name initialize +# wrong constant name name +# wrong constant name platform +# wrong constant name +# wrong constant name initialize # wrong constant name inject # wrong constant name remove # wrong constant name # wrong constant name inject # wrong constant name remove -# wrong constant name _recursive_predecessors -# wrong constant name _recursive_successors +# wrong constant name definition +# uninitialized constant Bundler::LazySpecification::GENERICS +# uninitialized constant Bundler::LazySpecification::GENERIC_CACHE +# wrong constant name eql? +# wrong constant name force_ruby_platform +# wrong constant name force_ruby_platform= +# wrong constant name materialize_for_installation +# wrong constant name platform_string +# uninitialized constant Bundler::LazySpecification::Identifier +# uninitialized constant Bundler::LazySpecification::Identifier +# wrong constant name may_include_redundant_platform_specific_gems? +# wrong constant name bundled_with +# uninitialized constant Bundler::Molinillo::Compatibility +# uninitialized constant Bundler::Molinillo::Compatibility +# wrong constant name dependencies_equal? +# wrong constant name parent_folder +# wrong constant name permission_type # wrong constant name == +# wrong constant name add_dependency_names # wrong constant name app_cache_dirname # wrong constant name app_cache_path -# wrong constant name bundler_plugin_api_source? # wrong constant name cache # wrong constant name cached! # wrong constant name can_lock? @@ -217,17 +698,20 @@ # wrong constant name fetch_gemspec_files # wrong constant name gem_install_dir # wrong constant name hash +# wrong constant name identifier # wrong constant name include? # wrong constant name initialize # wrong constant name install # wrong constant name install_path # wrong constant name installed? +# wrong constant name local! # wrong constant name name # wrong constant name options # wrong constant name options_to_lock # wrong constant name post_install # wrong constant name remote! # wrong constant name root +# wrong constant name spec_names # wrong constant name specs # wrong constant name to_lock # wrong constant name to_s @@ -240,6 +724,7 @@ # wrong constant name # wrong constant name installed_plugins # wrong constant name plugin_commands +# wrong constant name unregister_plugin # wrong constant name initialize # wrong constant name # wrong constant name initialize @@ -252,15 +737,29 @@ # wrong constant name generate_bin # wrong constant name # uninitialized constant Bundler::Plugin::Installer::Rubygems::API_REQUEST_LIMIT -# Did you mean? Bundler::Plugin::Installer::Rubygems::API_REQUEST_SIZE # uninitialized constant Bundler::Plugin::Installer::Rubygems::API_REQUEST_SIZE -# Did you mean? Bundler::Plugin::Installer::Rubygems::API_REQUEST_LIMIT +# wrong constant name # wrong constant name # wrong constant name # wrong constant name # wrong constant name list +# wrong constant name save_plugin +# wrong constant name uninstall # wrong constant name # wrong constant name lock +# uninitialized constant Bundler::RemoteSpecification::GENERICS +# uninitialized constant Bundler::RemoteSpecification::GENERIC_CACHE +# wrong constant name required_rubygems_version +# uninitialized constant Bundler::Resolver::GENERICS +# uninitialized constant Bundler::Resolver::GENERIC_CACHE +# wrong constant name results_for +# wrong constant name source_for +# wrong constant name activated_platforms +# wrong constant name activated_platforms= +# wrong constant name force_ruby_platform +# wrong constant name force_ruby_platform= +# wrong constant name sorted_activated_platforms +# wrong constant name create_for # wrong constant name attempt # wrong constant name attempts # wrong constant name current_run @@ -274,19 +773,20 @@ # wrong constant name attempts # wrong constant name default_attempts # wrong constant name default_retries -# uninitialized constant Bundler::RubyGemsGemInstaller::ENV_PATHS -# wrong constant name +# wrong constant name add_default_gems_to # wrong constant name add_to_load_path # wrong constant name all_specs # wrong constant name backport_ext_builder_monitor # wrong constant name correct_for_windows_path # wrong constant name default_stubs +# wrong constant name find_bundler # wrong constant name find_name # wrong constant name gem_remote_fetcher +# wrong constant name load_env_plugins # wrong constant name plain_specs # wrong constant name plain_specs= # wrong constant name stub_rubygems -# wrong constant name use_gemdeps +# wrong constant name supports_bundler_trampolining? # uninitialized constant Bundler::RubygemsIntegration::AlmostModern # uninitialized constant Bundler::RubygemsIntegration::AlmostModern # uninitialized constant Bundler::RubygemsIntegration::Ancient @@ -296,15 +796,21 @@ # uninitialized constant Bundler::RubygemsIntegration::Legacy # uninitialized constant Bundler::RubygemsIntegration::Legacy # uninitialized constant Bundler::RubygemsIntegration::Modern -# Did you mean? Module # uninitialized constant Bundler::RubygemsIntegration::Modern -# Did you mean? Module # uninitialized constant Bundler::RubygemsIntegration::MoreFuture # uninitialized constant Bundler::RubygemsIntegration::MoreFuture # uninitialized constant Bundler::RubygemsIntegration::MoreModern # uninitialized constant Bundler::RubygemsIntegration::MoreModern # uninitialized constant Bundler::RubygemsIntegration::Transitional # uninitialized constant Bundler::RubygemsIntegration::Transitional +# wrong constant name install_locked_bundler_and_restart_with_it_if_needed +# wrong constant name restart_with_locked_bundler_if_needed +# wrong constant name update_bundler_and_restart_with_it_if_needed +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name processor_count # wrong constant name == # wrong constant name fallback_timeout # wrong constant name fallback_timeout= @@ -329,8 +835,77 @@ # wrong constant name # wrong constant name # wrong constant name validate! +# wrong constant name key_for +# wrong constant name +# wrong constant name add_dependency_names +# wrong constant name cached! +# wrong constant name identifier +# wrong constant name local! +# wrong constant name local_only! +# wrong constant name remote! +# wrong constant name spec_names # uninitialized constant Bundler::Source::Git::DEFAULT_GLOB # wrong constant name glob +# wrong constant name local? +# wrong constant name default_cache_path_for +# wrong constant name dependency_api_available? +# wrong constant name fetch_gem_if_possible +# wrong constant name multiple_remotes? +# wrong constant name no_remotes? +# wrong constant name package_path +# wrong constant name remote_names +# wrong constant name identifier +# wrong constant name initialize +# wrong constant name source_map +# wrong constant name sources +# wrong constant name specs +# wrong constant name +# wrong constant name add_global_rubygems_remote +# wrong constant name aggregate_global_source? +# wrong constant name expired_sources? +# wrong constant name get_with_fallback +# wrong constant name global_path_source +# wrong constant name implicit_global_source? +# wrong constant name local_only! +# wrong constant name lock_other_sources +# wrong constant name lock_rubygems_sources +# wrong constant name merged_gem_lockfile_sections! +# wrong constant name merged_gem_lockfile_sections? +# wrong constant name non_default_explicit_sources +# wrong constant name non_global_rubygems_sources +# wrong constant name all_requirements +# wrong constant name dependencies +# wrong constant name direct_requirements +# wrong constant name initialize +# wrong constant name locked_requirements +# wrong constant name locked_specs +# wrong constant name pinned_spec_names +# wrong constant name sources +# wrong constant name +# wrong constant name incomplete_ruby_specs? +# wrong constant name incomplete_specs +# wrong constant name missing_specs +# uninitialized constant Bundler::StubSpecification::GENERICS +# uninitialized constant Bundler::StubSpecification::GENERIC_CACHE +# wrong constant name extensions +# wrong constant name full_gem_path= +# wrong constant name gem_build_complete_path +# wrong constant name manually_installed? +# wrong constant name +# wrong constant name each_strongly_connected_component +# wrong constant name each_strongly_connected_component_from +# wrong constant name strongly_connected_components +# wrong constant name tsort +# wrong constant name tsort_each +# wrong constant name tsort_each_child +# wrong constant name tsort_each_node +# wrong constant name +# wrong constant name +# wrong constant name each_strongly_connected_component +# wrong constant name each_strongly_connected_component_from +# wrong constant name strongly_connected_components +# wrong constant name tsort +# wrong constant name tsort_each # wrong constant name # wrong constant name # wrong constant name @@ -347,7 +922,6 @@ # wrong constant name # wrong constant name # wrong constant name -# wrong constant name # wrong constant name # wrong constant name # wrong constant name @@ -571,6 +1145,7 @@ # wrong constant name []= # wrong constant name convert_key # wrong constant name delete +# wrong constant name except # wrong constant name fetch # wrong constant name initialize # wrong constant name key? @@ -588,7 +1163,6 @@ # wrong constant name # wrong constant name # uninitialized constant Bundler::Thor::Group::SHELL_DELEGATED_METHODS -# Did you mean? Bundler::Thor::SHELL_DELEGATED_METHODS # wrong constant name _invoke_for_class_method # wrong constant name # wrong constant name banner @@ -644,8 +1218,6 @@ # wrong constant name enter # wrong constant name entered? # wrong constant name -# wrong constant name initialize -# wrong constant name # wrong constant name aliases # wrong constant name array? # wrong constant name boolean? @@ -665,7 +1237,6 @@ # wrong constant name # wrong constant name parse # uninitialized constant Bundler::Thor::Options::NUMERIC -# Did you mean? Numeric # wrong constant name assign_result! # wrong constant name check_unknown! # wrong constant name current_is_switch? @@ -677,18 +1248,16 @@ # wrong constant name parsing_options? # wrong constant name switch? # wrong constant name switch_option +# wrong constant name unshift # wrong constant name # wrong constant name to_switches # uninitialized constant Bundler::Thor::RakeCompat::DEFAULT # uninitialized constant Bundler::Thor::RakeCompat::LN_SUPPORTED # uninitialized constant Bundler::Thor::RakeCompat::LOW_METHODS -# Did you mean? Bundler::Thor::RakeCompat::LowMethods # uninitialized constant Bundler::Thor::RakeCompat::METHODS -# Did you mean? Method # uninitialized constant Bundler::Thor::RakeCompat::OPT_TABLE # uninitialized constant Bundler::Thor::RakeCompat::RUBY # uninitialized constant Bundler::Thor::RakeCompat::VERSION -# Did you mean? Bundler::VERSION # wrong constant name # wrong constant name included # wrong constant name rake_classes @@ -707,6 +1276,7 @@ # wrong constant name print_table # wrong constant name print_wrapped # wrong constant name say +# wrong constant name say_error # wrong constant name say_status # wrong constant name set_color # wrong constant name shell @@ -745,6 +1315,7 @@ # wrong constant name print_wrapped # wrong constant name quiet? # wrong constant name say +# wrong constant name say_error # wrong constant name say_status # wrong constant name set_color # wrong constant name show_diff @@ -757,6 +1328,7 @@ # wrong constant name # uninitialized constant Bundler::Thor::Shell::Color::DEFAULT_TERMINAL_WIDTH # wrong constant name are_colors_disabled? +# wrong constant name are_colors_supported? # wrong constant name diff_lcs_loaded? # wrong constant name output_diff_line # wrong constant name set_color @@ -867,7 +1439,6 @@ # wrong constant name # wrong constant name # wrong constant name -# wrong constant name # wrong constant name # wrong constant name # wrong constant name @@ -884,138 +1455,61 @@ # wrong constant name # wrong constant name # wrong constant name -# wrong constant name decode -# wrong constant name encode -# wrong constant name escape -# wrong constant name unescape -# wrong constant name # uninitialized constant Bundler::URI::FTP::ABS_PATH -# Did you mean? Bundler::URI::ABS_PATH # uninitialized constant Bundler::URI::FTP::ABS_URI -# Did you mean? Bundler::URI::ABS_URI # uninitialized constant Bundler::URI::FTP::ABS_URI_REF -# Did you mean? Bundler::URI::ABS_URI_REF # uninitialized constant Bundler::URI::FTP::DEFAULT_PARSER -# Did you mean? Bundler::URI::FTP::DEFAULT_PORT -# Bundler::URI::DEFAULT_PARSER # uninitialized constant Bundler::URI::FTP::ESCAPED -# Did you mean? Bundler::URI::FTP::Escape -# Bundler::URI::Escape -# Bundler::URI::ESCAPED # uninitialized constant Bundler::URI::FTP::FRAGMENT -# Did you mean? Bundler::URI::FRAGMENT # uninitialized constant Bundler::URI::FTP::HOST -# Did you mean? Bundler::URI::HOST # uninitialized constant Bundler::URI::FTP::OPAQUE -# Did you mean? Bundler::URI::OPAQUE # uninitialized constant Bundler::URI::FTP::PORT -# Did you mean? Bundler::URI::PORT # uninitialized constant Bundler::URI::FTP::QUERY -# Did you mean? Bundler::URI::QUERY # uninitialized constant Bundler::URI::FTP::REGISTRY -# Did you mean? Bundler::URI::REGISTRY # uninitialized constant Bundler::URI::FTP::REL_PATH -# Did you mean? Bundler::URI::REL_PATH # uninitialized constant Bundler::URI::FTP::REL_URI -# Did you mean? Bundler::URI::REL_URI # uninitialized constant Bundler::URI::FTP::REL_URI_REF -# Did you mean? Bundler::URI::REL_URI_REF # uninitialized constant Bundler::URI::FTP::RFC3986_PARSER -# Did you mean? Bundler::URI::FTP::RFC3986_Parser -# Bundler::URI::RFC3986_Parser -# Bundler::URI::RFC2396_Parser -# Bundler::URI::FTP::RFC2396_Parser -# Bundler::URI::RFC3986_PARSER # uninitialized constant Bundler::URI::FTP::SCHEME -# Did you mean? Bundler::URI::SCHEME # uninitialized constant Bundler::URI::FTP::TBLDECWWWCOMP_ -# Did you mean? Bundler::URI::FTP::TBLENCWWWCOMP_ -# Bundler::URI::TBLDECWWWCOMP_ -# Bundler::URI::TBLENCWWWCOMP_ # uninitialized constant Bundler::URI::FTP::TBLENCWWWCOMP_ -# Did you mean? Bundler::URI::FTP::TBLDECWWWCOMP_ -# Bundler::URI::TBLDECWWWCOMP_ -# Bundler::URI::TBLENCWWWCOMP_ # uninitialized constant Bundler::URI::FTP::UNSAFE -# Did you mean? Bundler::URI::UNSAFE # uninitialized constant Bundler::URI::FTP::URI_REF -# Did you mean? Bundler::URI::URI_REF # uninitialized constant Bundler::URI::FTP::USERINFO -# Did you mean? Bundler::URI::USERINFO # uninitialized constant Bundler::URI::FTP::USE_REGISTRY # uninitialized constant Bundler::URI::FTP::VERSION -# Did you mean? Bundler::URI::VERSION -# Bundler::VERSION # uninitialized constant Bundler::URI::FTP::VERSION_CODE -# Did you mean? Bundler::URI::VERSION_CODE # uninitialized constant Bundler::URI::FTP::WEB_ENCODINGS_ -# Did you mean? Bundler::URI::WEB_ENCODINGS_ # wrong constant name set_typecode # wrong constant name typecode # wrong constant name typecode= # wrong constant name # wrong constant name new2 # uninitialized constant Bundler::URI::File::ABS_PATH -# Did you mean? Bundler::URI::ABS_PATH # uninitialized constant Bundler::URI::File::ABS_URI -# Did you mean? Bundler::URI::ABS_URI # uninitialized constant Bundler::URI::File::ABS_URI_REF -# Did you mean? Bundler::URI::ABS_URI_REF # uninitialized constant Bundler::URI::File::DEFAULT_PARSER -# Did you mean? Bundler::URI::File::DEFAULT_PORT -# Bundler::URI::DEFAULT_PARSER # uninitialized constant Bundler::URI::File::ESCAPED -# Did you mean? Bundler::URI::File::Escape -# Bundler::URI::Escape -# Bundler::URI::ESCAPED # uninitialized constant Bundler::URI::File::FRAGMENT -# Did you mean? Bundler::URI::FRAGMENT # uninitialized constant Bundler::URI::File::HOST -# Did you mean? Bundler::URI::HOST # uninitialized constant Bundler::URI::File::OPAQUE -# Did you mean? Bundler::URI::OPAQUE # uninitialized constant Bundler::URI::File::PORT -# Did you mean? Bundler::URI::PORT # uninitialized constant Bundler::URI::File::QUERY -# Did you mean? Bundler::URI::QUERY # uninitialized constant Bundler::URI::File::REGISTRY -# Did you mean? Bundler::URI::REGISTRY # uninitialized constant Bundler::URI::File::REL_PATH -# Did you mean? Bundler::URI::REL_PATH # uninitialized constant Bundler::URI::File::REL_URI -# Did you mean? Bundler::URI::REL_URI # uninitialized constant Bundler::URI::File::REL_URI_REF -# Did you mean? Bundler::URI::REL_URI_REF # uninitialized constant Bundler::URI::File::RFC3986_PARSER -# Did you mean? Bundler::URI::File::RFC3986_Parser -# Bundler::URI::RFC3986_Parser -# Bundler::URI::RFC2396_Parser -# Bundler::URI::File::RFC2396_Parser -# Bundler::URI::RFC3986_PARSER # uninitialized constant Bundler::URI::File::SCHEME -# Did you mean? Bundler::URI::SCHEME # uninitialized constant Bundler::URI::File::TBLDECWWWCOMP_ -# Did you mean? Bundler::URI::File::TBLENCWWWCOMP_ -# Bundler::URI::TBLDECWWWCOMP_ -# Bundler::URI::TBLENCWWWCOMP_ # uninitialized constant Bundler::URI::File::TBLENCWWWCOMP_ -# Did you mean? Bundler::URI::File::TBLDECWWWCOMP_ -# Bundler::URI::TBLDECWWWCOMP_ -# Bundler::URI::TBLENCWWWCOMP_ # uninitialized constant Bundler::URI::File::UNSAFE -# Did you mean? Bundler::URI::UNSAFE # uninitialized constant Bundler::URI::File::URI_REF -# Did you mean? Bundler::URI::URI_REF # uninitialized constant Bundler::URI::File::USERINFO -# Did you mean? Bundler::URI::USERINFO # uninitialized constant Bundler::URI::File::USE_REGISTRY # uninitialized constant Bundler::URI::File::VERSION -# Did you mean? Bundler::URI::VERSION -# Bundler::VERSION # uninitialized constant Bundler::URI::File::VERSION_CODE -# Did you mean? Bundler::URI::VERSION_CODE # uninitialized constant Bundler::URI::File::WEB_ENCODINGS_ -# Did you mean? Bundler::URI::WEB_ENCODINGS_ # wrong constant name check_password # wrong constant name check_user # wrong constant name check_userinfo @@ -1025,65 +1519,29 @@ # wrong constant name - # wrong constant name == # uninitialized constant Bundler::URI::Generic::ABS_PATH -# Did you mean? Bundler::URI::ABS_PATH # uninitialized constant Bundler::URI::Generic::ABS_URI -# Did you mean? Bundler::URI::ABS_URI # uninitialized constant Bundler::URI::Generic::ABS_URI_REF -# Did you mean? Bundler::URI::ABS_URI_REF # uninitialized constant Bundler::URI::Generic::DEFAULT_PARSER -# Did you mean? Bundler::URI::Generic::DEFAULT_PORT -# Bundler::URI::DEFAULT_PARSER # uninitialized constant Bundler::URI::Generic::ESCAPED -# Did you mean? Bundler::URI::Generic::Escape -# Bundler::URI::Escape -# Bundler::URI::ESCAPED # uninitialized constant Bundler::URI::Generic::FRAGMENT -# Did you mean? Bundler::URI::FRAGMENT # uninitialized constant Bundler::URI::Generic::HOST -# Did you mean? Bundler::URI::HOST # uninitialized constant Bundler::URI::Generic::OPAQUE -# Did you mean? Bundler::URI::OPAQUE # uninitialized constant Bundler::URI::Generic::PORT -# Did you mean? Bundler::URI::PORT # uninitialized constant Bundler::URI::Generic::QUERY -# Did you mean? Bundler::URI::QUERY # uninitialized constant Bundler::URI::Generic::REGISTRY -# Did you mean? Bundler::URI::REGISTRY # uninitialized constant Bundler::URI::Generic::REL_PATH -# Did you mean? Bundler::URI::REL_PATH # uninitialized constant Bundler::URI::Generic::REL_URI -# Did you mean? Bundler::URI::REL_URI # uninitialized constant Bundler::URI::Generic::REL_URI_REF -# Did you mean? Bundler::URI::REL_URI_REF # uninitialized constant Bundler::URI::Generic::RFC3986_PARSER -# Did you mean? Bundler::URI::Generic::RFC3986_Parser -# Bundler::URI::RFC3986_Parser -# Bundler::URI::RFC2396_Parser -# Bundler::URI::Generic::RFC2396_Parser -# Bundler::URI::RFC3986_PARSER # uninitialized constant Bundler::URI::Generic::SCHEME -# Did you mean? Bundler::URI::SCHEME # uninitialized constant Bundler::URI::Generic::TBLDECWWWCOMP_ -# Did you mean? Bundler::URI::Generic::TBLENCWWWCOMP_ -# Bundler::URI::TBLDECWWWCOMP_ -# Bundler::URI::TBLENCWWWCOMP_ # uninitialized constant Bundler::URI::Generic::TBLENCWWWCOMP_ -# Did you mean? Bundler::URI::Generic::TBLDECWWWCOMP_ -# Bundler::URI::TBLDECWWWCOMP_ -# Bundler::URI::TBLENCWWWCOMP_ # uninitialized constant Bundler::URI::Generic::UNSAFE -# Did you mean? Bundler::URI::UNSAFE # uninitialized constant Bundler::URI::Generic::URI_REF -# Did you mean? Bundler::URI::URI_REF # uninitialized constant Bundler::URI::Generic::USERINFO -# Did you mean? Bundler::URI::USERINFO # uninitialized constant Bundler::URI::Generic::VERSION -# Did you mean? Bundler::URI::VERSION -# Bundler::VERSION # uninitialized constant Bundler::URI::Generic::VERSION_CODE -# Did you mean? Bundler::URI::VERSION_CODE # uninitialized constant Bundler::URI::Generic::WEB_ENCODINGS_ -# Did you mean? Bundler::URI::WEB_ENCODINGS_ # wrong constant name absolute # wrong constant name absolute? # wrong constant name coerce @@ -1144,194 +1602,86 @@ # wrong constant name use_proxy? # wrong constant name use_registry # uninitialized constant Bundler::URI::HTTP::ABS_PATH -# Did you mean? Bundler::URI::ABS_PATH # uninitialized constant Bundler::URI::HTTP::ABS_URI -# Did you mean? Bundler::URI::ABS_URI # uninitialized constant Bundler::URI::HTTP::ABS_URI_REF -# Did you mean? Bundler::URI::ABS_URI_REF # uninitialized constant Bundler::URI::HTTP::DEFAULT_PARSER -# Did you mean? Bundler::URI::HTTP::DEFAULT_PORT -# Bundler::URI::DEFAULT_PARSER # uninitialized constant Bundler::URI::HTTP::ESCAPED -# Did you mean? Bundler::URI::HTTP::Escape -# Bundler::URI::Escape -# Bundler::URI::ESCAPED # uninitialized constant Bundler::URI::HTTP::FRAGMENT -# Did you mean? Bundler::URI::FRAGMENT # uninitialized constant Bundler::URI::HTTP::HOST -# Did you mean? Bundler::URI::HOST # uninitialized constant Bundler::URI::HTTP::OPAQUE -# Did you mean? Bundler::URI::OPAQUE # uninitialized constant Bundler::URI::HTTP::PORT -# Did you mean? Bundler::URI::PORT # uninitialized constant Bundler::URI::HTTP::QUERY -# Did you mean? Bundler::URI::QUERY # uninitialized constant Bundler::URI::HTTP::REGISTRY -# Did you mean? Bundler::URI::REGISTRY # uninitialized constant Bundler::URI::HTTP::REL_PATH -# Did you mean? Bundler::URI::REL_PATH # uninitialized constant Bundler::URI::HTTP::REL_URI -# Did you mean? Bundler::URI::REL_URI # uninitialized constant Bundler::URI::HTTP::REL_URI_REF -# Did you mean? Bundler::URI::REL_URI_REF # uninitialized constant Bundler::URI::HTTP::RFC3986_PARSER -# Did you mean? Bundler::URI::HTTP::RFC3986_Parser -# Bundler::URI::RFC3986_Parser -# Bundler::URI::RFC2396_Parser -# Bundler::URI::HTTP::RFC2396_Parser -# Bundler::URI::RFC3986_PARSER # uninitialized constant Bundler::URI::HTTP::SCHEME -# Did you mean? Bundler::URI::SCHEME # uninitialized constant Bundler::URI::HTTP::TBLDECWWWCOMP_ -# Did you mean? Bundler::URI::HTTP::TBLENCWWWCOMP_ -# Bundler::URI::TBLDECWWWCOMP_ -# Bundler::URI::TBLENCWWWCOMP_ # uninitialized constant Bundler::URI::HTTP::TBLENCWWWCOMP_ -# Did you mean? Bundler::URI::HTTP::TBLDECWWWCOMP_ -# Bundler::URI::TBLDECWWWCOMP_ -# Bundler::URI::TBLENCWWWCOMP_ # uninitialized constant Bundler::URI::HTTP::UNSAFE -# Did you mean? Bundler::URI::UNSAFE # uninitialized constant Bundler::URI::HTTP::URI_REF -# Did you mean? Bundler::URI::URI_REF # uninitialized constant Bundler::URI::HTTP::USERINFO -# Did you mean? Bundler::URI::USERINFO # uninitialized constant Bundler::URI::HTTP::USE_REGISTRY # uninitialized constant Bundler::URI::HTTP::VERSION -# Did you mean? Bundler::URI::VERSION -# Bundler::VERSION # uninitialized constant Bundler::URI::HTTP::VERSION_CODE -# Did you mean? Bundler::URI::VERSION_CODE # uninitialized constant Bundler::URI::HTTP::WEB_ENCODINGS_ -# Did you mean? Bundler::URI::WEB_ENCODINGS_ # wrong constant name request_uri # wrong constant name # uninitialized constant Bundler::URI::HTTPS::ABS_PATH -# Did you mean? Bundler::URI::ABS_PATH # uninitialized constant Bundler::URI::HTTPS::ABS_URI -# Did you mean? Bundler::URI::ABS_URI # uninitialized constant Bundler::URI::HTTPS::ABS_URI_REF -# Did you mean? Bundler::URI::ABS_URI_REF # uninitialized constant Bundler::URI::HTTPS::COMPONENT # uninitialized constant Bundler::URI::HTTPS::DEFAULT_PARSER -# Did you mean? Bundler::URI::HTTPS::DEFAULT_PORT -# Bundler::URI::DEFAULT_PARSER # uninitialized constant Bundler::URI::HTTPS::ESCAPED -# Did you mean? Bundler::URI::HTTPS::Escape -# Bundler::URI::Escape -# Bundler::URI::ESCAPED # uninitialized constant Bundler::URI::HTTPS::FRAGMENT -# Did you mean? Bundler::URI::FRAGMENT # uninitialized constant Bundler::URI::HTTPS::HOST -# Did you mean? Bundler::URI::HOST # uninitialized constant Bundler::URI::HTTPS::OPAQUE -# Did you mean? Bundler::URI::OPAQUE # uninitialized constant Bundler::URI::HTTPS::PORT -# Did you mean? Bundler::URI::PORT # uninitialized constant Bundler::URI::HTTPS::QUERY -# Did you mean? Bundler::URI::QUERY # uninitialized constant Bundler::URI::HTTPS::REGISTRY -# Did you mean? Bundler::URI::REGISTRY # uninitialized constant Bundler::URI::HTTPS::REL_PATH -# Did you mean? Bundler::URI::REL_PATH # uninitialized constant Bundler::URI::HTTPS::REL_URI -# Did you mean? Bundler::URI::REL_URI # uninitialized constant Bundler::URI::HTTPS::REL_URI_REF -# Did you mean? Bundler::URI::REL_URI_REF # uninitialized constant Bundler::URI::HTTPS::RFC3986_PARSER -# Did you mean? Bundler::URI::HTTPS::RFC3986_Parser -# Bundler::URI::RFC3986_Parser -# Bundler::URI::RFC2396_Parser -# Bundler::URI::HTTPS::RFC2396_Parser -# Bundler::URI::RFC3986_PARSER # uninitialized constant Bundler::URI::HTTPS::SCHEME -# Did you mean? Bundler::URI::SCHEME # uninitialized constant Bundler::URI::HTTPS::TBLDECWWWCOMP_ -# Did you mean? Bundler::URI::HTTPS::TBLENCWWWCOMP_ -# Bundler::URI::TBLDECWWWCOMP_ -# Bundler::URI::TBLENCWWWCOMP_ # uninitialized constant Bundler::URI::HTTPS::TBLENCWWWCOMP_ -# Did you mean? Bundler::URI::HTTPS::TBLDECWWWCOMP_ -# Bundler::URI::TBLDECWWWCOMP_ -# Bundler::URI::TBLENCWWWCOMP_ # uninitialized constant Bundler::URI::HTTPS::UNSAFE -# Did you mean? Bundler::URI::UNSAFE # uninitialized constant Bundler::URI::HTTPS::URI_REF -# Did you mean? Bundler::URI::URI_REF # uninitialized constant Bundler::URI::HTTPS::USERINFO -# Did you mean? Bundler::URI::USERINFO # uninitialized constant Bundler::URI::HTTPS::USE_REGISTRY # uninitialized constant Bundler::URI::HTTPS::VERSION -# Did you mean? Bundler::URI::VERSION -# Bundler::VERSION # uninitialized constant Bundler::URI::HTTPS::VERSION_CODE -# Did you mean? Bundler::URI::VERSION_CODE # uninitialized constant Bundler::URI::HTTPS::WEB_ENCODINGS_ -# Did you mean? Bundler::URI::WEB_ENCODINGS_ # wrong constant name # wrong constant name # wrong constant name # uninitialized constant Bundler::URI::LDAP::ABS_PATH -# Did you mean? Bundler::URI::ABS_PATH # uninitialized constant Bundler::URI::LDAP::ABS_URI -# Did you mean? Bundler::URI::ABS_URI # uninitialized constant Bundler::URI::LDAP::ABS_URI_REF -# Did you mean? Bundler::URI::ABS_URI_REF # uninitialized constant Bundler::URI::LDAP::DEFAULT_PARSER -# Did you mean? Bundler::URI::LDAP::DEFAULT_PORT -# Bundler::URI::DEFAULT_PARSER # uninitialized constant Bundler::URI::LDAP::ESCAPED -# Did you mean? Bundler::URI::LDAP::Escape -# Bundler::URI::Escape -# Bundler::URI::ESCAPED # uninitialized constant Bundler::URI::LDAP::FRAGMENT -# Did you mean? Bundler::URI::FRAGMENT # uninitialized constant Bundler::URI::LDAP::HOST -# Did you mean? Bundler::URI::HOST # uninitialized constant Bundler::URI::LDAP::OPAQUE -# Did you mean? Bundler::URI::OPAQUE # uninitialized constant Bundler::URI::LDAP::PORT -# Did you mean? Bundler::URI::PORT # uninitialized constant Bundler::URI::LDAP::QUERY -# Did you mean? Bundler::URI::QUERY # uninitialized constant Bundler::URI::LDAP::REGISTRY -# Did you mean? Bundler::URI::REGISTRY # uninitialized constant Bundler::URI::LDAP::REL_PATH -# Did you mean? Bundler::URI::REL_PATH # uninitialized constant Bundler::URI::LDAP::REL_URI -# Did you mean? Bundler::URI::REL_URI # uninitialized constant Bundler::URI::LDAP::REL_URI_REF -# Did you mean? Bundler::URI::REL_URI_REF # uninitialized constant Bundler::URI::LDAP::RFC3986_PARSER -# Did you mean? Bundler::URI::LDAP::RFC3986_Parser -# Bundler::URI::RFC3986_Parser -# Bundler::URI::RFC2396_Parser -# Bundler::URI::LDAP::RFC2396_Parser -# Bundler::URI::RFC3986_PARSER # uninitialized constant Bundler::URI::LDAP::SCHEME -# Did you mean? Bundler::URI::SCHEME # uninitialized constant Bundler::URI::LDAP::TBLDECWWWCOMP_ -# Did you mean? Bundler::URI::LDAP::TBLENCWWWCOMP_ -# Bundler::URI::TBLDECWWWCOMP_ -# Bundler::URI::TBLENCWWWCOMP_ # uninitialized constant Bundler::URI::LDAP::TBLENCWWWCOMP_ -# Did you mean? Bundler::URI::LDAP::TBLDECWWWCOMP_ -# Bundler::URI::TBLDECWWWCOMP_ -# Bundler::URI::TBLENCWWWCOMP_ # uninitialized constant Bundler::URI::LDAP::UNSAFE -# Did you mean? Bundler::URI::UNSAFE # uninitialized constant Bundler::URI::LDAP::URI_REF -# Did you mean? Bundler::URI::URI_REF # uninitialized constant Bundler::URI::LDAP::USERINFO -# Did you mean? Bundler::URI::USERINFO # uninitialized constant Bundler::URI::LDAP::USE_REGISTRY # uninitialized constant Bundler::URI::LDAP::VERSION -# Did you mean? Bundler::URI::VERSION -# Bundler::VERSION # uninitialized constant Bundler::URI::LDAP::VERSION_CODE -# Did you mean? Bundler::URI::VERSION_CODE # uninitialized constant Bundler::URI::LDAP::WEB_ENCODINGS_ -# Did you mean? Bundler::URI::WEB_ENCODINGS_ # wrong constant name attributes # wrong constant name attributes= # wrong constant name dn @@ -1350,137 +1700,61 @@ # wrong constant name set_scope # wrong constant name # uninitialized constant Bundler::URI::LDAPS::ABS_PATH -# Did you mean? Bundler::URI::ABS_PATH # uninitialized constant Bundler::URI::LDAPS::ABS_URI -# Did you mean? Bundler::URI::ABS_URI # uninitialized constant Bundler::URI::LDAPS::ABS_URI_REF -# Did you mean? Bundler::URI::ABS_URI_REF # uninitialized constant Bundler::URI::LDAPS::COMPONENT # uninitialized constant Bundler::URI::LDAPS::DEFAULT_PARSER -# Did you mean? Bundler::URI::LDAPS::DEFAULT_PORT -# Bundler::URI::DEFAULT_PARSER # uninitialized constant Bundler::URI::LDAPS::ESCAPED -# Did you mean? Bundler::URI::LDAPS::Escape -# Bundler::URI::Escape -# Bundler::URI::ESCAPED # uninitialized constant Bundler::URI::LDAPS::FRAGMENT -# Did you mean? Bundler::URI::FRAGMENT # uninitialized constant Bundler::URI::LDAPS::HOST -# Did you mean? Bundler::URI::HOST # uninitialized constant Bundler::URI::LDAPS::OPAQUE -# Did you mean? Bundler::URI::OPAQUE # uninitialized constant Bundler::URI::LDAPS::PORT -# Did you mean? Bundler::URI::PORT # uninitialized constant Bundler::URI::LDAPS::QUERY -# Did you mean? Bundler::URI::QUERY # uninitialized constant Bundler::URI::LDAPS::REGISTRY -# Did you mean? Bundler::URI::REGISTRY # uninitialized constant Bundler::URI::LDAPS::REL_PATH -# Did you mean? Bundler::URI::REL_PATH # uninitialized constant Bundler::URI::LDAPS::REL_URI -# Did you mean? Bundler::URI::REL_URI # uninitialized constant Bundler::URI::LDAPS::REL_URI_REF -# Did you mean? Bundler::URI::REL_URI_REF # uninitialized constant Bundler::URI::LDAPS::RFC3986_PARSER -# Did you mean? Bundler::URI::LDAPS::RFC3986_Parser -# Bundler::URI::RFC3986_Parser -# Bundler::URI::RFC2396_Parser -# Bundler::URI::LDAPS::RFC2396_Parser -# Bundler::URI::RFC3986_PARSER # uninitialized constant Bundler::URI::LDAPS::SCHEME -# Did you mean? Bundler::URI::SCHEME # uninitialized constant Bundler::URI::LDAPS::SCOPE # uninitialized constant Bundler::URI::LDAPS::SCOPE_BASE -# Did you mean? Bundler::URI::LDAPS::SCOPE_ONE # uninitialized constant Bundler::URI::LDAPS::SCOPE_ONE -# Did you mean? Bundler::URI::LDAPS::SCOPE_SUB -# Bundler::URI::LDAPS::SCOPE_BASE # uninitialized constant Bundler::URI::LDAPS::SCOPE_SUB -# Did you mean? Bundler::URI::LDAPS::SCOPE_ONE # uninitialized constant Bundler::URI::LDAPS::TBLDECWWWCOMP_ -# Did you mean? Bundler::URI::LDAPS::TBLENCWWWCOMP_ -# Bundler::URI::TBLDECWWWCOMP_ -# Bundler::URI::TBLENCWWWCOMP_ # uninitialized constant Bundler::URI::LDAPS::TBLENCWWWCOMP_ -# Did you mean? Bundler::URI::LDAPS::TBLDECWWWCOMP_ -# Bundler::URI::TBLDECWWWCOMP_ -# Bundler::URI::TBLENCWWWCOMP_ # uninitialized constant Bundler::URI::LDAPS::UNSAFE -# Did you mean? Bundler::URI::UNSAFE # uninitialized constant Bundler::URI::LDAPS::URI_REF -# Did you mean? Bundler::URI::URI_REF # uninitialized constant Bundler::URI::LDAPS::USERINFO -# Did you mean? Bundler::URI::USERINFO # uninitialized constant Bundler::URI::LDAPS::USE_REGISTRY # uninitialized constant Bundler::URI::LDAPS::VERSION -# Did you mean? Bundler::URI::VERSION -# Bundler::VERSION # uninitialized constant Bundler::URI::LDAPS::VERSION_CODE -# Did you mean? Bundler::URI::VERSION_CODE # uninitialized constant Bundler::URI::LDAPS::WEB_ENCODINGS_ -# Did you mean? Bundler::URI::WEB_ENCODINGS_ # wrong constant name # uninitialized constant Bundler::URI::MailTo::ABS_PATH -# Did you mean? Bundler::URI::ABS_PATH # uninitialized constant Bundler::URI::MailTo::ABS_URI -# Did you mean? Bundler::URI::ABS_URI # uninitialized constant Bundler::URI::MailTo::ABS_URI_REF -# Did you mean? Bundler::URI::ABS_URI_REF # uninitialized constant Bundler::URI::MailTo::DEFAULT_PARSER -# Did you mean? Bundler::URI::MailTo::DEFAULT_PORT -# Bundler::URI::DEFAULT_PARSER # uninitialized constant Bundler::URI::MailTo::ESCAPED -# Did you mean? Bundler::URI::MailTo::Escape -# Bundler::URI::Escape -# Bundler::URI::ESCAPED # uninitialized constant Bundler::URI::MailTo::FRAGMENT -# Did you mean? Bundler::URI::FRAGMENT # uninitialized constant Bundler::URI::MailTo::HOST -# Did you mean? Bundler::URI::HOST # uninitialized constant Bundler::URI::MailTo::OPAQUE -# Did you mean? Bundler::URI::OPAQUE # uninitialized constant Bundler::URI::MailTo::PORT -# Did you mean? Bundler::URI::PORT # uninitialized constant Bundler::URI::MailTo::QUERY -# Did you mean? Bundler::URI::QUERY # uninitialized constant Bundler::URI::MailTo::REGISTRY -# Did you mean? Bundler::URI::REGISTRY # uninitialized constant Bundler::URI::MailTo::REL_PATH -# Did you mean? Bundler::URI::REL_PATH # uninitialized constant Bundler::URI::MailTo::REL_URI -# Did you mean? Bundler::URI::REL_URI # uninitialized constant Bundler::URI::MailTo::REL_URI_REF -# Did you mean? Bundler::URI::REL_URI_REF # uninitialized constant Bundler::URI::MailTo::RFC3986_PARSER -# Did you mean? Bundler::URI::MailTo::RFC3986_Parser -# Bundler::URI::RFC3986_Parser -# Bundler::URI::RFC2396_Parser -# Bundler::URI::MailTo::RFC2396_Parser -# Bundler::URI::RFC3986_PARSER # uninitialized constant Bundler::URI::MailTo::SCHEME -# Did you mean? Bundler::URI::SCHEME # uninitialized constant Bundler::URI::MailTo::TBLDECWWWCOMP_ -# Did you mean? Bundler::URI::MailTo::TBLENCWWWCOMP_ -# Bundler::URI::TBLDECWWWCOMP_ -# Bundler::URI::TBLENCWWWCOMP_ # uninitialized constant Bundler::URI::MailTo::TBLENCWWWCOMP_ -# Did you mean? Bundler::URI::MailTo::TBLDECWWWCOMP_ -# Bundler::URI::TBLDECWWWCOMP_ -# Bundler::URI::TBLENCWWWCOMP_ # uninitialized constant Bundler::URI::MailTo::UNSAFE -# Did you mean? Bundler::URI::UNSAFE # uninitialized constant Bundler::URI::MailTo::URI_REF -# Did you mean? Bundler::URI::URI_REF # uninitialized constant Bundler::URI::MailTo::USERINFO -# Did you mean? Bundler::URI::USERINFO # uninitialized constant Bundler::URI::MailTo::USE_REGISTRY # uninitialized constant Bundler::URI::MailTo::VERSION -# Did you mean? Bundler::URI::VERSION -# Bundler::VERSION # uninitialized constant Bundler::URI::MailTo::VERSION_CODE -# Did you mean? Bundler::URI::VERSION_CODE # uninitialized constant Bundler::URI::MailTo::WEB_ENCODINGS_ -# Did you mean? Bundler::URI::WEB_ENCODINGS_ # wrong constant name headers # wrong constant name headers= # wrong constant name initialize @@ -1518,6 +1792,7 @@ # wrong constant name encode_www_form # wrong constant name encode_www_form_component # wrong constant name extract +# wrong constant name for # wrong constant name get_encoding # wrong constant name join # wrong constant name parse @@ -1558,8 +1833,14 @@ # wrong constant name empty? # wrong constant name for # wrong constant name for_many +# wrong constant name configure_gem_home_and_path +# wrong constant name create_bundle_path +# wrong constant name most_specific_locked_platform? # wrong constant name original_exec # wrong constant name original_system +# wrong constant name preferred_gemfile_name +# wrong constant name reset_settings_and_root! +# wrong constant name self_manager # wrong constant name unbundled_env # wrong constant name unbundled_exec # wrong constant name unbundled_system @@ -1598,10 +1879,8 @@ # uninitialized constant CodeRay::Scanners::Java::SCANNER_STATE_INFO # uninitialized constant CodeRay::Scanners::Java::SCAN_ERROR_MESSAGE # uninitialized constant CodeRay::Scanners::Java::Version -# Did you mean? CodeRay::VERSION # uninitialized constant CodeRay::Scanners::Scanner::Id # uninitialized constant CodeRay::Scanners::Scanner::Version -# Did you mean? CodeRay::VERSION # uninitialized constant Continuation # uninitialized constant Continuation # uninitialized constant Coverage @@ -1617,9 +1896,7 @@ # wrong constant name initialize # wrong constant name send_message # wrong constant name uri -# wrong constant name make_pool # wrong constant name open -# wrong constant name stop_pool # wrong constant name dump # wrong constant name initialize # wrong constant name load @@ -1676,104 +1953,41 @@ # wrong constant name _dump # wrong constant name initialize # wrong constant name _load -# wrong constant name _execute -# wrong constant name alive? -# wrong constant name initialize -# wrong constant name kill -# wrong constant name method_missing -# wrong constant name # wrong constant name mutex -# wrong constant name infinite? -# wrong constant name initialize -# wrong constant name class_name -# wrong constant name class_names -# wrong constant name corrections +# uninitialized constant Date::Error +# uninitialized constant Date::Error # wrong constant name initialize -# wrong constant name scopes -# wrong constant name call -# wrong constant name -# wrong constant name corrections -# wrong constant name original_message -# wrong constant name spell_checker -# wrong constant name to_s +# uninitialized constant DidYouMean::ClassNameChecker +# uninitialized constant DidYouMean::ClassNameChecker +# uninitialized constant DidYouMean::Correctable +# uninitialized constant DidYouMean::Correctable # uninitialized constant DidYouMean::Formatter # uninitialized constant DidYouMean::Formatter -# wrong constant name distance -# wrong constant name distance -# wrong constant name corrections -# wrong constant name initialize -# wrong constant name -# wrong constant name distance -# wrong constant name min3 -# wrong constant name corrections -# wrong constant name initialize -# wrong constant name method_name -# wrong constant name method_names -# wrong constant name names_to_exclude -# wrong constant name receiver -# wrong constant name corrections -# wrong constant name initialize -# wrong constant name call -# wrong constant name initialize -# wrong constant name -# wrong constant name message_for -# wrong constant name -# wrong constant name augment -# wrong constant name correct -# wrong constant name dictionary -# wrong constant name dimensions -# wrong constant name initialize -# wrong constant name separator -# wrong constant name -# wrong constant name corrections -# wrong constant name cvar_names -# wrong constant name initialize -# wrong constant name ivar_names -# wrong constant name lvar_names -# wrong constant name method_names -# wrong constant name name -# wrong constant name correct_error -# wrong constant name formatter -# wrong constant name formatter= -# wrong constant name children -# wrong constant name each_child +# uninitialized constant DidYouMean::Jaro +# uninitialized constant DidYouMean::Jaro +# uninitialized constant DidYouMean::JaroWinkler +# uninitialized constant DidYouMean::JaroWinkler +# uninitialized constant DidYouMean::Levenshtein +# uninitialized constant DidYouMean::Levenshtein +# uninitialized constant DidYouMean::MethodNameChecker +# uninitialized constant DidYouMean::MethodNameChecker +# uninitialized constant DidYouMean::NameErrorCheckers +# uninitialized constant DidYouMean::NameErrorCheckers +# uninitialized constant DidYouMean::NullChecker +# uninitialized constant DidYouMean::NullChecker +# uninitialized constant DidYouMean::SpellChecker +# uninitialized constant DidYouMean::SpellChecker +# uninitialized constant DidYouMean::VariableNameChecker +# uninitialized constant DidYouMean::VariableNameChecker # wrong constant name exists? # wrong constant name def_method # wrong constant name def_module # wrong constant name _dump # wrong constant name initialize # wrong constant name _load -# wrong constant name sum -# wrong constant name + -# wrong constant name -# wrong constant name -# wrong constant name # wrong constant name each_with_index -# uninitialized constant Enumerator::ArithmeticSequence::Elem -# wrong constant name begin -# wrong constant name each -# wrong constant name end -# wrong constant name exclude_end? -# wrong constant name last -# wrong constant name step -# wrong constant name -# uninitialized constant Enumerator::Chain::Elem -# wrong constant name # wrong constant name each # wrong constant name initialize -# wrong constant name eager -# wrong constant name each -# wrong constant name -# wrong constant name to_proc -# wrong constant name produce -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name # wrong constant name # wrong constant name # wrong constant name @@ -1785,6 +1999,8 @@ # wrong constant name # wrong constant name # wrong constant name +# uninitialized constant ErrorHighlight +# uninitialized constant ErrorHighlight # wrong constant name gid # wrong constant name gid= # wrong constant name mem @@ -1815,38 +2031,25 @@ # wrong constant name each # wrong constant name members # wrong constant name -# uninitialized constant Exception2MessageMapper -# uninitialized constant Exception2MessageMapper # wrong constant name +# wrong constant name # wrong constant name # wrong constant name # uninitialized constant Faraday::Adapter::Excon::CONTENT_LENGTH -# Did you mean? Faraday::Adapter::CONTENT_LENGTH # uninitialized constant Faraday::Adapter::Excon::TIMEOUT_KEYS -# Did you mean? Faraday::Adapter::TIMEOUT_KEYS # uninitialized constant Faraday::Adapter::NetHttp::CONTENT_LENGTH -# Did you mean? Faraday::Adapter::CONTENT_LENGTH # uninitialized constant Faraday::Adapter::NetHttp::TIMEOUT_KEYS -# Did you mean? Faraday::Adapter::TIMEOUT_KEYS # uninitialized constant Faraday::Adapter::NetHttpPersistent::CONTENT_LENGTH -# Did you mean? Faraday::Adapter::CONTENT_LENGTH # uninitialized constant Faraday::Adapter::NetHttpPersistent::NET_HTTP_EXCEPTIONS # uninitialized constant Faraday::Adapter::NetHttpPersistent::TIMEOUT_KEYS -# Did you mean? Faraday::Adapter::TIMEOUT_KEYS # uninitialized constant Faraday::Adapter::Patron::CONTENT_LENGTH -# Did you mean? Faraday::Adapter::CONTENT_LENGTH # uninitialized constant Faraday::Adapter::Patron::TIMEOUT_KEYS -# Did you mean? Faraday::Adapter::TIMEOUT_KEYS # uninitialized constant Faraday::Adapter::Rack::CONTENT_LENGTH -# Did you mean? Faraday::Adapter::CONTENT_LENGTH # uninitialized constant Faraday::Adapter::Rack::TIMEOUT_KEYS -# Did you mean? Faraday::Adapter::TIMEOUT_KEYS # uninitialized constant Faraday::Adapter::Test::CONTENT_LENGTH -# Did you mean? Faraday::Adapter::CONTENT_LENGTH # wrong constant name # wrong constant name # uninitialized constant Faraday::Adapter::Test::TIMEOUT_KEYS -# Did you mean? Faraday::Adapter::TIMEOUT_KEYS # wrong constant name configure # wrong constant name initialize # wrong constant name stubs @@ -1875,9 +2078,7 @@ # wrong constant name # wrong constant name # uninitialized constant Faraday::Adapter::Typhoeus::CONTENT_LENGTH -# Did you mean? Faraday::Adapter::CONTENT_LENGTH # uninitialized constant Faraday::Adapter::Typhoeus::TIMEOUT_KEYS -# Did you mean? Faraday::Adapter::TIMEOUT_KEYS # wrong constant name call # wrong constant name # uninitialized constant Faraday::Multipart::Middleware::CONTENT_TYPE @@ -1893,62 +2094,49 @@ # wrong constant name initialize # wrong constant name # wrong constant name -# uninitialized constant Faraday::Request::Multipart::CONTENT_TYPE +# uninitialized constant Faraday::Request::TokenAuthentication::KEY +# wrong constant name initialize +# wrong constant name +# wrong constant name header +# wrong constant name initialize +# wrong constant name +# wrong constant name # wrong constant name # wrong constant name build_exception_matcher # wrong constant name calculate_sleep_amount # wrong constant name initialize # wrong constant name # wrong constant name -# uninitialized constant Faraday::Request::TokenAuthentication::KEY -# wrong constant name initialize -# wrong constant name -# wrong constant name header -# wrong constant name initialize # wrong constant name # uninitialized constant Fcntl # uninitialized constant Fcntl -# wrong constant name initialize # wrong constant name transfer # wrong constant name current # uninitialized constant Fiddle -# Did you mean? File # uninitialized constant Fiddle -# Did you mean? File -# wrong constant name absolute_path? # wrong constant name cleanpath # wrong constant name exists? # wrong constant name open! # wrong constant name read_binary # wrong constant name relative_path # uninitialized constant FileUtils::DryRun::LN_SUPPORTED -# Did you mean? FileUtils::LN_SUPPORTED # uninitialized constant FileUtils::DryRun::RUBY -# Did you mean? FileUtils::RUBY # uninitialized constant FileUtils::DryRun::VERSION -# Did you mean? FileUtils::VERSION # uninitialized constant FileUtils::NoWrite::LN_SUPPORTED -# Did you mean? FileUtils::LN_SUPPORTED # uninitialized constant FileUtils::NoWrite::RUBY -# Did you mean? FileUtils::RUBY # uninitialized constant FileUtils::NoWrite::VERSION -# Did you mean? FileUtils::VERSION # uninitialized constant FileUtils::Verbose::LN_SUPPORTED -# Did you mean? FileUtils::LN_SUPPORTED # uninitialized constant FileUtils::Verbose::RUBY -# Did you mean? FileUtils::RUBY # uninitialized constant FileUtils::Verbose::VERSION -# Did you mean? FileUtils::VERSION # uninitialized constant Find # uninitialized constant Find +# wrong constant name # wrong constant name _compile_method # wrong constant name _delegator_method # wrong constant name _valid_method? # wrong constant name debug # wrong constant name debug= -# wrong constant name receiver # wrong constant name garbage_collect -# wrong constant name verify_transient_heap_internal_consistency # uninitialized constant GDBM # uninitialized constant GDBM # uninitialized constant GDBMError @@ -1957,103 +2145,35 @@ # uninitialized constant GDBMFatalError # wrong constant name # wrong constant name -# wrong constant name -# wrong constant name +# uninitialized constant Gem::AvailableSet +# uninitialized constant Gem::AvailableSet +# wrong constant name <=> +# wrong constant name force_ruby_platform +# uninitialized constant Gem::DependencyInstaller +# uninitialized constant Gem::DependencyInstaller # wrong constant name +# wrong constant name redirector # uninitialized constant Gem::Ext::ExtConfBuilder::CHDIR_MONITOR # uninitialized constant Gem::Ext::ExtConfBuilder::CHDIR_MUTEX # wrong constant name # wrong constant name build # wrong constant name get_relative_path -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name gem -# wrong constant name digests -# wrong constant name initialize -# wrong constant name write -# wrong constant name -# wrong constant name wrap -# wrong constant name initialize -# wrong constant name path -# wrong constant name present? -# wrong constant name start -# wrong constant name with_read_io -# wrong constant name with_write_io -# wrong constant name -# wrong constant name initialize -# wrong constant name io -# wrong constant name path -# wrong constant name present? -# wrong constant name start -# wrong constant name with_read_io -# wrong constant name with_write_io -# wrong constant name +# wrong constant name copy_to # wrong constant name extract_files -# wrong constant name file_list -# wrong constant name read_until_dashes -# wrong constant name skip_ruby -# wrong constant name -# wrong constant name -# wrong constant name == -# wrong constant name checksum -# wrong constant name devmajor -# wrong constant name devminor -# wrong constant name empty? -# wrong constant name gid -# wrong constant name gname # wrong constant name initialize -# wrong constant name linkname -# wrong constant name magic -# wrong constant name mode -# wrong constant name mtime -# wrong constant name name -# wrong constant name prefix -# wrong constant name size -# wrong constant name typeflag -# wrong constant name uid -# wrong constant name uname -# wrong constant name update_checksum -# wrong constant name version -# wrong constant name -# wrong constant name from -# wrong constant name oct_or_256based -# wrong constant name strict_oct -# wrong constant name bytes_read -# wrong constant name check_closed -# wrong constant name close -# wrong constant name closed? -# wrong constant name directory? -# wrong constant name eof? -# wrong constant name file? -# wrong constant name full_name -# wrong constant name getc -# wrong constant name header -# wrong constant name initialize -# wrong constant name length -# wrong constant name pos -# wrong constant name read -# wrong constant name readpartial -# wrong constant name rewind -# wrong constant name size -# wrong constant name symlink? +# wrong constant name spec +# wrong constant name spec= # wrong constant name -# wrong constant name new -# wrong constant name new -# wrong constant name new -# wrong constant name raw_spec # wrong constant name home # wrong constant name initialize # wrong constant name path # wrong constant name spec_cache_dir -# wrong constant name initialize -# wrong constant name uri -# wrong constant name uri= -# wrong constant name +# wrong constant name match_gem? +# wrong constant name match_spec? +# wrong constant name +# wrong constant name hash # wrong constant name +# wrong constant name others_possible? # wrong constant name # wrong constant name # wrong constant name add_edge_no_circular @@ -2071,65 +2191,10 @@ # wrong constant name suggestion # wrong constant name suggestion= # wrong constant name -# wrong constant name -# wrong constant name check_cert -# wrong constant name check_chain -# wrong constant name check_data -# wrong constant name check_key -# wrong constant name check_root -# wrong constant name check_trust -# wrong constant name initialize -# wrong constant name name -# wrong constant name only_signed -# wrong constant name only_signed= -# wrong constant name only_trusted -# wrong constant name only_trusted= -# wrong constant name subject -# wrong constant name verify -# wrong constant name verify_chain -# wrong constant name verify_chain= -# wrong constant name verify_data -# wrong constant name verify_data= -# wrong constant name verify_root -# wrong constant name verify_root= -# wrong constant name verify_signatures -# wrong constant name verify_signer -# wrong constant name verify_signer= -# wrong constant name -# wrong constant name cert_chain -# wrong constant name cert_chain= -# wrong constant name digest_algorithm -# wrong constant name digest_name -# wrong constant name extract_name -# wrong constant name initialize -# wrong constant name key -# wrong constant name key= -# wrong constant name load_cert_chain -# wrong constant name options -# wrong constant name re_sign_key -# wrong constant name sign -# wrong constant name re_sign_cert -# wrong constant name cert_path -# wrong constant name dir -# wrong constant name each_certificate -# wrong constant name initialize -# wrong constant name issuer_of -# wrong constant name load_certificate -# wrong constant name name_path -# wrong constant name trust_cert -# wrong constant name verify -# wrong constant name alt_name_or_x509_entry -# wrong constant name create_cert -# wrong constant name create_cert_email -# wrong constant name create_cert_self_signed -# wrong constant name create_key -# wrong constant name email_to_name -# wrong constant name re_sign -# wrong constant name reset -# wrong constant name sign -# wrong constant name trust_dir -# wrong constant name trusted_certificates -# wrong constant name write +# uninitialized constant Gem::S3URISigner +# uninitialized constant Gem::S3URISigner +# wrong constant name <=> +# wrong constant name api_uri # wrong constant name available_specs # wrong constant name detect # wrong constant name initialize @@ -2147,21 +2212,20 @@ # wrong constant name <=> # uninitialized constant Gem::Specification::GENERICS # uninitialized constant Gem::Specification::GENERIC_CACHE -# wrong constant name removed_method_calls +# wrong constant name +# wrong constant name bundled_gem_in_old_ruby? +# wrong constant name deleted_gem? +# wrong constant name rg_required_ruby_version= +# wrong constant name rubyforge_project # wrong constant name to_ruby -# wrong constant name initialize -# wrong constant name packaging -# wrong constant name packaging= -# wrong constant name validate -# wrong constant name validate_dependencies -# wrong constant name validate_metadata -# wrong constant name validate_permissions +# wrong constant name warning +# wrong constant name to_yaml # wrong constant name +# wrong constant name add_spec +# wrong constant name add_specs +# wrong constant name remove_spec # uninitialized constant Gem::Stream -# Did you mean? Gem::StreamUI # uninitialized constant Gem::Stream -# Did you mean? Gem::StreamUI -# wrong constant name _deprecated_debug # wrong constant name build_extensions # wrong constant name extensions # wrong constant name initialize @@ -2176,23 +2240,23 @@ # wrong constant name version # wrong constant name default_gemspec_stub # wrong constant name gemspec_stub -# wrong constant name spec -# wrong constant name spec= -# wrong constant name -# wrong constant name activated_gem_paths +# uninitialized constant Gem::UriParser +# uninitialized constant Gem::UriParser +# uninitialized constant Gem::UriParsing +# uninitialized constant Gem::UriParsing +# wrong constant name _deprecated_datadir +# wrong constant name default_gems_use_full_paths? +# wrong constant name remove_unresolved_default_spec # uninitialized constant GetoptLong # uninitialized constant GetoptLong -# wrong constant name deconstruct_keys # wrong constant name ruby2_keywords_hash # wrong constant name ruby2_keywords_hash? -# wrong constant name try_convert # wrong constant name nonblock # wrong constant name nonblock= # wrong constant name nonblock? # wrong constant name nread # wrong constant name pathconf # wrong constant name ready? -# wrong constant name set_encoding_by_bom # wrong constant name wait # wrong constant name wait_readable # wrong constant name wait_writable @@ -2211,23 +2275,17 @@ # uninitialized constant IRB::InputMethod # uninitialized constant IRB::InputMethod # uninitialized constant IRB::Inspector -# Did you mean? Insertion # uninitialized constant IRB::Inspector -# Did you mean? Insertion # uninitialized constant IRB::Irb -# Did you mean? DRb -# ERB # uninitialized constant IRB::Irb -# Did you mean? DRb -# ERB # uninitialized constant IRB::MethodExtender # uninitialized constant IRB::MethodExtender # uninitialized constant IRB::ReadlineInputMethod # uninitialized constant IRB::ReadlineInputMethod +# uninitialized constant IRB::ReidlineInputMethod +# uninitialized constant IRB::ReidlineInputMethod # uninitialized constant IRB::StdioInputMethod -# Did you mean? IRB::StdioOutputMethod # uninitialized constant IRB::StdioInputMethod -# Did you mean? IRB::StdioOutputMethod # uninitialized constant IRB::WorkSpace # uninitialized constant IRB::WorkSpace # wrong constant name to_bn @@ -2237,48 +2295,73 @@ # uninitialized constant Jacobian # uninitialized constant Kconv # uninitialized constant Kconv -# wrong constant name itself -# wrong constant name object_id # wrong constant name pretty_inspect -# wrong constant name then -# wrong constant name yield_self # wrong constant name at_exit # uninitialized constant LUSolve # uninitialized constant LUSolve -# wrong constant name debug! -# wrong constant name error! -# wrong constant name fatal! -# wrong constant name info! -# wrong constant name warn! +# uninitialized constant Logger::LogDevice::EXCEPTION_IMMEDIATE +# uninitialized constant Logger::LogDevice::EXCEPTION_NEVER # uninitialized constant Logger::LogDevice::SiD +# wrong constant name ansicolor= +# wrong constant name ansicolor? # uninitialized constant Matrix # uninitialized constant Matrix # uninitialized constant MessagePack # uninitialized constant MessagePack +# uninitialized constant Monitor::EXCEPTION_IMMEDIATE +# uninitialized constant Monitor::EXCEPTION_NEVER # wrong constant name enter # wrong constant name exit -# wrong constant name mon_check_owner -# wrong constant name mon_enter -# wrong constant name mon_exit -# wrong constant name mon_locked? -# wrong constant name mon_owned? -# wrong constant name mon_synchronize -# wrong constant name mon_try_enter -# wrong constant name new_cond -# wrong constant name synchronize # wrong constant name try_enter -# wrong constant name try_mon_enter -# wrong constant name wait_for_cond # wrong constant name initialize # wrong constant name initialize -# uninitialized constant MonitorMixin::ConditionVariable::Timeout -# uninitialized constant MonitorMixin::ConditionVariable::Timeout +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name initialize +# wrong constant name read +# wrong constant name rewind +# wrong constant name +# wrong constant name boundary +# wrong constant name initialize +# wrong constant name +# wrong constant name secure_boundary +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name initialize +# wrong constant name +# wrong constant name build_head +# wrong constant name initialize +# wrong constant name +# wrong constant name build_part +# wrong constant name initialize +# wrong constant name +# wrong constant name length +# wrong constant name to_io +# wrong constant name +# wrong constant name file? +# wrong constant name new +# wrong constant name +# wrong constant name content_type +# wrong constant name initialize +# wrong constant name io +# wrong constant name local_path +# wrong constant name method_missing +# wrong constant name opts +# wrong constant name original_filename +# wrong constant name respond_to? +# wrong constant name +# wrong constant name convert! +# wrong constant name +# wrong constant name # uninitialized constant Mutex_m # uninitialized constant Mutex_m # uninitialized constant NKF # uninitialized constant NKF -# wrong constant name write_timeout -# wrong constant name write_timeout= # uninitialized constant Net::DNS # uninitialized constant Net::DNS # uninitialized constant Net::FTP @@ -2286,39 +2369,28 @@ # uninitialized constant Net::FTPConnectionError # uninitialized constant Net::FTPConnectionError # uninitialized constant Net::FTPError -# Did you mean? Net::HTTPError # uninitialized constant Net::FTPError -# Did you mean? Net::HTTPError # uninitialized constant Net::FTPPermError -# Did you mean? FiberError # uninitialized constant Net::FTPPermError -# Did you mean? FiberError # uninitialized constant Net::FTPProtoError # uninitialized constant Net::FTPProtoError # uninitialized constant Net::FTPReplyError # uninitialized constant Net::FTPReplyError # uninitialized constant Net::FTPTempError -# Did you mean? TypeError # uninitialized constant Net::FTPTempError -# Did you mean? TypeError -# wrong constant name ipaddr -# wrong constant name ipaddr= # wrong constant name max_retries # wrong constant name max_retries= # wrong constant name max_version # wrong constant name max_version= # wrong constant name min_version # wrong constant name min_version= -# wrong constant name write_timeout -# wrong constant name write_timeout= # uninitialized constant Net::HTTP::DigestAuth # uninitialized constant Net::HTTP::DigestAuth # uninitialized constant Net::HTTPAlreadyReported::CODE_CLASS_TO_OBJ # uninitialized constant Net::HTTPAlreadyReported::CODE_TO_OBJ # wrong constant name -# uninitialized constant Net::HTTPEarlyHints::CODE_CLASS_TO_OBJ -# uninitialized constant Net::HTTPEarlyHints::CODE_TO_OBJ -# wrong constant name +# uninitialized constant Net::HTTPGatewayTimeout +# uninitialized constant Net::HTTPGatewayTimeout # uninitialized constant Net::HTTPLoopDetected::CODE_CLASS_TO_OBJ # uninitialized constant Net::HTTPLoopDetected::CODE_TO_OBJ # wrong constant name @@ -2328,18 +2400,11 @@ # uninitialized constant Net::HTTPNotExtended::CODE_CLASS_TO_OBJ # uninitialized constant Net::HTTPNotExtended::CODE_TO_OBJ # wrong constant name -# uninitialized constant Net::HTTPPayloadTooLarge::CODE_CLASS_TO_OBJ -# uninitialized constant Net::HTTPPayloadTooLarge::CODE_TO_OBJ -# wrong constant name # uninitialized constant Net::HTTPProcessing::CODE_CLASS_TO_OBJ # uninitialized constant Net::HTTPProcessing::CODE_TO_OBJ # wrong constant name -# uninitialized constant Net::HTTPRangeNotSatisfiable::CODE_CLASS_TO_OBJ -# uninitialized constant Net::HTTPRangeNotSatisfiable::CODE_TO_OBJ -# wrong constant name -# uninitialized constant Net::HTTPURITooLong::CODE_CLASS_TO_OBJ -# uninitialized constant Net::HTTPURITooLong::CODE_TO_OBJ -# wrong constant name +# uninitialized constant Net::HTTPRequestTimeout +# uninitialized constant Net::HTTPRequestTimeout # uninitialized constant Net::HTTPVariantAlsoNegotiates::CODE_CLASS_TO_OBJ # uninitialized constant Net::HTTPVariantAlsoNegotiates::CODE_TO_OBJ # wrong constant name @@ -2347,45 +2412,32 @@ # uninitialized constant Net::IMAP # uninitialized constant Net::NTLM # uninitialized constant Net::NTLM -# wrong constant name initialize -# wrong constant name io # uninitialized constant Net::SMTP # uninitialized constant Net::SMTP # uninitialized constant Net::SMTPAuthenticationError # uninitialized constant Net::SMTPAuthenticationError # uninitialized constant Net::SMTPError -# Did you mean? Net::HTTPError # uninitialized constant Net::SMTPError -# Did you mean? Net::HTTPError # uninitialized constant Net::SMTPFatalError -# Did you mean? Net::ProtoFatalError -# Net::HTTPFatalError # uninitialized constant Net::SMTPFatalError -# Did you mean? Net::ProtoFatalError -# Net::HTTPFatalError # uninitialized constant Net::SMTPServerBusy # uninitialized constant Net::SMTPServerBusy # uninitialized constant Net::SMTPSyntaxError -# Did you mean? Net::ProtoSyntaxError # uninitialized constant Net::SMTPSyntaxError -# Did you mean? Net::ProtoSyntaxError # uninitialized constant Net::SMTPUnknownError # uninitialized constant Net::SMTPUnknownError # uninitialized constant Net::SMTPUnsupportedCommand # uninitialized constant Net::SMTPUnsupportedCommand -# wrong constant name initialize -# wrong constant name io +# uninitialized constant Net::WriteTimeout +# uninitialized constant Net::WriteTimeout # uninitialized constant Newton # uninitialized constant Newton -# wrong constant name # uninitialized constant RUBYGEMS_ACTIVATION_MONITOR # wrong constant name # uninitialized constant Observable # uninitialized constant Observable # uninitialized constant Open3 -# Did you mean? OpenURI # uninitialized constant Open3 -# Did you mean? OpenURI # wrong constant name indefinite_length # wrong constant name indefinite_length= # wrong constant name +@ @@ -2397,9 +2449,7 @@ # uninitialized constant OpenSSL::Digest::DSS1 # uninitialized constant OpenSSL::Digest::DSS1 # uninitialized constant OpenSSL::Digest::SHA -# Did you mean? OpenSSL::Digest::SHA1 # uninitialized constant OpenSSL::Digest::SHA -# Did you mean? OpenSSL::Digest::SHA1 # wrong constant name # wrong constant name # wrong constant name @@ -2445,25 +2495,15 @@ # wrong constant name open_uri # wrong constant name redirectable? # wrong constant name scan_open_optional_arguments -# wrong constant name additional_message -# wrong constant name get_candidates -# wrong constant name additional -# wrong constant name additional= -# uninitialized constant Opus -# uninitialized constant Opus # uninitialized constant PStore # uninitialized constant PStore # uninitialized constant PTY -# Did you mean? Pry # uninitialized constant PTY -# Did you mean? Pry # uninitialized constant PackageSpec # uninitialized constant PackageSpec # wrong constant name # uninitialized constant Prime # uninitialized constant Prime -# wrong constant name << -# wrong constant name >> # wrong constant name clone # uninitialized constant Proc0 # uninitialized constant Proc0 @@ -2490,32 +2530,35 @@ # uninitialized constant Pry::BasicObject::RUBYGEMS_ACTIVATION_MONITOR # uninitialized constant Pry::Command::COLORS # uninitialized constant Pry::Command::Ls::COLORS -# Did you mean? Pry::Command::COLORS # uninitialized constant Pry::Command::Ls::VOID_VALUE -# Did you mean? Pry::Command::VOID_VALUE # uninitialized constant Pry::Command::Wtf::COLORS -# Did you mean? Pry::Command::COLORS # uninitialized constant Pry::Command::Wtf::VOID_VALUE -# Did you mean? Pry::Command::VOID_VALUE # uninitialized constant Psych # uninitialized constant Psych -# uninitialized constant RDoc::Constant::RDoc -# Did you mean? RDoc::RDoc -# uninitialized constant RDoc::Constant::RDoc -# Did you mean? RDoc::RDoc -# uninitialized constant RDoc::Markup::Special -# uninitialized constant RDoc::Markup::Special -# uninitialized constant RDoc::RipperStateLex -# uninitialized constant RDoc::RipperStateLex -# wrong constant name language -# wrong constant name language= # uninitialized constant REXML # uninitialized constant REXML # uninitialized constant RSpec::Core::ExampleGroup::NOT_YET_IMPLEMENTED # uninitialized constant RSpec::Core::ExampleGroup::NO_REASON_GIVEN +# wrong constant name order +# wrong constant name +# wrong constant name rspec_is_quitting +# wrong constant name rspec_is_quitting= +# wrong constant name +# wrong constant name supports_value_expectations? # uninitialized constant RSpec::Matchers::BuiltIn::BePredicate::UNDEFINED +# wrong constant name # uninitialized constant RSpec::Matchers::BuiltIn::Equal::UNDEFINED # uninitialized constant RSpec::Matchers::BuiltIn::Has::UNDEFINED +# wrong constant name supports_value_expectations? +# wrong constant name supports_value_expectations? +# wrong constant name supports_value_expectations? +# wrong constant name +# wrong constant name call +# wrong constant name initialize +# wrong constant name +# wrong constant name and_invoke +# wrong constant name and_invoke +# wrong constant name and_invoke # wrong constant name # wrong constant name color? # wrong constant name diff @@ -2523,9 +2566,124 @@ # wrong constant name diff_as_string # wrong constant name initialize # wrong constant name +# wrong constant name current_scope +# wrong constant name current_scope= +# wrong constant name +# wrong constant name # wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name initialize +# wrong constant name realm +# wrong constant name realm= +# wrong constant name +# wrong constant name initialize +# wrong constant name params +# wrong constant name parts +# wrong constant name provided? +# wrong constant name request +# wrong constant name scheme +# wrong constant name valid? +# wrong constant name +# wrong constant name +# wrong constant name call +# uninitialized constant Rack::Auth::Basic::Request::AUTHORIZATION_KEYS +# wrong constant name basic? +# wrong constant name credentials +# wrong constant name username +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name # wrong constant name # wrong constant name call +# wrong constant name initialize +# wrong constant name opaque +# wrong constant name opaque= +# wrong constant name passwords_hashed= +# wrong constant name passwords_hashed? +# wrong constant name +# wrong constant name digest +# wrong constant name fresh? +# wrong constant name initialize +# wrong constant name stale? +# wrong constant name valid? +# wrong constant name +# wrong constant name parse +# wrong constant name private_key +# wrong constant name private_key= +# wrong constant name time_limit +# wrong constant name time_limit= +# uninitialized constant Rack::Auth::Digest::Params::Elem +# uninitialized constant Rack::Auth::Digest::Params::K +# uninitialized constant Rack::Auth::Digest::Params::V +# wrong constant name [] +# wrong constant name []= +# wrong constant name initialize +# wrong constant name quote +# wrong constant name +# wrong constant name dequote +# wrong constant name parse +# wrong constant name split_header_value +# uninitialized constant Rack::Auth::Digest::Request::AUTHORIZATION_KEYS +# wrong constant name correct_uri? +# wrong constant name digest? +# wrong constant name method +# wrong constant name method_missing +# wrong constant name nonce +# wrong constant name respond_to? +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name close +# wrong constant name closed? +# wrong constant name initialize +# wrong constant name method_missing +# wrong constant name +# wrong constant name call # wrong constant name freeze_app # wrong constant name initialize # wrong constant name map @@ -2538,6 +2696,140 @@ # wrong constant name load_file # wrong constant name new_from_string # wrong constant name parse_file +# wrong constant name << +# wrong constant name add +# wrong constant name apps +# wrong constant name call +# wrong constant name include? +# wrong constant name initialize +# wrong constant name +# wrong constant name +# uninitialized constant Rack::Chunked::COMMON_SEP +# uninitialized constant Rack::Chunked::DEFAULT_SEP +# uninitialized constant Rack::Chunked::ESCAPE_HTML +# uninitialized constant Rack::Chunked::ESCAPE_HTML_PATTERN +# uninitialized constant Rack::Chunked::HTTP_STATUS_CODES +# uninitialized constant Rack::Chunked::NULL_BYTE +# uninitialized constant Rack::Chunked::PATH_SEPS +# uninitialized constant Rack::Chunked::STATUS_WITH_NO_ENTITY_BODY +# uninitialized constant Rack::Chunked::SYMBOL_TO_STATUS_CODE +# wrong constant name +# wrong constant name call +# wrong constant name chunkable_version? +# wrong constant name initialize +# wrong constant name close +# wrong constant name each +# wrong constant name initialize +# wrong constant name +# uninitialized constant Rack::Chunked::TrailerBody::TAIL +# uninitialized constant Rack::Chunked::TrailerBody::TERM +# wrong constant name +# wrong constant name +# wrong constant name call +# wrong constant name initialize +# wrong constant name +# wrong constant name call +# wrong constant name initialize +# wrong constant name +# wrong constant name call +# wrong constant name initialize +# wrong constant name +# uninitialized constant Rack::ContentLength::COMMON_SEP +# uninitialized constant Rack::ContentLength::DEFAULT_SEP +# uninitialized constant Rack::ContentLength::ESCAPE_HTML +# uninitialized constant Rack::ContentLength::ESCAPE_HTML_PATTERN +# uninitialized constant Rack::ContentLength::HTTP_STATUS_CODES +# uninitialized constant Rack::ContentLength::NULL_BYTE +# uninitialized constant Rack::ContentLength::PATH_SEPS +# uninitialized constant Rack::ContentLength::STATUS_WITH_NO_ENTITY_BODY +# uninitialized constant Rack::ContentLength::SYMBOL_TO_STATUS_CODE +# wrong constant name call +# wrong constant name initialize +# wrong constant name +# uninitialized constant Rack::ContentType::COMMON_SEP +# uninitialized constant Rack::ContentType::DEFAULT_SEP +# uninitialized constant Rack::ContentType::ESCAPE_HTML +# uninitialized constant Rack::ContentType::ESCAPE_HTML_PATTERN +# uninitialized constant Rack::ContentType::HTTP_STATUS_CODES +# uninitialized constant Rack::ContentType::NULL_BYTE +# uninitialized constant Rack::ContentType::PATH_SEPS +# uninitialized constant Rack::ContentType::STATUS_WITH_NO_ENTITY_BODY +# uninitialized constant Rack::ContentType::SYMBOL_TO_STATUS_CODE +# wrong constant name call +# wrong constant name initialize +# wrong constant name +# wrong constant name +# wrong constant name call +# wrong constant name initialize +# wrong constant name close +# wrong constant name each +# wrong constant name initialize +# wrong constant name write +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name call +# wrong constant name check_bad_request +# wrong constant name check_forbidden +# wrong constant name entity_not_found +# wrong constant name filesize_format +# wrong constant name get +# wrong constant name initialize +# wrong constant name list_directory +# wrong constant name list_path +# wrong constant name root +# wrong constant name stat +# wrong constant name +# wrong constant name +# wrong constant name call +# wrong constant name initialize +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name call +# wrong constant name initialize +# wrong constant name on_commit +# wrong constant name on_error +# wrong constant name on_finish +# wrong constant name on_send +# wrong constant name on_start +# wrong constant name +# wrong constant name body +# wrong constant name initialize +# wrong constant name to_a +# wrong constant name +# wrong constant name each +# wrong constant name initialize +# wrong constant name request +# wrong constant name response +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name call +# wrong constant name get +# wrong constant name initialize +# wrong constant name root +# wrong constant name serving +# wrong constant name bytesize +# wrong constant name close +# wrong constant name each +# wrong constant name initialize +# wrong constant name options +# wrong constant name path +# wrong constant name ranges +# wrong constant name +# wrong constant name to_path +# wrong constant name +# wrong constant name +# wrong constant name method_added +# wrong constant name env +# wrong constant name initialize +# wrong constant name url +# wrong constant name +# wrong constant name +# wrong constant name # wrong constant name # wrong constant name run # wrong constant name send_body @@ -2548,11 +2840,160 @@ # wrong constant name run # wrong constant name shutdown # wrong constant name valid_options +# wrong constant name +# wrong constant name default +# wrong constant name get +# wrong constant name pick +# wrong constant name register +# wrong constant name try_require +# wrong constant name call +# wrong constant name initialize +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name _call +# wrong constant name call +# wrong constant name check_content_length +# wrong constant name check_content_type +# wrong constant name check_env +# wrong constant name check_error +# wrong constant name check_headers +# wrong constant name check_hijack +# wrong constant name check_hijack_response +# wrong constant name check_input +# wrong constant name check_status +# wrong constant name close +# wrong constant name each +# wrong constant name initialize +# wrong constant name verify_content_length +# wrong constant name assert +# wrong constant name +# wrong constant name close +# wrong constant name flush +# wrong constant name initialize +# wrong constant name puts +# wrong constant name write +# wrong constant name +# wrong constant name close +# wrong constant name close_read +# wrong constant name close_write +# wrong constant name closed? +# wrong constant name flush +# wrong constant name initialize +# wrong constant name read +# wrong constant name read_nonblock +# wrong constant name write +# wrong constant name write_nonblock +# wrong constant name +# wrong constant name close +# wrong constant name each +# wrong constant name gets +# wrong constant name initialize +# wrong constant name read +# wrong constant name rewind +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name call +# wrong constant name initialize +# wrong constant name +# wrong constant name call +# wrong constant name initialize +# wrong constant name +# wrong constant name +# wrong constant name params +# wrong constant name type +# wrong constant name call +# wrong constant name initialize +# wrong constant name method_override +# wrong constant name +# wrong constant name +# wrong constant name match? +# wrong constant name mime_type +# wrong constant name +# wrong constant name +# wrong constant name delete +# wrong constant name get +# wrong constant name head +# wrong constant name initialize +# wrong constant name options +# wrong constant name patch +# wrong constant name post +# wrong constant name put +# wrong constant name request +# wrong constant name flush +# wrong constant name puts +# wrong constant name string +# wrong constant name write +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name env_for +# wrong constant name parse_uri_rfc2396 +# wrong constant name =~ +# uninitialized constant Rack::MockResponse::CHUNKED +# uninitialized constant Rack::MockResponse::STATUS_WITH_NO_ENTITY_BODY +# wrong constant name cookie +# wrong constant name cookies +# wrong constant name errors +# wrong constant name errors= +# wrong constant name initialize +# wrong constant name match +# wrong constant name original_headers +# wrong constant name +# wrong constant name [] # wrong constant name +# wrong constant name +# wrong constant name # wrong constant name # wrong constant name dump # wrong constant name initialize # wrong constant name +# uninitialized constant Rack::Multipart::MultipartPartLimitError::Errno +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name initialize +# wrong constant name on_read +# wrong constant name result +# wrong constant name state +# wrong constant name initialize +# wrong constant name read +# wrong constant name rewind +# wrong constant name +# wrong constant name +# uninitialized constant Rack::Multipart::Parser::Collector::Elem +# wrong constant name +# wrong constant name +# wrong constant name each +# wrong constant name initialize +# wrong constant name on_mime_body +# wrong constant name on_mime_finish +# wrong constant name on_mime_head +# wrong constant name close +# wrong constant name file? +# wrong constant name +# wrong constant name get_data +# wrong constant name +# wrong constant name close +# wrong constant name file? +# wrong constant name +# wrong constant name +# uninitialized constant Rack::Multipart::Parser::MultipartInfo::Elem +# wrong constant name params +# wrong constant name params= +# wrong constant name tmp_files +# wrong constant name tmp_files= +# wrong constant name +# wrong constant name [] +# wrong constant name members +# wrong constant name +# wrong constant name parse +# wrong constant name parse_boundary # wrong constant name content_type # wrong constant name content_type= # wrong constant name initialize @@ -2562,44 +3003,78 @@ # wrong constant name path # wrong constant name respond_to? # wrong constant name +# wrong constant name +# wrong constant name build_multipart +# wrong constant name extract_multipart +# wrong constant name parse_multipart +# wrong constant name << +# wrong constant name add +# wrong constant name call +# wrong constant name close +# wrong constant name datetime_format +# wrong constant name datetime_format= +# wrong constant name debug +# wrong constant name debug? +# wrong constant name error +# wrong constant name error? +# wrong constant name fatal +# wrong constant name fatal? +# wrong constant name formatter +# wrong constant name formatter= +# wrong constant name info +# wrong constant name info? +# wrong constant name initialize +# wrong constant name level +# wrong constant name level= +# wrong constant name progname +# wrong constant name progname= +# wrong constant name sev_threshold +# wrong constant name sev_threshold= +# wrong constant name unknown +# wrong constant name warn +# wrong constant name warn? +# wrong constant name +# wrong constant name initialize +# wrong constant name key_space_limit +# wrong constant name make_params +# wrong constant name new_depth_limit +# wrong constant name new_space_limit +# wrong constant name normalize_params +# wrong constant name param_depth_limit +# wrong constant name parse_nested_query +# wrong constant name parse_query +# wrong constant name [] +# wrong constant name []= +# wrong constant name initialize +# wrong constant name key? +# wrong constant name to_h +# wrong constant name to_params_hash +# wrong constant name +# wrong constant name make_default +# wrong constant name _call +# wrong constant name call +# wrong constant name include +# wrong constant name initialize +# wrong constant name +# wrong constant name +# wrong constant name call +# wrong constant name initialize +# wrong constant name reload! +# wrong constant name safe_load +# wrong constant name figure_path +# wrong constant name rotation +# wrong constant name safe_stat +# wrong constant name +# wrong constant name # uninitialized constant Rack::Request::DEFAULT_PORTS # wrong constant name # uninitialized constant Rack::Request::FORM_DATA_MEDIA_TYPES # uninitialized constant Rack::Request::HTTP_X_FORWARDED_FOR -# Did you mean? Rack::Request::HTTP_X_FORWARDED_SSL -# Rack::Request::HTTP_X_FORWARDED_HOST -# Rack::Request::HTTP_X_FORWARDED_PORT -# Rack::Request::HTTP_X_FORWARDED_PROTO # uninitialized constant Rack::Request::HTTP_X_FORWARDED_HOST -# Did you mean? Rack::Request::HTTP_X_FORWARDED_FOR -# Rack::Request::HTTP_X_FORWARDED_SSL -# Rack::Request::HTTP_X_FORWARDED_PORT -# Rack::Request::HTTP_X_FORWARDED_PROTO -# Rack::Request::HTTP_X_FORWARDED_SCHEME # uninitialized constant Rack::Request::HTTP_X_FORWARDED_PORT -# Did you mean? Rack::Request::HTTP_X_FORWARDED_FOR -# Rack::Request::HTTP_X_FORWARDED_SSL -# Rack::Request::HTTP_X_FORWARDED_HOST -# Rack::Request::HTTP_X_FORWARDED_PROTO -# Rack::Request::HTTP_X_FORWARDED_SCHEME # uninitialized constant Rack::Request::HTTP_X_FORWARDED_PROTO -# Did you mean? Rack::Request::HTTP_X_FORWARDED_FOR -# Rack::Request::HTTP_X_FORWARDED_SSL -# Rack::Request::HTTP_X_FORWARDED_HOST -# Rack::Request::HTTP_X_FORWARDED_PORT -# Rack::Request::HTTP_X_FORWARDED_SCHEME # uninitialized constant Rack::Request::HTTP_X_FORWARDED_SCHEME -# Did you mean? Rack::Request::HTTP_X_FORWARDED_FOR -# Rack::Request::HTTP_X_FORWARDED_SSL -# Rack::Request::HTTP_X_FORWARDED_HOST -# Rack::Request::HTTP_X_FORWARDED_PORT -# Rack::Request::HTTP_X_FORWARDED_PROTO # uninitialized constant Rack::Request::HTTP_X_FORWARDED_SSL -# Did you mean? Rack::Request::HTTP_X_FORWARDED_FOR -# Rack::Request::HTTP_X_FORWARDED_HOST -# Rack::Request::HTTP_X_FORWARDED_PORT -# Rack::Request::HTTP_X_FORWARDED_PROTO -# Rack::Request::HTTP_X_FORWARDED_SCHEME # wrong constant name # uninitialized constant Rack::Request::PARSEABLE_DATA_MEDIA_TYPES # wrong constant name query @@ -2616,12 +3091,7 @@ # wrong constant name set_header # wrong constant name # uninitialized constant Rack::Request::Helpers::GET -# Did you mean? Net -# Set -# Gem -# Rack::GET # uninitialized constant Rack::Request::Helpers::POST -# Did you mean? Rack::POST # wrong constant name [] # wrong constant name []= # wrong constant name accept_encoding @@ -2687,54 +3157,334 @@ # wrong constant name # wrong constant name ip_filter # wrong constant name ip_filter= +# wrong constant name +# wrong constant name +# wrong constant name [] +# wrong constant name []= +# wrong constant name body +# wrong constant name body= +# wrong constant name chunked? +# wrong constant name close +# wrong constant name delete_header +# wrong constant name each +# wrong constant name empty? +# wrong constant name finish +# wrong constant name get_header +# wrong constant name has_header? +# wrong constant name header +# wrong constant name headers +# wrong constant name initialize +# wrong constant name length +# wrong constant name length= +# wrong constant name redirect +# wrong constant name set_header +# wrong constant name status +# wrong constant name status= +# wrong constant name to_a +# wrong constant name write +# wrong constant name accepted? +# wrong constant name add_header +# wrong constant name append +# wrong constant name bad_request? +# wrong constant name buffered_body! +# wrong constant name cache! +# wrong constant name cache_control +# wrong constant name cache_control= +# wrong constant name client_error? +# wrong constant name content_length +# wrong constant name content_type +# wrong constant name content_type= +# wrong constant name created? +# wrong constant name delete_cookie +# wrong constant name do_not_cache! +# wrong constant name etag +# wrong constant name etag= +# wrong constant name forbidden? +# wrong constant name include? +# wrong constant name informational? +# wrong constant name invalid? +# wrong constant name location +# wrong constant name location= +# wrong constant name media_type +# wrong constant name media_type_params +# wrong constant name method_not_allowed? +# wrong constant name moved_permanently? +# wrong constant name no_content? +# wrong constant name not_found? +# wrong constant name ok? +# wrong constant name precondition_failed? +# wrong constant name redirect? +# wrong constant name redirection? +# wrong constant name server_error? +# wrong constant name set_cookie +# wrong constant name set_cookie_header +# wrong constant name set_cookie_header= +# wrong constant name successful? +# wrong constant name unauthorized? +# wrong constant name unprocessable? +# wrong constant name +# wrong constant name delete_header +# wrong constant name get_header +# wrong constant name has_header? +# wrong constant name headers +# wrong constant name initialize +# wrong constant name set_header +# wrong constant name status +# wrong constant name status= +# wrong constant name +# wrong constant name +# wrong constant name [] +# wrong constant name close +# wrong constant name each +# wrong constant name gets +# wrong constant name initialize +# wrong constant name read +# wrong constant name rewind +# wrong constant name +# wrong constant name call +# wrong constant name initialize +# wrong constant name +# wrong constant name call +# wrong constant name initialize +# wrong constant name +# wrong constant name +# wrong constant name app +# wrong constant name default_options +# wrong constant name initialize +# wrong constant name middleware +# wrong constant name options +# wrong constant name options= +# wrong constant name server +# wrong constant name start +# wrong constant name handler_opts +# wrong constant name parse! +# wrong constant name +# wrong constant name +# wrong constant name default_middleware_by_environment +# wrong constant name logging_middleware +# wrong constant name middleware +# wrong constant name start +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# uninitialized constant Rack::Session::Abstract::ID::DEFAULT_OPTIONS +# wrong constant name find_session +# wrong constant name +# wrong constant name inherited +# wrong constant name call +# wrong constant name commit_session +# wrong constant name context +# wrong constant name default_options +# wrong constant name initialize +# wrong constant name key +# wrong constant name sid_secure +# wrong constant name +# uninitialized constant Rack::Session::Abstract::PersistedSecure::DEFAULT_OPTIONS +# wrong constant name +# wrong constant name extract_session_id +# wrong constant name generate_sid +# uninitialized constant Rack::Session::Abstract::PersistedSecure::SecureSessionHash::Elem +# uninitialized constant Rack::Session::Abstract::PersistedSecure::SecureSessionHash::Unspecified +# wrong constant name +# wrong constant name +# uninitialized constant Rack::Session::Abstract::SessionHash::Elem +# wrong constant name [] +# wrong constant name []= +# wrong constant name clear +# wrong constant name delete +# wrong constant name destroy +# wrong constant name dig +# wrong constant name each +# wrong constant name empty? +# wrong constant name exists? +# wrong constant name fetch +# wrong constant name has_key? +# wrong constant name id +# wrong constant name id= +# wrong constant name include? +# wrong constant name initialize +# wrong constant name key? +# wrong constant name keys +# wrong constant name loaded? +# wrong constant name merge! +# wrong constant name options +# wrong constant name replace +# wrong constant name store +# wrong constant name to_hash +# wrong constant name update +# wrong constant name values +# wrong constant name +# wrong constant name find +# wrong constant name set +# wrong constant name set_options +# wrong constant name +# wrong constant name +# uninitialized constant Rack::Session::Cookie::DEFAULT_OPTIONS +# wrong constant name +# wrong constant name +# wrong constant name coder +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name decode +# wrong constant name encode +# wrong constant name encode +# wrong constant name +# wrong constant name +# wrong constant name encode +# wrong constant name +# wrong constant name +# wrong constant name decode +# wrong constant name encode +# wrong constant name +# wrong constant name cookie_value +# wrong constant name initialize +# wrong constant name +# wrong constant name +# wrong constant name delete_session +# wrong constant name find_session +# wrong constant name generate_sid +# wrong constant name mutex +# wrong constant name pool +# wrong constant name with_lock +# wrong constant name write_session +# wrong constant name +# wrong constant name cookie_value +# wrong constant name empty? +# wrong constant name initialize +# wrong constant name private_id +# wrong constant name public_id +# wrong constant name +# wrong constant name +# wrong constant name call +# wrong constant name dump_exception +# wrong constant name h +# wrong constant name initialize +# wrong constant name prefers_plaintext? +# wrong constant name pretty +# wrong constant name template +# wrong constant name +# wrong constant name call +# wrong constant name h +# wrong constant name initialize +# wrong constant name +# wrong constant name add_index_root? +# wrong constant name applicable_rules +# wrong constant name call +# wrong constant name can_serve +# wrong constant name initialize +# wrong constant name overwrite_file_path +# wrong constant name route_file +# wrong constant name +# wrong constant name call +# wrong constant name initialize +# wrong constant name +# wrong constant name call +# wrong constant name initialize +# wrong constant name remap +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name app +# wrong constant name call +# wrong constant name context +# wrong constant name for +# wrong constant name initialize +# wrong constant name recontext +# wrong constant name +# uninitialized constant Rack::Utils::HeaderHash::Elem +# uninitialized constant Rack::Utils::HeaderHash::K +# uninitialized constant Rack::Utils::HeaderHash::V +# wrong constant name [] +# wrong constant name []= +# wrong constant name delete +# wrong constant name has_key? +# wrong constant name include? +# wrong constant name initialize +# wrong constant name key? +# wrong constant name member? +# wrong constant name merge +# wrong constant name merge! +# wrong constant name names +# wrong constant name replace +# wrong constant name +# wrong constant name [] +# wrong constant name +# wrong constant name add_cookie_to_header +# wrong constant name add_remove_cookie_to_header +# wrong constant name best_q_match +# wrong constant name build_nested_query +# wrong constant name build_query +# wrong constant name byte_ranges +# wrong constant name clean_path_info +# wrong constant name clock_time +# wrong constant name default_query_parser +# wrong constant name default_query_parser= +# wrong constant name delete_cookie_header! +# wrong constant name escape +# wrong constant name escape_html +# wrong constant name escape_path +# wrong constant name get_byte_ranges +# wrong constant name key_space_limit +# wrong constant name key_space_limit= +# wrong constant name make_delete_cookie_header +# wrong constant name multipart_part_limit +# wrong constant name multipart_part_limit= +# wrong constant name param_depth_limit +# wrong constant name param_depth_limit= +# wrong constant name parse_cookies +# wrong constant name parse_cookies_header +# wrong constant name parse_nested_query +# wrong constant name parse_query +# wrong constant name q_values +# wrong constant name rfc2109 +# wrong constant name rfc2822 +# wrong constant name secure_compare +# wrong constant name select_best_encoding +# wrong constant name set_cookie_header! +# wrong constant name status_code +# wrong constant name unescape +# wrong constant name unescape_path +# wrong constant name valid_path? +# wrong constant name +# wrong constant name release +# wrong constant name version # uninitialized constant Ractor # uninitialized constant Ractor # uninitialized constant Rake::DSL::DEFAULT # uninitialized constant Rake::DSL::LN_SUPPORTED # uninitialized constant Rake::DSL::LOW_METHODS -# Did you mean? Rake::DSL::LowMethods # uninitialized constant Rake::DSL::METHODS -# Did you mean? Method # uninitialized constant Rake::DSL::OPT_TABLE # uninitialized constant Rake::DSL::RUBY # uninitialized constant Rake::DSL::VERSION -# Did you mean? Rake::Version -# Rake::VERSION # uninitialized constant Rake::FileUtilsExt::LN_SUPPORTED # uninitialized constant Rake::FileUtilsExt::LOW_METHODS -# Did you mean? Rake::FileUtilsExt::LowMethods # uninitialized constant Rake::FileUtilsExt::METHODS -# Did you mean? Method # uninitialized constant Rake::FileUtilsExt::OPT_TABLE # uninitialized constant Rake::FileUtilsExt::RUBY # uninitialized constant Rake::FileUtilsExt::VERSION -# Did you mean? Rake::Version -# Rake::VERSION # uninitialized constant Rake::TaskLib::DEFAULT # uninitialized constant Rake::TaskLib::LN_SUPPORTED # uninitialized constant Rake::TaskLib::LOW_METHODS -# Did you mean? Rake::TaskLib::LowMethods # uninitialized constant Rake::TaskLib::METHODS -# Did you mean? Method # uninitialized constant Rake::TaskLib::OPT_TABLE # uninitialized constant Rake::TaskLib::RUBY # uninitialized constant Rake::TaskLib::VERSION -# Did you mean? Rake::Version -# Rake::VERSION -# wrong constant name bytes -# wrong constant name % -# wrong constant name entries -# wrong constant name to_a # wrong constant name expand -# wrong constant name fire_update! # wrong constant name ruby +# uninitialized constant Reline +# uninitialized constant Reline # uninitialized constant Rinda # uninitialized constant Rinda # wrong constant name # wrong constant name # wrong constant name column -# wrong constant name debug_output -# wrong constant name debug_output= # wrong constant name encoding # wrong constant name end_seen? # wrong constant name error? @@ -2743,127 +3493,40 @@ # wrong constant name lineno # wrong constant name parse # wrong constant name state -# wrong constant name token # wrong constant name yydebug # wrong constant name yydebug= # wrong constant name initialize # uninitialized constant Ripper::Lexer::EVENTS -# Did you mean? Ripper::EVENTS # uninitialized constant Ripper::Lexer::EXPR_ARG -# Did you mean? Ripper::EXPR_BEG -# Ripper::EXPR_ARG -# Ripper::Lexer::EXPR_BEG # uninitialized constant Ripper::Lexer::EXPR_ARG_ANY -# Did you mean? Ripper::Lexer::EXPR_BEG_ANY -# Ripper::EXPR_END_ANY -# Ripper::EXPR_BEG_ANY -# Ripper::Lexer::EXPR_END_ANY -# Ripper::EXPR_ARG_ANY # uninitialized constant Ripper::Lexer::EXPR_BEG -# Did you mean? Ripper::Lexer::EXPR_ARG -# Ripper::EXPR_BEG -# Ripper::EXPR_ARG # uninitialized constant Ripper::Lexer::EXPR_BEG_ANY -# Did you mean? Ripper::EXPR_BEG_ANY -# Ripper::Lexer::EXPR_END_ANY -# Ripper::Lexer::EXPR_ARG_ANY -# Ripper::EXPR_ARG_ANY -# Ripper::EXPR_END_ANY # uninitialized constant Ripper::Lexer::EXPR_CLASS -# Did you mean? Ripper::EXPR_CLASS # uninitialized constant Ripper::Lexer::EXPR_CMDARG -# Did you mean? Ripper::Lexer::EXPR_ARG -# Ripper::EXPR_ARG -# Ripper::EXPR_CMDARG -# Ripper::Lexer::EXPR_ENDARG -# Ripper::EXPR_ENDARG # uninitialized constant Ripper::Lexer::EXPR_DOT -# Did you mean? Ripper::EXPR_DOT # uninitialized constant Ripper::Lexer::EXPR_END -# Did you mean? Ripper::Lexer::EXPR_MID -# Ripper::EXPR_MID -# Ripper::EXPR_END -# Ripper::Lexer::EXPR_ENDFN -# Ripper::EXPR_ENDFN # uninitialized constant Ripper::Lexer::EXPR_ENDARG -# Did you mean? Ripper::Lexer::EXPR_ARG -# Ripper::EXPR_ARG -# Ripper::EXPR_END -# Ripper::EXPR_ENDFN -# Ripper::Lexer::EXPR_ENDFN -# Ripper::Lexer::EXPR_CMDARG -# Ripper::EXPR_CMDARG -# Ripper::EXPR_ENDARG -# Ripper::Lexer::EXPR_END_ANY -# Ripper::EXPR_END_ANY # uninitialized constant Ripper::Lexer::EXPR_ENDFN -# Did you mean? Ripper::EXPR_END -# Ripper::EXPR_ENDFN -# Ripper::EXPR_ENDARG -# Ripper::Lexer::EXPR_ENDARG -# Ripper::Lexer::EXPR_END_ANY -# Ripper::EXPR_END_ANY # uninitialized constant Ripper::Lexer::EXPR_END_ANY -# Did you mean? Ripper::EXPR_END_ANY -# Ripper::Lexer::EXPR_ARG_ANY -# Ripper::Lexer::EXPR_BEG_ANY -# Ripper::EXPR_ARG_ANY -# Ripper::EXPR_BEG_ANY -# Ripper::Lexer::EXPR_ENDFN -# Ripper::EXPR_ENDFN -# Ripper::Lexer::EXPR_ENDARG -# Ripper::EXPR_ENDARG # uninitialized constant Ripper::Lexer::EXPR_FITEM -# Did you mean? Ripper::EXPR_FITEM # uninitialized constant Ripper::Lexer::EXPR_FNAME -# Did you mean? Ripper::Lexer::EXPR_NONE -# Ripper::EXPR_NONE -# Ripper::EXPR_FNAME # uninitialized constant Ripper::Lexer::EXPR_LABEL -# Did you mean? Ripper::EXPR_BEG -# Ripper::Lexer::EXPR_BEG -# Ripper::EXPR_LABEL -# Ripper::Lexer::EXPR_LABELED -# Ripper::EXPR_LABELED # uninitialized constant Ripper::Lexer::EXPR_LABELED -# Did you mean? Ripper::EXPR_LABEL -# Ripper::EXPR_LABELED # uninitialized constant Ripper::Lexer::EXPR_MID -# Did you mean? Ripper::Lexer::EXPR_END -# Ripper::EXPR_MID -# Ripper::EXPR_END -# uninitialized constant Ripper::Lexer::EXPR_NONE -# Did you mean? Ripper::Lexer::EXPR_DOT -# Ripper::Lexer::EXPR_END -# Ripper::EXPR_DOT -# Ripper::EXPR_END -# Ripper::EXPR_NONE -# Ripper::Lexer::EXPR_FNAME -# Ripper::EXPR_FNAME # uninitialized constant Ripper::Lexer::EXPR_VALUE -# Did you mean? Ripper::EXPR_VALUE # wrong constant name # uninitialized constant Ripper::Lexer::PARSER_EVENTS -# Did you mean? Ripper::PARSER_EVENTS # uninitialized constant Ripper::Lexer::PARSER_EVENT_TABLE -# Did you mean? Ripper::PARSER_EVENT_TABLE # uninitialized constant Ripper::Lexer::SCANNER_EVENTS -# Did you mean? Ripper::SCANNER_EVENTS # uninitialized constant Ripper::Lexer::SCANNER_EVENT_TABLE -# Did you mean? Ripper::SCANNER_EVENT_TABLE # wrong constant name # uninitialized constant Ripper::Lexer::Version -# Did you mean? Ripper::Version -# wrong constant name errors # wrong constant name lex -# wrong constant name scan # wrong constant name tokenize # uninitialized constant Ripper::Lexer::Elem::Elem # wrong constant name event # wrong constant name event= # wrong constant name initialize -# wrong constant name message -# wrong constant name message= # wrong constant name pos # wrong constant name pos= # wrong constant name state @@ -2876,7 +3539,6 @@ # wrong constant name & # wrong constant name == # uninitialized constant Ripper::Lexer::State::Elem -# Did you mean? Ripper::Lexer::Elem # wrong constant name allbits? # wrong constant name anybits? # wrong constant name initialize @@ -2891,110 +3553,28 @@ # wrong constant name members # wrong constant name # uninitialized constant Ripper::SexpBuilder::EVENTS -# Did you mean? Ripper::EVENTS # uninitialized constant Ripper::SexpBuilder::EXPR_ARG -# Did you mean? Ripper::EXPR_BEG -# Ripper::EXPR_ARG -# Ripper::SexpBuilder::EXPR_BEG # uninitialized constant Ripper::SexpBuilder::EXPR_ARG_ANY -# Did you mean? Ripper::SexpBuilder::EXPR_BEG_ANY -# Ripper::EXPR_END_ANY -# Ripper::EXPR_BEG_ANY -# Ripper::SexpBuilder::EXPR_END_ANY -# Ripper::EXPR_ARG_ANY # uninitialized constant Ripper::SexpBuilder::EXPR_BEG -# Did you mean? Ripper::SexpBuilder::EXPR_ARG -# Ripper::EXPR_BEG -# Ripper::EXPR_ARG # uninitialized constant Ripper::SexpBuilder::EXPR_BEG_ANY -# Did you mean? Ripper::EXPR_BEG_ANY -# Ripper::SexpBuilder::EXPR_END_ANY -# Ripper::SexpBuilder::EXPR_ARG_ANY -# Ripper::EXPR_ARG_ANY -# Ripper::EXPR_END_ANY # uninitialized constant Ripper::SexpBuilder::EXPR_CLASS -# Did you mean? Ripper::EXPR_CLASS # uninitialized constant Ripper::SexpBuilder::EXPR_CMDARG -# Did you mean? Ripper::SexpBuilder::EXPR_ARG -# Ripper::EXPR_ARG -# Ripper::EXPR_CMDARG -# Ripper::SexpBuilder::EXPR_ENDARG -# Ripper::EXPR_ENDARG # uninitialized constant Ripper::SexpBuilder::EXPR_DOT -# Did you mean? Ripper::EXPR_DOT # uninitialized constant Ripper::SexpBuilder::EXPR_END -# Did you mean? Ripper::SexpBuilder::EXPR_MID -# Ripper::EXPR_MID -# Ripper::EXPR_END -# Ripper::SexpBuilder::EXPR_ENDFN -# Ripper::EXPR_ENDFN # uninitialized constant Ripper::SexpBuilder::EXPR_ENDARG -# Did you mean? Ripper::SexpBuilder::EXPR_ARG -# Ripper::EXPR_ARG -# Ripper::EXPR_END -# Ripper::EXPR_ENDFN -# Ripper::SexpBuilder::EXPR_ENDFN -# Ripper::SexpBuilder::EXPR_CMDARG -# Ripper::EXPR_CMDARG -# Ripper::EXPR_ENDARG -# Ripper::SexpBuilder::EXPR_END_ANY -# Ripper::EXPR_END_ANY # uninitialized constant Ripper::SexpBuilder::EXPR_ENDFN -# Did you mean? Ripper::EXPR_END -# Ripper::EXPR_ENDFN -# Ripper::EXPR_ENDARG -# Ripper::SexpBuilder::EXPR_ENDARG -# Ripper::SexpBuilder::EXPR_END_ANY -# Ripper::EXPR_END_ANY # uninitialized constant Ripper::SexpBuilder::EXPR_END_ANY -# Did you mean? Ripper::EXPR_END_ANY -# Ripper::SexpBuilder::EXPR_ARG_ANY -# Ripper::SexpBuilder::EXPR_BEG_ANY -# Ripper::EXPR_ARG_ANY -# Ripper::EXPR_BEG_ANY -# Ripper::SexpBuilder::EXPR_ENDFN -# Ripper::EXPR_ENDFN -# Ripper::SexpBuilder::EXPR_ENDARG -# Ripper::EXPR_ENDARG # uninitialized constant Ripper::SexpBuilder::EXPR_FITEM -# Did you mean? Ripper::EXPR_FITEM # uninitialized constant Ripper::SexpBuilder::EXPR_FNAME -# Did you mean? Ripper::SexpBuilder::EXPR_NONE -# Ripper::EXPR_NONE -# Ripper::EXPR_FNAME # uninitialized constant Ripper::SexpBuilder::EXPR_LABEL -# Did you mean? Ripper::EXPR_BEG -# Ripper::SexpBuilder::EXPR_BEG -# Ripper::EXPR_LABEL -# Ripper::SexpBuilder::EXPR_LABELED -# Ripper::EXPR_LABELED # uninitialized constant Ripper::SexpBuilder::EXPR_LABELED -# Did you mean? Ripper::EXPR_LABEL -# Ripper::EXPR_LABELED # uninitialized constant Ripper::SexpBuilder::EXPR_MID -# Did you mean? Ripper::SexpBuilder::EXPR_END -# Ripper::EXPR_MID -# Ripper::EXPR_END -# uninitialized constant Ripper::SexpBuilder::EXPR_NONE -# Did you mean? Ripper::SexpBuilder::EXPR_DOT -# Ripper::SexpBuilder::EXPR_END -# Ripper::EXPR_DOT -# Ripper::EXPR_END -# Ripper::EXPR_NONE -# Ripper::SexpBuilder::EXPR_FNAME -# Ripper::EXPR_FNAME # uninitialized constant Ripper::SexpBuilder::EXPR_VALUE -# Did you mean? Ripper::EXPR_VALUE # uninitialized constant Ripper::SexpBuilder::PARSER_EVENTS -# Did you mean? Ripper::PARSER_EVENTS # uninitialized constant Ripper::SexpBuilder::PARSER_EVENT_TABLE -# Did you mean? Ripper::PARSER_EVENT_TABLE # uninitialized constant Ripper::SexpBuilder::SCANNER_EVENTS -# Did you mean? Ripper::SCANNER_EVENTS # uninitialized constant Ripper::SexpBuilder::SCANNER_EVENT_TABLE -# Did you mean? Ripper::SCANNER_EVENT_TABLE # uninitialized constant Ripper::SexpBuilder::Version -# Did you mean? Ripper::Version # wrong constant name on_BEGIN # wrong constant name on_CHAR # wrong constant name on_END @@ -3008,10 +3588,8 @@ # wrong constant name on_args_add # wrong constant name on_args_add_block # wrong constant name on_args_add_star -# wrong constant name on_args_forward # wrong constant name on_args_new # wrong constant name on_array -# wrong constant name on_aryptn # wrong constant name on_assign # wrong constant name on_assign_error # wrong constant name on_assoc_new @@ -3065,7 +3643,6 @@ # wrong constant name on_hash # wrong constant name on_heredoc_beg # wrong constant name on_heredoc_end -# wrong constant name on_hshptn # wrong constant name on_ident # wrong constant name on_if # wrong constant name on_if_mod @@ -3073,7 +3650,6 @@ # wrong constant name on_ignored_nl # wrong constant name on_ignored_sp # wrong constant name on_imaginary -# wrong constant name on_in # wrong constant name on_int # wrong constant name on_ivar # wrong constant name on_kw @@ -3100,7 +3676,6 @@ # wrong constant name on_mrhs_new_from_args # wrong constant name on_next # wrong constant name on_nl -# wrong constant name on_nokw_param # wrong constant name on_op # wrong constant name on_opassign # wrong constant name on_operator_ambiguous @@ -3201,11 +3776,8 @@ # wrong constant name dedent_string # wrong constant name lex_state_name # wrong constant name token_match -# wrong constant name pretty_print_children -# wrong constant name -# wrong constant name enabled? -# wrong constant name pause -# wrong constant name resume +# uninitialized constant RubyVM::AbstractSyntaxTree +# uninitialized constant RubyVM::AbstractSyntaxTree # uninitialized constant SDBM # uninitialized constant SDBM # uninitialized constant SDBMError @@ -3222,6 +3794,32 @@ # wrong constant name reset # uninitialized constant Shell # uninitialized constant Shell +# wrong constant name branches_missed +# wrong constant name colorize +# wrong constant name format +# wrong constant name include_output_style +# wrong constant name missed +# wrong constant name pct +# wrong constant name show_branch_coverage? +# wrong constant name trunc +# wrong constant name use_colors? +# wrong constant name +# wrong constant name max_lines +# wrong constant name max_lines= +# wrong constant name max_rows +# wrong constant name max_rows= +# wrong constant name missing_len +# wrong constant name missing_len= +# wrong constant name output_style +# wrong constant name output_style= +# wrong constant name show_covered +# wrong constant name show_covered= +# wrong constant name sort +# wrong constant name sort= +# wrong constant name table_options +# wrong constant name table_options= +# wrong constant name use_colors +# wrong constant name use_colors= # wrong constant name _dump # wrong constant name clone # wrong constant name dup @@ -3232,7 +3830,6 @@ # uninitialized constant Socket::BINARY # uninitialized constant Socket::CREAT # uninitialized constant Socket::DSYNC -# Did you mean? Socket::SYNC # uninitialized constant Socket::EXCL # uninitialized constant Socket::FNM_CASEFOLD # uninitialized constant Socket::FNM_DOTMATCH @@ -3242,53 +3839,38 @@ # uninitialized constant Socket::FNM_SHORTNAME # uninitialized constant Socket::FNM_SYSCASE # uninitialized constant Socket::LOCK_EX -# Did you mean? Socket::LOCK_NB -# Socket::LOCK_UN -# Socket::LOCK_SH # uninitialized constant Socket::LOCK_NB -# Did you mean? Socket::LOCK_UN -# Socket::LOCK_EX -# Socket::LOCK_SH # uninitialized constant Socket::LOCK_SH -# Did you mean? Socket::LOCK_NB -# Socket::LOCK_UN -# Socket::LOCK_EX # uninitialized constant Socket::LOCK_UN -# Did you mean? Socket::LOCK_NB -# Socket::LOCK_EX -# Socket::LOCK_SH # uninitialized constant Socket::NOCTTY # uninitialized constant Socket::NOFOLLOW # uninitialized constant Socket::NONBLOCK # uninitialized constant Socket::NULL # uninitialized constant Socket::RDONLY -# Did you mean? Socket::WRONLY # uninitialized constant Socket::RDWR # uninitialized constant Socket::SEEK_CUR # uninitialized constant Socket::SEEK_DATA -# Did you mean? Socket::SEEK_SET # uninitialized constant Socket::SEEK_END # uninitialized constant Socket::SEEK_HOLE # uninitialized constant Socket::SEEK_SET # uninitialized constant Socket::SHARE_DELETE # uninitialized constant Socket::SYNC -# Did you mean? Socket::DSYNC # uninitialized constant Socket::TRUNC -# Did you mean? TRUE # uninitialized constant Socket::WRONLY -# Did you mean? Socket::RDONLY -# uninitialized constant SortedSet::InspectKey -# wrong constant name initialize -# wrong constant name setup +# wrong constant name ansi +# wrong constant name ansi! # wrong constant name shellescape # wrong constant name shellsplit -# wrong constant name set_encoding_by_bom +# wrong constant name unansi +# wrong constant name unansi! # wrong constant name bol? -# wrong constant name fixed_anchor? # wrong constant name initialize -# wrong constant name deconstruct -# wrong constant name deconstruct_keys -# wrong constant name filter +# uninitialized constant Struct::CompletionJourneyData +# uninitialized constant Struct::CompletionJourneyData +# uninitialized constant Struct::Key +# uninitialized constant Struct::Key +# uninitialized constant Struct::MenuInfo +# uninitialized constant Struct::MenuInfo # wrong constant name # uninitialized constant Sync # uninitialized constant Sync @@ -3304,84 +3886,159 @@ # wrong constant name call # wrong constant name initialize # wrong constant name +# wrong constant name +# wrong constant name << +# wrong constant name == +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name +# wrong constant name add_row +# wrong constant name add_separator +# wrong constant name align_column +# wrong constant name cell_padding +# wrong constant name cell_spacing +# wrong constant name column +# wrong constant name column_width +# wrong constant name column_with_headings +# wrong constant name columns +# wrong constant name elaborate_rows +# wrong constant name headings +# wrong constant name headings= +# wrong constant name initialize +# wrong constant name length_of_column +# wrong constant name number_of_columns +# wrong constant name render +# wrong constant name rows +# wrong constant name rows= +# wrong constant name style +# wrong constant name style= +# wrong constant name title +# wrong constant name title= +# wrong constant name horizontal +# wrong constant name vertical +# wrong constant name +# wrong constant name [] +# wrong constant name []= +# wrong constant name bottom +# wrong constant name bottom= +# wrong constant name data +# wrong constant name data= +# wrong constant name left +# wrong constant name left= +# wrong constant name maybeleft +# wrong constant name mayberight +# wrong constant name remove_horizontals +# wrong constant name remove_verticals +# wrong constant name right +# wrong constant name right= +# wrong constant name top +# wrong constant name top= +# wrong constant name +# wrong constant name align +# wrong constant name alignment +# wrong constant name alignment= +# wrong constant name alignment? +# wrong constant name colspan +# wrong constant name initialize +# wrong constant name lines +# wrong constant name render +# wrong constant name to_s +# wrong constant name value +# wrong constant name value_for_column_width_recalc +# wrong constant name width +# wrong constant name +# uninitialized constant Terminal::Table::MarkdownBorder::HORIZONTALS +# uninitialized constant Terminal::Table::MarkdownBorder::INTERSECTIONS +# uninitialized constant Terminal::Table::MarkdownBorder::VERTICALS +# wrong constant name +# wrong constant name << +# wrong constant name [] +# wrong constant name add_cell +# wrong constant name cells +# wrong constant name crossings +# wrong constant name height +# wrong constant name initialize +# wrong constant name number_of_columns +# wrong constant name render +# wrong constant name table +# wrong constant name +# wrong constant name border_type +# wrong constant name border_type= +# wrong constant name implicit +# wrong constant name initialize +# wrong constant name save_adjacent_rows +# wrong constant name +# wrong constant name alignment +# wrong constant name alignment= +# wrong constant name all_separators +# wrong constant name all_separators= +# wrong constant name apply +# wrong constant name border +# wrong constant name border= +# wrong constant name border_bottom +# wrong constant name border_bottom= +# wrong constant name border_i= +# wrong constant name border_left +# wrong constant name border_left= +# wrong constant name border_right +# wrong constant name border_right= +# wrong constant name border_top +# wrong constant name border_top= +# wrong constant name border_x= +# wrong constant name border_y +# wrong constant name border_y= +# wrong constant name border_y_width +# wrong constant name horizontal +# wrong constant name initialize +# wrong constant name margin_left +# wrong constant name margin_left= +# wrong constant name on_change +# wrong constant name padding_left +# wrong constant name padding_left= +# wrong constant name padding_right +# wrong constant name padding_right= +# wrong constant name remove_horizontals +# wrong constant name remove_verticals +# wrong constant name vertical +# wrong constant name width +# wrong constant name width= +# wrong constant name +# wrong constant name defaults +# wrong constant name defaults= +# wrong constant name table +# wrong constant name +# wrong constant name horizontal +# wrong constant name vertical +# wrong constant name +# uninitialized constant Terminal::Table::UnicodeRoundBorder::ALLOWED_SEPARATOR_BORDER_STYLES +# uninitialized constant Terminal::Table::UnicodeRoundBorder::HORIZONTALS +# uninitialized constant Terminal::Table::UnicodeRoundBorder::INTERSECTIONS +# uninitialized constant Terminal::Table::UnicodeRoundBorder::VERTICALS +# wrong constant name +# uninitialized constant Terminal::Table::UnicodeThickEdgeBorder::ALLOWED_SEPARATOR_BORDER_STYLES +# uninitialized constant Terminal::Table::UnicodeThickEdgeBorder::HORIZONTALS +# uninitialized constant Terminal::Table::UnicodeThickEdgeBorder::INTERSECTIONS +# uninitialized constant Terminal::Table::UnicodeThickEdgeBorder::VERTICALS +# wrong constant name +# wrong constant name +# wrong constant name ansi_escape +# wrong constant name +# wrong constant name # uninitialized constant ThreadsWait # uninitialized constant ThreadsWait -# wrong constant name eval_script -# wrong constant name instruction_sequence -# wrong constant name parameters -# wrong constant name new # uninitialized constant Tracer -# Did you mean? TracePoint # uninitialized constant Tracer -# Did you mean? TracePoint -# wrong constant name # wrong constant name buffer_open # wrong constant name new2 -# uninitialized constant URI::File::ABS_PATH -# Did you mean? URI::ABS_PATH -# uninitialized constant URI::File::ABS_URI -# Did you mean? URI::ABS_URI -# uninitialized constant URI::File::ABS_URI_REF -# Did you mean? URI::ABS_URI_REF -# uninitialized constant URI::File::DEFAULT_PARSER -# Did you mean? URI::File::DEFAULT_PORT -# URI::DEFAULT_PARSER -# uninitialized constant URI::File::ESCAPED -# Did you mean? URI::File::Escape -# URI::Escape -# URI::ESCAPED -# uninitialized constant URI::File::FRAGMENT -# Did you mean? URI::FRAGMENT -# uninitialized constant URI::File::HOST -# Did you mean? URI::HOST -# uninitialized constant URI::File::OPAQUE -# Did you mean? URI::OPAQUE -# uninitialized constant URI::File::PORT -# Did you mean? URI::PORT -# uninitialized constant URI::File::QUERY -# Did you mean? URI::QUERY -# uninitialized constant URI::File::REGISTRY -# Did you mean? URI::REGISTRY -# uninitialized constant URI::File::REL_PATH -# Did you mean? URI::REL_PATH -# uninitialized constant URI::File::REL_URI -# Did you mean? URI::REL_URI -# uninitialized constant URI::File::REL_URI_REF -# Did you mean? URI::REL_URI_REF -# uninitialized constant URI::File::RFC3986_PARSER -# Did you mean? URI::File::RFC3986_Parser -# URI::RFC3986_Parser -# URI::RFC2396_Parser -# URI::File::RFC2396_Parser -# URI::RFC3986_PARSER -# uninitialized constant URI::File::SCHEME -# Did you mean? URI::SCHEME -# uninitialized constant URI::File::TBLDECWWWCOMP_ -# Did you mean? URI::File::TBLENCWWWCOMP_ -# URI::TBLDECWWWCOMP_ -# URI::TBLENCWWWCOMP_ -# uninitialized constant URI::File::TBLENCWWWCOMP_ -# Did you mean? URI::File::TBLDECWWWCOMP_ -# URI::TBLDECWWWCOMP_ -# URI::TBLENCWWWCOMP_ -# uninitialized constant URI::File::UNSAFE -# Did you mean? URI::UNSAFE -# uninitialized constant URI::File::URI_REF -# Did you mean? URI::URI_REF -# uninitialized constant URI::File::USERINFO -# Did you mean? URI::USERINFO -# uninitialized constant URI::File::USE_REGISTRY -# uninitialized constant URI::File::VERSION -# Did you mean? URI::VERSION -# uninitialized constant URI::File::VERSION_CODE -# Did you mean? URI::VERSION_CODE -# uninitialized constant URI::File::WEB_ENCODINGS_ -# Did you mean? URI::WEB_ENCODINGS_ -# wrong constant name check_password -# wrong constant name check_user -# wrong constant name check_userinfo -# wrong constant name set_userinfo -# wrong constant name # wrong constant name buffer_open # wrong constant name attributes # wrong constant name attributes= @@ -3407,7 +4064,14 @@ # wrong constant name split # wrong constant name make_components_hash # wrong constant name get_encoding -# wrong constant name open +# wrong constant name +# wrong constant name get_config +# wrong constant name initialize +# wrong constant name of +# wrong constant name +# wrong constant name emoji_extra_width_of +# wrong constant name of +# wrong constant name # wrong constant name # uninitialized constant Vector # uninitialized constant Vector @@ -3543,93 +4207,57 @@ # uninitialized constant YARD::Handlers::C::AliasHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::C::AliasHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::C::AliasHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::C::AliasHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::AliasHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::AliasHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::C::AliasHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::C::AliasHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::C::AliasHandler::CSEP -# Did you mean? YARD::Handlers::C::AliasHandler::CSEPQ # uninitialized constant YARD::Handlers::C::AliasHandler::CSEPQ -# Did you mean? YARD::Handlers::C::AliasHandler::ISEPQ -# YARD::Handlers::C::AliasHandler::NSEPQ # uninitialized constant YARD::Handlers::C::AliasHandler::ERROR_CLASS_NAMES # uninitialized constant YARD::Handlers::C::AliasHandler::ISEP -# Did you mean? YARD::Handlers::C::AliasHandler::ISEPQ # uninitialized constant YARD::Handlers::C::AliasHandler::ISEPQ -# Did you mean? YARD::Handlers::C::AliasHandler::CSEPQ -# YARD::Handlers::C::AliasHandler::NSEPQ # uninitialized constant YARD::Handlers::C::AliasHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::AliasHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::C::AliasHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::AliasHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::C::AliasHandler::NamespaceMapper # uninitialized constant YARD::Handlers::C::AliasHandler::NSEP -# Did you mean? YARD::Handlers::C::AliasHandler::NSEPQ # uninitialized constant YARD::Handlers::C::AliasHandler::NSEPQ -# Did you mean? YARD::Handlers::C::AliasHandler::CSEPQ -# YARD::Handlers::C::AliasHandler::ISEPQ # uninitialized constant YARD::Handlers::C::AliasHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::C::AttributeHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::C::AttributeHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::C::AttributeHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::C::AttributeHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::AttributeHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::AttributeHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::C::AttributeHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::C::AttributeHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::C::AttributeHandler::CSEP -# Did you mean? YARD::Handlers::C::AttributeHandler::CSEPQ # uninitialized constant YARD::Handlers::C::AttributeHandler::CSEPQ -# Did you mean? YARD::Handlers::C::AttributeHandler::ISEPQ -# YARD::Handlers::C::AttributeHandler::NSEPQ # uninitialized constant YARD::Handlers::C::AttributeHandler::ERROR_CLASS_NAMES # uninitialized constant YARD::Handlers::C::AttributeHandler::ISEP -# Did you mean? YARD::Handlers::C::AttributeHandler::ISEPQ # uninitialized constant YARD::Handlers::C::AttributeHandler::ISEPQ -# Did you mean? YARD::Handlers::C::AttributeHandler::CSEPQ -# YARD::Handlers::C::AttributeHandler::NSEPQ # uninitialized constant YARD::Handlers::C::AttributeHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::AttributeHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::C::AttributeHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::AttributeHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::C::AttributeHandler::NamespaceMapper # uninitialized constant YARD::Handlers::C::AttributeHandler::NSEP -# Did you mean? YARD::Handlers::C::AttributeHandler::NSEPQ # uninitialized constant YARD::Handlers::C::AttributeHandler::NSEPQ -# Did you mean? YARD::Handlers::C::AttributeHandler::CSEPQ -# YARD::Handlers::C::AttributeHandler::ISEPQ # uninitialized constant YARD::Handlers::C::AttributeHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::C::Base::BUILTIN_ALL # uninitialized constant YARD::Handlers::C::Base::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::C::Base::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::C::Base::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::Base::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::Base::BUILTIN_MODULES # uninitialized constant YARD::Handlers::C::Base::CONSTANTMATCH # uninitialized constant YARD::Handlers::C::Base::CONSTANTSTART # uninitialized constant YARD::Handlers::C::Base::CSEP -# Did you mean? YARD::Handlers::C::Base::CSEPQ # uninitialized constant YARD::Handlers::C::Base::CSEPQ -# Did you mean? YARD::Handlers::C::Base::ISEPQ -# YARD::Handlers::C::Base::NSEPQ # uninitialized constant YARD::Handlers::C::Base::ISEP -# Did you mean? YARD::Handlers::C::Base::ISEPQ # uninitialized constant YARD::Handlers::C::Base::ISEPQ -# Did you mean? YARD::Handlers::C::Base::CSEPQ -# YARD::Handlers::C::Base::NSEPQ # uninitialized constant YARD::Handlers::C::Base::METHODMATCH # uninitialized constant YARD::Handlers::C::Base::METHODNAMEMATCH -# Did you mean? YARD::Handlers::C::Base::METHODMATCH # uninitialized constant YARD::Handlers::C::Base::NAMESPACEMATCH -# Did you mean? YARD::Handlers::C::Base::NamespaceMapper # uninitialized constant YARD::Handlers::C::Base::NSEP -# Did you mean? YARD::Handlers::C::Base::NSEPQ # uninitialized constant YARD::Handlers::C::Base::NSEPQ -# Did you mean? YARD::Handlers::C::Base::CSEPQ -# YARD::Handlers::C::Base::ISEPQ # uninitialized constant YARD::Handlers::C::Base::PROXY_MATCH # wrong constant name ensure_variable_defined! # wrong constant name namespace_for_variable @@ -3645,93 +4273,57 @@ # uninitialized constant YARD::Handlers::C::ClassHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::C::ClassHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::C::ClassHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::C::ClassHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::ClassHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::ClassHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::C::ClassHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::C::ClassHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::C::ClassHandler::CSEP -# Did you mean? YARD::Handlers::C::ClassHandler::CSEPQ # uninitialized constant YARD::Handlers::C::ClassHandler::CSEPQ -# Did you mean? YARD::Handlers::C::ClassHandler::ISEPQ -# YARD::Handlers::C::ClassHandler::NSEPQ # uninitialized constant YARD::Handlers::C::ClassHandler::ERROR_CLASS_NAMES # uninitialized constant YARD::Handlers::C::ClassHandler::ISEP -# Did you mean? YARD::Handlers::C::ClassHandler::ISEPQ # uninitialized constant YARD::Handlers::C::ClassHandler::ISEPQ -# Did you mean? YARD::Handlers::C::ClassHandler::CSEPQ -# YARD::Handlers::C::ClassHandler::NSEPQ # uninitialized constant YARD::Handlers::C::ClassHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::ClassHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::C::ClassHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::ClassHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::C::ClassHandler::NamespaceMapper # uninitialized constant YARD::Handlers::C::ClassHandler::NSEP -# Did you mean? YARD::Handlers::C::ClassHandler::NSEPQ # uninitialized constant YARD::Handlers::C::ClassHandler::NSEPQ -# Did you mean? YARD::Handlers::C::ClassHandler::CSEPQ -# YARD::Handlers::C::ClassHandler::ISEPQ # uninitialized constant YARD::Handlers::C::ClassHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::C::ConstantHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::C::ConstantHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::C::ConstantHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::C::ConstantHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::ConstantHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::ConstantHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::C::ConstantHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::C::ConstantHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::C::ConstantHandler::CSEP -# Did you mean? YARD::Handlers::C::ConstantHandler::CSEPQ # uninitialized constant YARD::Handlers::C::ConstantHandler::CSEPQ -# Did you mean? YARD::Handlers::C::ConstantHandler::ISEPQ -# YARD::Handlers::C::ConstantHandler::NSEPQ # uninitialized constant YARD::Handlers::C::ConstantHandler::ERROR_CLASS_NAMES # uninitialized constant YARD::Handlers::C::ConstantHandler::ISEP -# Did you mean? YARD::Handlers::C::ConstantHandler::ISEPQ # uninitialized constant YARD::Handlers::C::ConstantHandler::ISEPQ -# Did you mean? YARD::Handlers::C::ConstantHandler::CSEPQ -# YARD::Handlers::C::ConstantHandler::NSEPQ # uninitialized constant YARD::Handlers::C::ConstantHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::ConstantHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::C::ConstantHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::ConstantHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::C::ConstantHandler::NamespaceMapper # uninitialized constant YARD::Handlers::C::ConstantHandler::NSEP -# Did you mean? YARD::Handlers::C::ConstantHandler::NSEPQ # uninitialized constant YARD::Handlers::C::ConstantHandler::NSEPQ -# Did you mean? YARD::Handlers::C::ConstantHandler::CSEPQ -# YARD::Handlers::C::ConstantHandler::ISEPQ # uninitialized constant YARD::Handlers::C::ConstantHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::C::HandlerMethods::BUILTIN_ALL # uninitialized constant YARD::Handlers::C::HandlerMethods::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::C::HandlerMethods::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::C::HandlerMethods::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::HandlerMethods::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::HandlerMethods::BUILTIN_MODULES # uninitialized constant YARD::Handlers::C::HandlerMethods::CONSTANTMATCH # uninitialized constant YARD::Handlers::C::HandlerMethods::CONSTANTSTART # uninitialized constant YARD::Handlers::C::HandlerMethods::CSEP -# Did you mean? YARD::Handlers::C::HandlerMethods::CSEPQ # uninitialized constant YARD::Handlers::C::HandlerMethods::CSEPQ -# Did you mean? YARD::Handlers::C::HandlerMethods::ISEPQ -# YARD::Handlers::C::HandlerMethods::NSEPQ # uninitialized constant YARD::Handlers::C::HandlerMethods::ISEP -# Did you mean? YARD::Handlers::C::HandlerMethods::ISEPQ # uninitialized constant YARD::Handlers::C::HandlerMethods::ISEPQ -# Did you mean? YARD::Handlers::C::HandlerMethods::CSEPQ -# YARD::Handlers::C::HandlerMethods::NSEPQ # uninitialized constant YARD::Handlers::C::HandlerMethods::METHODMATCH # uninitialized constant YARD::Handlers::C::HandlerMethods::METHODNAMEMATCH -# Did you mean? YARD::Handlers::C::HandlerMethods::METHODMATCH # uninitialized constant YARD::Handlers::C::HandlerMethods::NAMESPACEMATCH -# Did you mean? YARD::Handlers::C::HandlerMethods::NamespaceMapper # uninitialized constant YARD::Handlers::C::HandlerMethods::NSEP -# Did you mean? YARD::Handlers::C::HandlerMethods::NSEPQ # uninitialized constant YARD::Handlers::C::HandlerMethods::NSEPQ -# Did you mean? YARD::Handlers::C::HandlerMethods::CSEPQ -# YARD::Handlers::C::HandlerMethods::ISEPQ # uninitialized constant YARD::Handlers::C::HandlerMethods::PROXY_MATCH # wrong constant name handle_alias # wrong constant name handle_attribute @@ -3743,249 +4335,153 @@ # uninitialized constant YARD::Handlers::C::InitHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::C::InitHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::C::InitHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::C::InitHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::InitHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::InitHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::C::InitHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::C::InitHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::C::InitHandler::CSEP -# Did you mean? YARD::Handlers::C::InitHandler::CSEPQ # uninitialized constant YARD::Handlers::C::InitHandler::CSEPQ -# Did you mean? YARD::Handlers::C::InitHandler::ISEPQ -# YARD::Handlers::C::InitHandler::NSEPQ # uninitialized constant YARD::Handlers::C::InitHandler::ERROR_CLASS_NAMES # uninitialized constant YARD::Handlers::C::InitHandler::ISEP -# Did you mean? YARD::Handlers::C::InitHandler::ISEPQ # uninitialized constant YARD::Handlers::C::InitHandler::ISEPQ -# Did you mean? YARD::Handlers::C::InitHandler::CSEPQ -# YARD::Handlers::C::InitHandler::NSEPQ # uninitialized constant YARD::Handlers::C::InitHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::InitHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::C::InitHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::InitHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::C::InitHandler::NamespaceMapper # uninitialized constant YARD::Handlers::C::InitHandler::NSEP -# Did you mean? YARD::Handlers::C::InitHandler::NSEPQ # uninitialized constant YARD::Handlers::C::InitHandler::NSEPQ -# Did you mean? YARD::Handlers::C::InitHandler::CSEPQ -# YARD::Handlers::C::InitHandler::ISEPQ # uninitialized constant YARD::Handlers::C::InitHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::C::MethodHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::C::MethodHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::C::MethodHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::C::MethodHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::MethodHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::MethodHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::C::MethodHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::C::MethodHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::C::MethodHandler::CSEP -# Did you mean? YARD::Handlers::C::MethodHandler::CSEPQ # uninitialized constant YARD::Handlers::C::MethodHandler::CSEPQ -# Did you mean? YARD::Handlers::C::MethodHandler::ISEPQ -# YARD::Handlers::C::MethodHandler::NSEPQ # uninitialized constant YARD::Handlers::C::MethodHandler::ERROR_CLASS_NAMES # uninitialized constant YARD::Handlers::C::MethodHandler::ISEP -# Did you mean? YARD::Handlers::C::MethodHandler::ISEPQ # uninitialized constant YARD::Handlers::C::MethodHandler::ISEPQ -# Did you mean? YARD::Handlers::C::MethodHandler::CSEPQ -# YARD::Handlers::C::MethodHandler::NSEPQ # uninitialized constant YARD::Handlers::C::MethodHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::MethodHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::C::MethodHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::MethodHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::C::MethodHandler::NamespaceMapper # uninitialized constant YARD::Handlers::C::MethodHandler::NSEP -# Did you mean? YARD::Handlers::C::MethodHandler::NSEPQ # uninitialized constant YARD::Handlers::C::MethodHandler::NSEPQ -# Did you mean? YARD::Handlers::C::MethodHandler::CSEPQ -# YARD::Handlers::C::MethodHandler::ISEPQ # uninitialized constant YARD::Handlers::C::MethodHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::C::MixinHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::C::MixinHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::C::MixinHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::C::MixinHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::MixinHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::MixinHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::C::MixinHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::C::MixinHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::C::MixinHandler::CSEP -# Did you mean? YARD::Handlers::C::MixinHandler::CSEPQ # uninitialized constant YARD::Handlers::C::MixinHandler::CSEPQ -# Did you mean? YARD::Handlers::C::MixinHandler::ISEPQ -# YARD::Handlers::C::MixinHandler::NSEPQ # uninitialized constant YARD::Handlers::C::MixinHandler::ERROR_CLASS_NAMES # uninitialized constant YARD::Handlers::C::MixinHandler::ISEP -# Did you mean? YARD::Handlers::C::MixinHandler::ISEPQ # uninitialized constant YARD::Handlers::C::MixinHandler::ISEPQ -# Did you mean? YARD::Handlers::C::MixinHandler::CSEPQ -# YARD::Handlers::C::MixinHandler::NSEPQ # uninitialized constant YARD::Handlers::C::MixinHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::MixinHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::C::MixinHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::MixinHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::C::MixinHandler::NamespaceMapper # uninitialized constant YARD::Handlers::C::MixinHandler::NSEP -# Did you mean? YARD::Handlers::C::MixinHandler::NSEPQ # uninitialized constant YARD::Handlers::C::MixinHandler::NSEPQ -# Did you mean? YARD::Handlers::C::MixinHandler::CSEPQ -# YARD::Handlers::C::MixinHandler::ISEPQ # uninitialized constant YARD::Handlers::C::MixinHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::C::ModuleHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::C::ModuleHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::C::ModuleHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::C::ModuleHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::ModuleHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::ModuleHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::C::ModuleHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::C::ModuleHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::C::ModuleHandler::CSEP -# Did you mean? YARD::Handlers::C::ModuleHandler::CSEPQ # uninitialized constant YARD::Handlers::C::ModuleHandler::CSEPQ -# Did you mean? YARD::Handlers::C::ModuleHandler::ISEPQ -# YARD::Handlers::C::ModuleHandler::NSEPQ # uninitialized constant YARD::Handlers::C::ModuleHandler::ERROR_CLASS_NAMES # uninitialized constant YARD::Handlers::C::ModuleHandler::ISEP -# Did you mean? YARD::Handlers::C::ModuleHandler::ISEPQ # uninitialized constant YARD::Handlers::C::ModuleHandler::ISEPQ -# Did you mean? YARD::Handlers::C::ModuleHandler::CSEPQ -# YARD::Handlers::C::ModuleHandler::NSEPQ # uninitialized constant YARD::Handlers::C::ModuleHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::ModuleHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::C::ModuleHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::ModuleHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::C::ModuleHandler::NamespaceMapper # uninitialized constant YARD::Handlers::C::ModuleHandler::NSEP -# Did you mean? YARD::Handlers::C::ModuleHandler::NSEPQ # uninitialized constant YARD::Handlers::C::ModuleHandler::NSEPQ -# Did you mean? YARD::Handlers::C::ModuleHandler::CSEPQ -# YARD::Handlers::C::ModuleHandler::ISEPQ # uninitialized constant YARD::Handlers::C::ModuleHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::C::OverrideCommentHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::C::OverrideCommentHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::C::OverrideCommentHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::C::OverrideCommentHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::OverrideCommentHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::OverrideCommentHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::C::OverrideCommentHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::C::OverrideCommentHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::C::OverrideCommentHandler::CSEP -# Did you mean? YARD::Handlers::C::OverrideCommentHandler::CSEPQ # uninitialized constant YARD::Handlers::C::OverrideCommentHandler::CSEPQ -# Did you mean? YARD::Handlers::C::OverrideCommentHandler::ISEPQ -# YARD::Handlers::C::OverrideCommentHandler::NSEPQ # uninitialized constant YARD::Handlers::C::OverrideCommentHandler::ERROR_CLASS_NAMES # uninitialized constant YARD::Handlers::C::OverrideCommentHandler::ISEP -# Did you mean? YARD::Handlers::C::OverrideCommentHandler::ISEPQ # uninitialized constant YARD::Handlers::C::OverrideCommentHandler::ISEPQ -# Did you mean? YARD::Handlers::C::OverrideCommentHandler::CSEPQ -# YARD::Handlers::C::OverrideCommentHandler::NSEPQ # uninitialized constant YARD::Handlers::C::OverrideCommentHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::OverrideCommentHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::C::OverrideCommentHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::OverrideCommentHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::C::OverrideCommentHandler::NamespaceMapper # uninitialized constant YARD::Handlers::C::OverrideCommentHandler::NSEP -# Did you mean? YARD::Handlers::C::OverrideCommentHandler::NSEPQ # uninitialized constant YARD::Handlers::C::OverrideCommentHandler::NSEPQ -# Did you mean? YARD::Handlers::C::OverrideCommentHandler::CSEPQ -# YARD::Handlers::C::OverrideCommentHandler::ISEPQ # uninitialized constant YARD::Handlers::C::OverrideCommentHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::C::PathHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::C::PathHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::C::PathHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::C::PathHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::PathHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::PathHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::C::PathHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::C::PathHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::C::PathHandler::CSEP -# Did you mean? YARD::Handlers::C::PathHandler::CSEPQ # uninitialized constant YARD::Handlers::C::PathHandler::CSEPQ -# Did you mean? YARD::Handlers::C::PathHandler::ISEPQ -# YARD::Handlers::C::PathHandler::NSEPQ # uninitialized constant YARD::Handlers::C::PathHandler::ERROR_CLASS_NAMES # uninitialized constant YARD::Handlers::C::PathHandler::ISEP -# Did you mean? YARD::Handlers::C::PathHandler::ISEPQ # uninitialized constant YARD::Handlers::C::PathHandler::ISEPQ -# Did you mean? YARD::Handlers::C::PathHandler::CSEPQ -# YARD::Handlers::C::PathHandler::NSEPQ # uninitialized constant YARD::Handlers::C::PathHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::PathHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::C::PathHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::PathHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::C::PathHandler::NamespaceMapper # uninitialized constant YARD::Handlers::C::PathHandler::NSEP -# Did you mean? YARD::Handlers::C::PathHandler::NSEPQ # uninitialized constant YARD::Handlers::C::PathHandler::NSEPQ -# Did you mean? YARD::Handlers::C::PathHandler::CSEPQ -# YARD::Handlers::C::PathHandler::ISEPQ # uninitialized constant YARD::Handlers::C::PathHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::C::StructHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::C::StructHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::C::StructHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::C::StructHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::StructHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::StructHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::C::StructHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::C::StructHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::C::StructHandler::CSEP -# Did you mean? YARD::Handlers::C::StructHandler::CSEPQ # uninitialized constant YARD::Handlers::C::StructHandler::CSEPQ -# Did you mean? YARD::Handlers::C::StructHandler::ISEPQ -# YARD::Handlers::C::StructHandler::NSEPQ # uninitialized constant YARD::Handlers::C::StructHandler::ERROR_CLASS_NAMES # uninitialized constant YARD::Handlers::C::StructHandler::ISEP -# Did you mean? YARD::Handlers::C::StructHandler::ISEPQ # uninitialized constant YARD::Handlers::C::StructHandler::ISEPQ -# Did you mean? YARD::Handlers::C::StructHandler::CSEPQ -# YARD::Handlers::C::StructHandler::NSEPQ # uninitialized constant YARD::Handlers::C::StructHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::StructHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::C::StructHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::StructHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::C::StructHandler::NamespaceMapper # uninitialized constant YARD::Handlers::C::StructHandler::NSEP -# Did you mean? YARD::Handlers::C::StructHandler::NSEPQ # uninitialized constant YARD::Handlers::C::StructHandler::NSEPQ -# Did you mean? YARD::Handlers::C::StructHandler::CSEPQ -# YARD::Handlers::C::StructHandler::ISEPQ # uninitialized constant YARD::Handlers::C::StructHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::C::SymbolHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::C::SymbolHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::C::SymbolHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::C::SymbolHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::SymbolHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::C::SymbolHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::C::SymbolHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::C::SymbolHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::C::SymbolHandler::CSEP -# Did you mean? YARD::Handlers::C::SymbolHandler::CSEPQ # uninitialized constant YARD::Handlers::C::SymbolHandler::CSEPQ -# Did you mean? YARD::Handlers::C::SymbolHandler::ISEPQ -# YARD::Handlers::C::SymbolHandler::NSEPQ # uninitialized constant YARD::Handlers::C::SymbolHandler::ERROR_CLASS_NAMES # uninitialized constant YARD::Handlers::C::SymbolHandler::ISEP -# Did you mean? YARD::Handlers::C::SymbolHandler::ISEPQ # uninitialized constant YARD::Handlers::C::SymbolHandler::ISEPQ -# Did you mean? YARD::Handlers::C::SymbolHandler::CSEPQ -# YARD::Handlers::C::SymbolHandler::NSEPQ # uninitialized constant YARD::Handlers::C::SymbolHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::SymbolHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::C::SymbolHandler::METHODMATCH # uninitialized constant YARD::Handlers::C::SymbolHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::C::SymbolHandler::NamespaceMapper # uninitialized constant YARD::Handlers::C::SymbolHandler::NSEP -# Did you mean? YARD::Handlers::C::SymbolHandler::NSEPQ # uninitialized constant YARD::Handlers::C::SymbolHandler::NSEPQ -# Did you mean? YARD::Handlers::C::SymbolHandler::CSEPQ -# YARD::Handlers::C::SymbolHandler::ISEPQ # uninitialized constant YARD::Handlers::C::SymbolHandler::PROXY_MATCH # wrong constant name # wrong constant name add_predicate_return_tag @@ -4016,91 +4512,55 @@ # uninitialized constant YARD::Handlers::Ruby::AliasHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::AliasHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::AliasHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::AliasHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::AliasHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::AliasHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::AliasHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::AliasHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::AliasHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::AliasHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::AliasHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::AliasHandler::ISEPQ -# YARD::Handlers::Ruby::AliasHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::AliasHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::AliasHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::AliasHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::AliasHandler::CSEPQ -# YARD::Handlers::Ruby::AliasHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::AliasHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::AliasHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::AliasHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::AliasHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::AliasHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::AliasHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::AliasHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::AliasHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::AliasHandler::CSEPQ -# YARD::Handlers::Ruby::AliasHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::AliasHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::Ruby::AttributeHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::AttributeHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::AttributeHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::AttributeHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::AttributeHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::AttributeHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::AttributeHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::AttributeHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::AttributeHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::AttributeHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::AttributeHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::AttributeHandler::ISEPQ -# YARD::Handlers::Ruby::AttributeHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::AttributeHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::AttributeHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::AttributeHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::AttributeHandler::CSEPQ -# YARD::Handlers::Ruby::AttributeHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::AttributeHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::AttributeHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::AttributeHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::AttributeHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::AttributeHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::AttributeHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::AttributeHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::AttributeHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::AttributeHandler::CSEPQ -# YARD::Handlers::Ruby::AttributeHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::AttributeHandler::PROXY_MATCH # wrong constant name validated_attribute_names # uninitialized constant YARD::Handlers::Ruby::ClassConditionHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::ClassConditionHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::ClassConditionHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::ClassConditionHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::ClassConditionHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::ClassConditionHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::ClassConditionHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::ClassConditionHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::ClassConditionHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::ClassConditionHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::ClassConditionHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::ClassConditionHandler::ISEPQ -# YARD::Handlers::Ruby::ClassConditionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ClassConditionHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::ClassConditionHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::ClassConditionHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::ClassConditionHandler::CSEPQ -# YARD::Handlers::Ruby::ClassConditionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ClassConditionHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::ClassConditionHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::ClassConditionHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::ClassConditionHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::ClassConditionHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::ClassConditionHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::ClassConditionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ClassConditionHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::ClassConditionHandler::CSEPQ -# YARD::Handlers::Ruby::ClassConditionHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::ClassConditionHandler::PROXY_MATCH # wrong constant name parse_condition # wrong constant name parse_else_block @@ -4109,182 +4569,110 @@ # uninitialized constant YARD::Handlers::Ruby::ClassHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::ClassHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::ClassHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::ClassHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::ClassHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::ClassHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::ClassHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::ClassHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::ClassHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::ClassHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::ClassHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::ClassHandler::ISEPQ -# YARD::Handlers::Ruby::ClassHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ClassHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::ClassHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::ClassHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::ClassHandler::CSEPQ -# YARD::Handlers::Ruby::ClassHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ClassHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::ClassHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::ClassHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::ClassHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::ClassHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::ClassHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::ClassHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ClassHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::ClassHandler::CSEPQ -# YARD::Handlers::Ruby::ClassHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::ClassHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::Ruby::ClassVariableHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::ClassVariableHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::ClassVariableHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::ClassVariableHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::ClassVariableHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::ClassVariableHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::ClassVariableHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::ClassVariableHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::ClassVariableHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::ClassVariableHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::ClassVariableHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::ClassVariableHandler::ISEPQ -# YARD::Handlers::Ruby::ClassVariableHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ClassVariableHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::ClassVariableHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::ClassVariableHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::ClassVariableHandler::CSEPQ -# YARD::Handlers::Ruby::ClassVariableHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ClassVariableHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::ClassVariableHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::ClassVariableHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::ClassVariableHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::ClassVariableHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::ClassVariableHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::ClassVariableHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ClassVariableHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::ClassVariableHandler::CSEPQ -# YARD::Handlers::Ruby::ClassVariableHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::ClassVariableHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::Ruby::CommentHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::CommentHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::CommentHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::CommentHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::CommentHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::CommentHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::CommentHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::CommentHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::CommentHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::CommentHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::CommentHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::CommentHandler::ISEPQ -# YARD::Handlers::Ruby::CommentHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::CommentHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::CommentHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::CommentHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::CommentHandler::CSEPQ -# YARD::Handlers::Ruby::CommentHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::CommentHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::CommentHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::CommentHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::CommentHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::CommentHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::CommentHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::CommentHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::CommentHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::CommentHandler::CSEPQ -# YARD::Handlers::Ruby::CommentHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::CommentHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::Ruby::ConstantHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::ConstantHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::ConstantHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::ConstantHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::ConstantHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::ConstantHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::ConstantHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::ConstantHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::ConstantHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::ConstantHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::ConstantHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::ConstantHandler::ISEPQ -# YARD::Handlers::Ruby::ConstantHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ConstantHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::ConstantHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::ConstantHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::ConstantHandler::CSEPQ -# YARD::Handlers::Ruby::ConstantHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ConstantHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::ConstantHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::ConstantHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::ConstantHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::ConstantHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::ConstantHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::ConstantHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ConstantHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::ConstantHandler::CSEPQ -# YARD::Handlers::Ruby::ConstantHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::ConstantHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::Ruby::DSLHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::DSLHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::DSLHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::DSLHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::DSLHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::DSLHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::DSLHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::DSLHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::DSLHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::DSLHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::DSLHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::DSLHandler::ISEPQ -# YARD::Handlers::Ruby::DSLHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::DSLHandler::IGNORE_METHODS # uninitialized constant YARD::Handlers::Ruby::DSLHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::DSLHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::DSLHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::DSLHandler::CSEPQ -# YARD::Handlers::Ruby::DSLHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::DSLHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::DSLHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::DSLHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::DSLHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::DSLHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::DSLHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::DSLHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::DSLHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::DSLHandler::CSEPQ -# YARD::Handlers::Ruby::DSLHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::DSLHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::Ruby::DSLHandlerMethods::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::DSLHandlerMethods::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::DSLHandlerMethods::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::DSLHandlerMethods::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::DSLHandlerMethods::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::DSLHandlerMethods::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::DSLHandlerMethods::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::DSLHandlerMethods::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::DSLHandlerMethods::CSEP -# Did you mean? YARD::Handlers::Ruby::DSLHandlerMethods::CSEPQ # uninitialized constant YARD::Handlers::Ruby::DSLHandlerMethods::CSEPQ -# Did you mean? YARD::Handlers::Ruby::DSLHandlerMethods::ISEPQ -# YARD::Handlers::Ruby::DSLHandlerMethods::NSEPQ # uninitialized constant YARD::Handlers::Ruby::DSLHandlerMethods::ISEP -# Did you mean? YARD::Handlers::Ruby::DSLHandlerMethods::ISEPQ # uninitialized constant YARD::Handlers::Ruby::DSLHandlerMethods::ISEPQ -# Did you mean? YARD::Handlers::Ruby::DSLHandlerMethods::CSEPQ -# YARD::Handlers::Ruby::DSLHandlerMethods::NSEPQ # uninitialized constant YARD::Handlers::Ruby::DSLHandlerMethods::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::DSLHandlerMethods::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::DSLHandlerMethods::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::DSLHandlerMethods::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::DSLHandlerMethods::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::DSLHandlerMethods::NSEP -# Did you mean? YARD::Handlers::Ruby::DSLHandlerMethods::NSEPQ # uninitialized constant YARD::Handlers::Ruby::DSLHandlerMethods::NSEPQ -# Did you mean? YARD::Handlers::Ruby::DSLHandlerMethods::CSEPQ -# YARD::Handlers::Ruby::DSLHandlerMethods::ISEPQ # uninitialized constant YARD::Handlers::Ruby::DSLHandlerMethods::PROXY_MATCH # wrong constant name handle_comments # wrong constant name register_docstring @@ -4294,103 +4682,63 @@ # uninitialized constant YARD::Handlers::Ruby::ExceptionHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::ExceptionHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::ExceptionHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::ExceptionHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::ExceptionHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::ExceptionHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::ExceptionHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::ExceptionHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::ExceptionHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::ExceptionHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::ExceptionHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::ExceptionHandler::ISEPQ -# YARD::Handlers::Ruby::ExceptionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ExceptionHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::ExceptionHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::ExceptionHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::ExceptionHandler::CSEPQ -# YARD::Handlers::Ruby::ExceptionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ExceptionHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::ExceptionHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::ExceptionHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::ExceptionHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::ExceptionHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::ExceptionHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::ExceptionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ExceptionHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::ExceptionHandler::CSEPQ -# YARD::Handlers::Ruby::ExceptionHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::ExceptionHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::Ruby::ExtendHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::ExtendHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::ExtendHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::ExtendHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::ExtendHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::ExtendHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::ExtendHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::ExtendHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::ExtendHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::ExtendHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::ExtendHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::ExtendHandler::ISEPQ -# YARD::Handlers::Ruby::ExtendHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ExtendHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::ExtendHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::ExtendHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::ExtendHandler::CSEPQ -# YARD::Handlers::Ruby::ExtendHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ExtendHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::ExtendHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::ExtendHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::ExtendHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::ExtendHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::ExtendHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::ExtendHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ExtendHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::ExtendHandler::CSEPQ -# YARD::Handlers::Ruby::ExtendHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::ExtendHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::Legacy::AliasHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::AliasHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::AliasHandler::ISEPQ -# YARD::Handlers::Ruby::Legacy::AliasHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::EXPR_ARG -# Did you mean? YARD::Handlers::Ruby::Legacy::AliasHandler::EXPR_BEG # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::EXPR_BEG -# Did you mean? YARD::Handlers::Ruby::Legacy::AliasHandler::EXPR_ARG # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::EXPR_CLASS # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::EXPR_DOT # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::EXPR_END -# Did you mean? YARD::Handlers::Ruby::Legacy::AliasHandler::EXPR_MID # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::EXPR_FNAME # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::EXPR_MID -# Did you mean? YARD::Handlers::Ruby::Legacy::AliasHandler::EXPR_END # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::Legacy::AliasHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::AliasHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::AliasHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::AliasHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::AliasHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::NEWLINE_TOKEN # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::AliasHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::AliasHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::AliasHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::PROXY_MATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::TkReading2Token # uninitialized constant YARD::Handlers::Ruby::Legacy::AliasHandler::TkSymbol2Token @@ -4399,43 +4747,27 @@ # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::Legacy::AttributeHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::AttributeHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::AttributeHandler::ISEPQ -# YARD::Handlers::Ruby::Legacy::AttributeHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::EXPR_ARG -# Did you mean? YARD::Handlers::Ruby::Legacy::AttributeHandler::EXPR_BEG # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::EXPR_BEG -# Did you mean? YARD::Handlers::Ruby::Legacy::AttributeHandler::EXPR_ARG # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::EXPR_CLASS # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::EXPR_DOT # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::EXPR_END -# Did you mean? YARD::Handlers::Ruby::Legacy::AttributeHandler::EXPR_MID # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::EXPR_FNAME # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::EXPR_MID -# Did you mean? YARD::Handlers::Ruby::Legacy::AttributeHandler::EXPR_END # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::Legacy::AttributeHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::AttributeHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::AttributeHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::AttributeHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::AttributeHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::NEWLINE_TOKEN # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::AttributeHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::AttributeHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::AttributeHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::PROXY_MATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::TkReading2Token # uninitialized constant YARD::Handlers::Ruby::Legacy::AttributeHandler::TkSymbol2Token @@ -4444,43 +4776,27 @@ # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::Legacy::Base::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::CSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::Base::CSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::CSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::Base::ISEPQ -# YARD::Handlers::Ruby::Legacy::Base::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::EXPR_ARG -# Did you mean? YARD::Handlers::Ruby::Legacy::Base::EXPR_BEG # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::EXPR_BEG -# Did you mean? YARD::Handlers::Ruby::Legacy::Base::EXPR_ARG # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::EXPR_CLASS # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::EXPR_DOT # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::EXPR_END -# Did you mean? YARD::Handlers::Ruby::Legacy::Base::EXPR_MID # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::EXPR_FNAME # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::EXPR_MID -# Did you mean? YARD::Handlers::Ruby::Legacy::Base::EXPR_END # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::ISEP -# Did you mean? YARD::Handlers::Ruby::Legacy::Base::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::ISEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::Base::CSEPQ -# YARD::Handlers::Ruby::Legacy::Base::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::Base::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::Base::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::NEWLINE_TOKEN # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::NSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::Base::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::NSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::Base::CSEPQ -# YARD::Handlers::Ruby::Legacy::Base::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::PROXY_MATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::TkReading2Token # uninitialized constant YARD::Handlers::Ruby::Legacy::Base::TkSymbol2Token @@ -4491,43 +4807,27 @@ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassConditionHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassConditionHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassConditionHandler::ISEPQ -# YARD::Handlers::Ruby::Legacy::ClassConditionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::EXPR_ARG -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassConditionHandler::EXPR_BEG # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::EXPR_BEG -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassConditionHandler::EXPR_ARG # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::EXPR_CLASS # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::EXPR_DOT # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::EXPR_END -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassConditionHandler::EXPR_MID # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::EXPR_FNAME # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::EXPR_MID -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassConditionHandler::EXPR_END # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassConditionHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassConditionHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::ClassConditionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassConditionHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassConditionHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::NEWLINE_TOKEN # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassConditionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassConditionHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::ClassConditionHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::PROXY_MATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::TkReading2Token # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassConditionHandler::TkSymbol2Token @@ -4539,43 +4839,27 @@ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassHandler::ISEPQ -# YARD::Handlers::Ruby::Legacy::ClassHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::EXPR_ARG -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassHandler::EXPR_BEG # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::EXPR_BEG -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassHandler::EXPR_ARG # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::EXPR_CLASS # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::EXPR_DOT # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::EXPR_END -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassHandler::EXPR_MID # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::EXPR_FNAME # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::EXPR_MID -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassHandler::EXPR_END # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::ClassHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::NEWLINE_TOKEN # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::ClassHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::PROXY_MATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::TkReading2Token # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassHandler::TkSymbol2Token @@ -4584,43 +4868,27 @@ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassVariableHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassVariableHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassVariableHandler::ISEPQ -# YARD::Handlers::Ruby::Legacy::ClassVariableHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::EXPR_ARG -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassVariableHandler::EXPR_BEG # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::EXPR_BEG -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassVariableHandler::EXPR_ARG # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::EXPR_CLASS # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::EXPR_DOT # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::EXPR_END -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassVariableHandler::EXPR_MID # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::EXPR_FNAME # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::EXPR_MID -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassVariableHandler::EXPR_END # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassVariableHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassVariableHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::ClassVariableHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassVariableHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassVariableHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::NEWLINE_TOKEN # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassVariableHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ClassVariableHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::ClassVariableHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::PROXY_MATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::TkReading2Token # uninitialized constant YARD::Handlers::Ruby::Legacy::ClassVariableHandler::TkSymbol2Token @@ -4629,43 +4897,27 @@ # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::Legacy::CommentHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::CommentHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::CommentHandler::ISEPQ -# YARD::Handlers::Ruby::Legacy::CommentHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::EXPR_ARG -# Did you mean? YARD::Handlers::Ruby::Legacy::CommentHandler::EXPR_BEG # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::EXPR_BEG -# Did you mean? YARD::Handlers::Ruby::Legacy::CommentHandler::EXPR_ARG # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::EXPR_CLASS # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::EXPR_DOT # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::EXPR_END -# Did you mean? YARD::Handlers::Ruby::Legacy::CommentHandler::EXPR_MID # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::EXPR_FNAME # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::EXPR_MID -# Did you mean? YARD::Handlers::Ruby::Legacy::CommentHandler::EXPR_END # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::Legacy::CommentHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::CommentHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::CommentHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::CommentHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::CommentHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::NEWLINE_TOKEN # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::CommentHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::CommentHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::CommentHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::PROXY_MATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::TkReading2Token # uninitialized constant YARD::Handlers::Ruby::Legacy::CommentHandler::TkSymbol2Token @@ -4674,43 +4926,27 @@ # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::Legacy::ConstantHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ConstantHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ConstantHandler::ISEPQ -# YARD::Handlers::Ruby::Legacy::ConstantHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::EXPR_ARG -# Did you mean? YARD::Handlers::Ruby::Legacy::ConstantHandler::EXPR_BEG # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::EXPR_BEG -# Did you mean? YARD::Handlers::Ruby::Legacy::ConstantHandler::EXPR_ARG # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::EXPR_CLASS # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::EXPR_DOT # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::EXPR_END -# Did you mean? YARD::Handlers::Ruby::Legacy::ConstantHandler::EXPR_MID # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::EXPR_FNAME # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::EXPR_MID -# Did you mean? YARD::Handlers::Ruby::Legacy::ConstantHandler::EXPR_END # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ConstantHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ConstantHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::ConstantHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::ConstantHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::ConstantHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::NEWLINE_TOKEN # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ConstantHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ConstantHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::ConstantHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::PROXY_MATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::TkReading2Token # uninitialized constant YARD::Handlers::Ruby::Legacy::ConstantHandler::TkSymbol2Token @@ -4719,44 +4955,28 @@ # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::Legacy::DSLHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::DSLHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::DSLHandler::ISEPQ -# YARD::Handlers::Ruby::Legacy::DSLHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::EXPR_ARG -# Did you mean? YARD::Handlers::Ruby::Legacy::DSLHandler::EXPR_BEG # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::EXPR_BEG -# Did you mean? YARD::Handlers::Ruby::Legacy::DSLHandler::EXPR_ARG # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::EXPR_CLASS # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::EXPR_DOT # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::EXPR_END -# Did you mean? YARD::Handlers::Ruby::Legacy::DSLHandler::EXPR_MID # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::EXPR_FNAME # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::EXPR_MID -# Did you mean? YARD::Handlers::Ruby::Legacy::DSLHandler::EXPR_END # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::IGNORE_METHODS # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::Legacy::DSLHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::DSLHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::DSLHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::DSLHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::DSLHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::NEWLINE_TOKEN # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::DSLHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::DSLHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::DSLHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::PROXY_MATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::TkReading2Token # uninitialized constant YARD::Handlers::Ruby::Legacy::DSLHandler::TkSymbol2Token @@ -4765,43 +4985,27 @@ # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::Legacy::ExceptionHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ExceptionHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ExceptionHandler::ISEPQ -# YARD::Handlers::Ruby::Legacy::ExceptionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::EXPR_ARG -# Did you mean? YARD::Handlers::Ruby::Legacy::ExceptionHandler::EXPR_BEG # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::EXPR_BEG -# Did you mean? YARD::Handlers::Ruby::Legacy::ExceptionHandler::EXPR_ARG # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::EXPR_CLASS # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::EXPR_DOT # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::EXPR_END -# Did you mean? YARD::Handlers::Ruby::Legacy::ExceptionHandler::EXPR_MID # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::EXPR_FNAME # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::EXPR_MID -# Did you mean? YARD::Handlers::Ruby::Legacy::ExceptionHandler::EXPR_END # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ExceptionHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ExceptionHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::ExceptionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::ExceptionHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::ExceptionHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::NEWLINE_TOKEN # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ExceptionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ExceptionHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::ExceptionHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::PROXY_MATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::TkReading2Token # uninitialized constant YARD::Handlers::Ruby::Legacy::ExceptionHandler::TkSymbol2Token @@ -4810,43 +5014,27 @@ # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::Legacy::ExtendHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ExtendHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ExtendHandler::ISEPQ -# YARD::Handlers::Ruby::Legacy::ExtendHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::EXPR_ARG -# Did you mean? YARD::Handlers::Ruby::Legacy::ExtendHandler::EXPR_BEG # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::EXPR_BEG -# Did you mean? YARD::Handlers::Ruby::Legacy::ExtendHandler::EXPR_ARG # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::EXPR_CLASS # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::EXPR_DOT # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::EXPR_END -# Did you mean? YARD::Handlers::Ruby::Legacy::ExtendHandler::EXPR_MID # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::EXPR_FNAME # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::EXPR_MID -# Did you mean? YARD::Handlers::Ruby::Legacy::ExtendHandler::EXPR_END # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ExtendHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ExtendHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::ExtendHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::ExtendHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::ExtendHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::NEWLINE_TOKEN # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ExtendHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ExtendHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::ExtendHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::PROXY_MATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::TkReading2Token # uninitialized constant YARD::Handlers::Ruby::Legacy::ExtendHandler::TkSymbol2Token @@ -4855,43 +5043,27 @@ # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::Legacy::MethodHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::MethodHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::MethodHandler::ISEPQ -# YARD::Handlers::Ruby::Legacy::MethodHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::EXPR_ARG -# Did you mean? YARD::Handlers::Ruby::Legacy::MethodHandler::EXPR_BEG # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::EXPR_BEG -# Did you mean? YARD::Handlers::Ruby::Legacy::MethodHandler::EXPR_ARG # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::EXPR_CLASS # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::EXPR_DOT # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::EXPR_END -# Did you mean? YARD::Handlers::Ruby::Legacy::MethodHandler::EXPR_MID # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::EXPR_FNAME # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::EXPR_MID -# Did you mean? YARD::Handlers::Ruby::Legacy::MethodHandler::EXPR_END # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::Legacy::MethodHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::MethodHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::MethodHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::MethodHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::MethodHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::NEWLINE_TOKEN # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::MethodHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::MethodHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::MethodHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::PROXY_MATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::TkReading2Token # uninitialized constant YARD::Handlers::Ruby::Legacy::MethodHandler::TkSymbol2Token @@ -4900,43 +5072,27 @@ # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::Legacy::MixinHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::MixinHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::MixinHandler::ISEPQ -# YARD::Handlers::Ruby::Legacy::MixinHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::EXPR_ARG -# Did you mean? YARD::Handlers::Ruby::Legacy::MixinHandler::EXPR_BEG # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::EXPR_BEG -# Did you mean? YARD::Handlers::Ruby::Legacy::MixinHandler::EXPR_ARG # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::EXPR_CLASS # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::EXPR_DOT # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::EXPR_END -# Did you mean? YARD::Handlers::Ruby::Legacy::MixinHandler::EXPR_MID # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::EXPR_FNAME # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::EXPR_MID -# Did you mean? YARD::Handlers::Ruby::Legacy::MixinHandler::EXPR_END # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::Legacy::MixinHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::MixinHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::MixinHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::MixinHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::MixinHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::NEWLINE_TOKEN # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::MixinHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::MixinHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::MixinHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::PROXY_MATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::TkReading2Token # uninitialized constant YARD::Handlers::Ruby::Legacy::MixinHandler::TkSymbol2Token @@ -4945,43 +5101,27 @@ # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::ISEPQ -# YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::EXPR_ARG -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::EXPR_BEG # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::EXPR_BEG -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::EXPR_ARG # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::EXPR_CLASS # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::EXPR_DOT # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::EXPR_END -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::EXPR_MID # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::EXPR_FNAME # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::EXPR_MID -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::EXPR_END # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::NEWLINE_TOKEN # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::PROXY_MATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::TkReading2Token # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleFunctionHandler::TkSymbol2Token @@ -4990,43 +5130,27 @@ # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleHandler::ISEPQ -# YARD::Handlers::Ruby::Legacy::ModuleHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::EXPR_ARG -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleHandler::EXPR_BEG # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::EXPR_BEG -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleHandler::EXPR_ARG # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::EXPR_CLASS # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::EXPR_DOT # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::EXPR_END -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleHandler::EXPR_MID # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::EXPR_FNAME # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::EXPR_MID -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleHandler::EXPR_END # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::ModuleHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::NEWLINE_TOKEN # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::ModuleHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::ModuleHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::PROXY_MATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::TkReading2Token # uninitialized constant YARD::Handlers::Ruby::Legacy::ModuleHandler::TkSymbol2Token @@ -5035,43 +5159,27 @@ # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::ISEPQ -# YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::EXPR_ARG -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::EXPR_BEG # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::EXPR_BEG -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::EXPR_ARG # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::EXPR_CLASS # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::EXPR_DOT # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::EXPR_END -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::EXPR_MID # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::EXPR_FNAME # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::EXPR_MID -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::EXPR_END # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::NEWLINE_TOKEN # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::PROXY_MATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::TkReading2Token # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateClassMethodHandler::TkSymbol2Token @@ -5080,43 +5188,27 @@ # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::ISEPQ -# YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::EXPR_ARG -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::EXPR_BEG # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::EXPR_BEG -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::EXPR_ARG # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::EXPR_CLASS # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::EXPR_DOT # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::EXPR_END -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::EXPR_MID # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::EXPR_FNAME # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::EXPR_MID -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::EXPR_END # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::NEWLINE_TOKEN # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::PROXY_MATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::TkReading2Token # uninitialized constant YARD::Handlers::Ruby::Legacy::PrivateConstantHandler::TkSymbol2Token @@ -5125,43 +5217,27 @@ # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::Legacy::VisibilityHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::VisibilityHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::VisibilityHandler::ISEPQ -# YARD::Handlers::Ruby::Legacy::VisibilityHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::EXPR_ARG -# Did you mean? YARD::Handlers::Ruby::Legacy::VisibilityHandler::EXPR_BEG # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::EXPR_BEG -# Did you mean? YARD::Handlers::Ruby::Legacy::VisibilityHandler::EXPR_ARG # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::EXPR_CLASS # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::EXPR_DOT # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::EXPR_END -# Did you mean? YARD::Handlers::Ruby::Legacy::VisibilityHandler::EXPR_MID # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::EXPR_FNAME # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::EXPR_MID -# Did you mean? YARD::Handlers::Ruby::Legacy::VisibilityHandler::EXPR_END # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::Legacy::VisibilityHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::VisibilityHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::VisibilityHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::VisibilityHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::VisibilityHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::NEWLINE_TOKEN # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::VisibilityHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::VisibilityHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::VisibilityHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::PROXY_MATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::TkReading2Token # uninitialized constant YARD::Handlers::Ruby::Legacy::VisibilityHandler::TkSymbol2Token @@ -5170,43 +5246,27 @@ # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::Legacy::YieldHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::YieldHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::YieldHandler::ISEPQ -# YARD::Handlers::Ruby::Legacy::YieldHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::EXPR_ARG -# Did you mean? YARD::Handlers::Ruby::Legacy::YieldHandler::EXPR_BEG # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::EXPR_BEG -# Did you mean? YARD::Handlers::Ruby::Legacy::YieldHandler::EXPR_ARG # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::EXPR_CLASS # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::EXPR_DOT # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::EXPR_END -# Did you mean? YARD::Handlers::Ruby::Legacy::YieldHandler::EXPR_MID # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::EXPR_FNAME # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::EXPR_MID -# Did you mean? YARD::Handlers::Ruby::Legacy::YieldHandler::EXPR_END # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::Legacy::YieldHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::YieldHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::YieldHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::YieldHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::Legacy::YieldHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::NEWLINE_TOKEN # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::Legacy::YieldHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::Legacy::YieldHandler::CSEPQ -# YARD::Handlers::Ruby::Legacy::YieldHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::PROXY_MATCH # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::TkReading2Token # uninitialized constant YARD::Handlers::Ruby::Legacy::YieldHandler::TkSymbol2Token @@ -5215,91 +5275,55 @@ # uninitialized constant YARD::Handlers::Ruby::MethodConditionHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::MethodConditionHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::MethodConditionHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::MethodConditionHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::MethodConditionHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::MethodConditionHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::MethodConditionHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::MethodConditionHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::MethodConditionHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::MethodConditionHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::MethodConditionHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::MethodConditionHandler::ISEPQ -# YARD::Handlers::Ruby::MethodConditionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::MethodConditionHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::MethodConditionHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::MethodConditionHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::MethodConditionHandler::CSEPQ -# YARD::Handlers::Ruby::MethodConditionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::MethodConditionHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::MethodConditionHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::MethodConditionHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::MethodConditionHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::MethodConditionHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::MethodConditionHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::MethodConditionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::MethodConditionHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::MethodConditionHandler::CSEPQ -# YARD::Handlers::Ruby::MethodConditionHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::MethodConditionHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::Ruby::MethodHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::MethodHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::MethodHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::MethodHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::MethodHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::MethodHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::MethodHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::MethodHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::MethodHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::MethodHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::MethodHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::MethodHandler::ISEPQ -# YARD::Handlers::Ruby::MethodHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::MethodHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::MethodHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::MethodHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::MethodHandler::CSEPQ -# YARD::Handlers::Ruby::MethodHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::MethodHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::MethodHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::MethodHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::MethodHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::MethodHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::MethodHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::MethodHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::MethodHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::MethodHandler::CSEPQ -# YARD::Handlers::Ruby::MethodHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::MethodHandler::PROXY_MATCH # wrong constant name format_args # uninitialized constant YARD::Handlers::Ruby::MixinHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::MixinHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::MixinHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::MixinHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::MixinHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::MixinHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::MixinHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::MixinHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::MixinHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::MixinHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::MixinHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::MixinHandler::ISEPQ -# YARD::Handlers::Ruby::MixinHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::MixinHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::MixinHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::MixinHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::MixinHandler::CSEPQ -# YARD::Handlers::Ruby::MixinHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::MixinHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::MixinHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::MixinHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::MixinHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::MixinHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::MixinHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::MixinHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::MixinHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::MixinHandler::CSEPQ -# YARD::Handlers::Ruby::MixinHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::MixinHandler::PROXY_MATCH # wrong constant name process_mixin # wrong constant name recipient @@ -5307,182 +5331,110 @@ # uninitialized constant YARD::Handlers::Ruby::ModuleFunctionHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::ModuleFunctionHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::ModuleFunctionHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::ModuleFunctionHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::ModuleFunctionHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::ModuleFunctionHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::ModuleFunctionHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::ModuleFunctionHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::ModuleFunctionHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::ModuleFunctionHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::ModuleFunctionHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::ModuleFunctionHandler::ISEPQ -# YARD::Handlers::Ruby::ModuleFunctionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ModuleFunctionHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::ModuleFunctionHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::ModuleFunctionHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::ModuleFunctionHandler::CSEPQ -# YARD::Handlers::Ruby::ModuleFunctionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ModuleFunctionHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::ModuleFunctionHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::ModuleFunctionHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::ModuleFunctionHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::ModuleFunctionHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::ModuleFunctionHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::ModuleFunctionHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ModuleFunctionHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::ModuleFunctionHandler::CSEPQ -# YARD::Handlers::Ruby::ModuleFunctionHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::ModuleFunctionHandler::PROXY_MATCH # wrong constant name make_module_function # wrong constant name # uninitialized constant YARD::Handlers::Ruby::ModuleHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::ModuleHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::ModuleHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::ModuleHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::ModuleHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::ModuleHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::ModuleHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::ModuleHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::ModuleHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::ModuleHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::ModuleHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::ModuleHandler::ISEPQ -# YARD::Handlers::Ruby::ModuleHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ModuleHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::ModuleHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::ModuleHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::ModuleHandler::CSEPQ -# YARD::Handlers::Ruby::ModuleHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ModuleHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::ModuleHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::ModuleHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::ModuleHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::ModuleHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::ModuleHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::ModuleHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::ModuleHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::ModuleHandler::CSEPQ -# YARD::Handlers::Ruby::ModuleHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::ModuleHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::Ruby::PrivateClassMethodHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::PrivateClassMethodHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::PrivateClassMethodHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::PrivateClassMethodHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::PrivateClassMethodHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::PrivateClassMethodHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::PrivateClassMethodHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::PrivateClassMethodHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::PrivateClassMethodHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::PrivateClassMethodHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::PrivateClassMethodHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::PrivateClassMethodHandler::ISEPQ -# YARD::Handlers::Ruby::PrivateClassMethodHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::PrivateClassMethodHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::PrivateClassMethodHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::PrivateClassMethodHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::PrivateClassMethodHandler::CSEPQ -# YARD::Handlers::Ruby::PrivateClassMethodHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::PrivateClassMethodHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::PrivateClassMethodHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::PrivateClassMethodHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::PrivateClassMethodHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::PrivateClassMethodHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::PrivateClassMethodHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::PrivateClassMethodHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::PrivateClassMethodHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::PrivateClassMethodHandler::CSEPQ -# YARD::Handlers::Ruby::PrivateClassMethodHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::PrivateClassMethodHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::Ruby::PrivateConstantHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::PrivateConstantHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::PrivateConstantHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::PrivateConstantHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::PrivateConstantHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::PrivateConstantHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::PrivateConstantHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::PrivateConstantHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::PrivateConstantHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::PrivateConstantHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::PrivateConstantHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::PrivateConstantHandler::ISEPQ -# YARD::Handlers::Ruby::PrivateConstantHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::PrivateConstantHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::PrivateConstantHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::PrivateConstantHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::PrivateConstantHandler::CSEPQ -# YARD::Handlers::Ruby::PrivateConstantHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::PrivateConstantHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::PrivateConstantHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::PrivateConstantHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::PrivateConstantHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::PrivateConstantHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::PrivateConstantHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::PrivateConstantHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::PrivateConstantHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::PrivateConstantHandler::CSEPQ -# YARD::Handlers::Ruby::PrivateConstantHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::PrivateConstantHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::Ruby::PublicClassMethodHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::PublicClassMethodHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::PublicClassMethodHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::PublicClassMethodHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::PublicClassMethodHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::PublicClassMethodHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::PublicClassMethodHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::PublicClassMethodHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::PublicClassMethodHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::PublicClassMethodHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::PublicClassMethodHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::PublicClassMethodHandler::ISEPQ -# YARD::Handlers::Ruby::PublicClassMethodHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::PublicClassMethodHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::PublicClassMethodHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::PublicClassMethodHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::PublicClassMethodHandler::CSEPQ -# YARD::Handlers::Ruby::PublicClassMethodHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::PublicClassMethodHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::PublicClassMethodHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::PublicClassMethodHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::PublicClassMethodHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::PublicClassMethodHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::PublicClassMethodHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::PublicClassMethodHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::PublicClassMethodHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::PublicClassMethodHandler::CSEPQ -# YARD::Handlers::Ruby::PublicClassMethodHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::PublicClassMethodHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::Ruby::StructHandlerMethods::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::StructHandlerMethods::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::StructHandlerMethods::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::StructHandlerMethods::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::StructHandlerMethods::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::StructHandlerMethods::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::StructHandlerMethods::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::StructHandlerMethods::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::StructHandlerMethods::CSEP -# Did you mean? YARD::Handlers::Ruby::StructHandlerMethods::CSEPQ # uninitialized constant YARD::Handlers::Ruby::StructHandlerMethods::CSEPQ -# Did you mean? YARD::Handlers::Ruby::StructHandlerMethods::ISEPQ -# YARD::Handlers::Ruby::StructHandlerMethods::NSEPQ # uninitialized constant YARD::Handlers::Ruby::StructHandlerMethods::ISEP -# Did you mean? YARD::Handlers::Ruby::StructHandlerMethods::ISEPQ # uninitialized constant YARD::Handlers::Ruby::StructHandlerMethods::ISEPQ -# Did you mean? YARD::Handlers::Ruby::StructHandlerMethods::CSEPQ -# YARD::Handlers::Ruby::StructHandlerMethods::NSEPQ # uninitialized constant YARD::Handlers::Ruby::StructHandlerMethods::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::StructHandlerMethods::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::StructHandlerMethods::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::StructHandlerMethods::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::StructHandlerMethods::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::StructHandlerMethods::NSEP -# Did you mean? YARD::Handlers::Ruby::StructHandlerMethods::NSEPQ # uninitialized constant YARD::Handlers::Ruby::StructHandlerMethods::NSEPQ -# Did you mean? YARD::Handlers::Ruby::StructHandlerMethods::CSEPQ -# YARD::Handlers::Ruby::StructHandlerMethods::ISEPQ # uninitialized constant YARD::Handlers::Ruby::StructHandlerMethods::PROXY_MATCH # wrong constant name add_reader_tags # wrong constant name add_writer_tags @@ -5498,61 +5450,37 @@ # uninitialized constant YARD::Handlers::Ruby::VisibilityHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::VisibilityHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::VisibilityHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::VisibilityHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::VisibilityHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::VisibilityHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::VisibilityHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::VisibilityHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::VisibilityHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::VisibilityHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::VisibilityHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::VisibilityHandler::ISEPQ -# YARD::Handlers::Ruby::VisibilityHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::VisibilityHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::VisibilityHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::VisibilityHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::VisibilityHandler::CSEPQ -# YARD::Handlers::Ruby::VisibilityHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::VisibilityHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::VisibilityHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::VisibilityHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::VisibilityHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::VisibilityHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::VisibilityHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::VisibilityHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::VisibilityHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::VisibilityHandler::CSEPQ -# YARD::Handlers::Ruby::VisibilityHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::VisibilityHandler::PROXY_MATCH # wrong constant name # uninitialized constant YARD::Handlers::Ruby::YieldHandler::BUILTIN_ALL # uninitialized constant YARD::Handlers::Ruby::YieldHandler::BUILTIN_CLASSES # uninitialized constant YARD::Handlers::Ruby::YieldHandler::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Handlers::Ruby::YieldHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::YieldHandler::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Handlers::Ruby::YieldHandler::BUILTIN_MODULES # uninitialized constant YARD::Handlers::Ruby::YieldHandler::CONSTANTMATCH # uninitialized constant YARD::Handlers::Ruby::YieldHandler::CONSTANTSTART # uninitialized constant YARD::Handlers::Ruby::YieldHandler::CSEP -# Did you mean? YARD::Handlers::Ruby::YieldHandler::CSEPQ # uninitialized constant YARD::Handlers::Ruby::YieldHandler::CSEPQ -# Did you mean? YARD::Handlers::Ruby::YieldHandler::ISEPQ -# YARD::Handlers::Ruby::YieldHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::YieldHandler::ISEP -# Did you mean? YARD::Handlers::Ruby::YieldHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::YieldHandler::ISEPQ -# Did you mean? YARD::Handlers::Ruby::YieldHandler::CSEPQ -# YARD::Handlers::Ruby::YieldHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::YieldHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::YieldHandler::METHODNAMEMATCH -# Did you mean? YARD::Handlers::Ruby::YieldHandler::METHODMATCH # uninitialized constant YARD::Handlers::Ruby::YieldHandler::NAMESPACEMATCH -# Did you mean? YARD::Handlers::Ruby::YieldHandler::NamespaceMapper # uninitialized constant YARD::Handlers::Ruby::YieldHandler::NSEP -# Did you mean? YARD::Handlers::Ruby::YieldHandler::NSEPQ # uninitialized constant YARD::Handlers::Ruby::YieldHandler::NSEPQ -# Did you mean? YARD::Handlers::Ruby::YieldHandler::CSEPQ -# YARD::Handlers::Ruby::YieldHandler::ISEPQ # uninitialized constant YARD::Handlers::Ruby::YieldHandler::PROXY_MATCH # wrong constant name # wrong constant name initialize @@ -5589,16 +5517,12 @@ # wrong constant name # uninitialized constant YARD::Logger::DEBUG # uninitialized constant YARD::Logger::ERROR -# Did you mean? YARD::Logger::Error -# IOError -# Errno # uninitialized constant YARD::Logger::FATAL # uninitialized constant YARD::Logger::INFO # uninitialized constant YARD::Logger::ProgName # uninitialized constant YARD::Logger::SEV_LABEL # uninitialized constant YARD::Logger::UNKNOWN # uninitialized constant YARD::Logger::VERSION -# Did you mean? YARD::VERSION # uninitialized constant YARD::Logger::WARN # wrong constant name set_token_position # wrong constant name @@ -5606,13 +5530,10 @@ # uninitialized constant YARD::Rake::YardocTask::DEFAULT # uninitialized constant YARD::Rake::YardocTask::LN_SUPPORTED # uninitialized constant YARD::Rake::YardocTask::LOW_METHODS -# Did you mean? YARD::Rake::YardocTask::LowMethods # uninitialized constant YARD::Rake::YardocTask::METHODS -# Did you mean? Method # uninitialized constant YARD::Rake::YardocTask::OPT_TABLE # uninitialized constant YARD::Rake::YardocTask::RUBY # uninitialized constant YARD::Rake::YardocTask::VERSION -# Did you mean? YARD::VERSION # wrong constant name after # wrong constant name after= # wrong constant name before @@ -5708,10 +5629,8 @@ # wrong constant name # uninitialized constant YARD::Server::Commands::RootRequestCommand::DefaultMimeTypes # uninitialized constant YARD::Server::Commands::RootRequestCommand::ESCAPED -# Did you mean? YARD::Server::Commands::RootRequestCommand::UNESCAPED # uninitialized constant YARD::Server::Commands::RootRequestCommand::NONASCII # uninitialized constant YARD::Server::Commands::RootRequestCommand::UNESCAPED -# Did you mean? YARD::Server::Commands::RootRequestCommand::ESCAPED # uninitialized constant YARD::Server::Commands::RootRequestCommand::UNESCAPED_FORM # uninitialized constant YARD::Server::Commands::RootRequestCommand::UNESCAPED_PCHAR # wrong constant name @@ -5725,19 +5644,15 @@ # uninitialized constant YARD::Server::Commands::StaticFileCommand::CAN_FORK # uninitialized constant YARD::Server::Commands::StaticFileCommand::DefaultMimeTypes # uninitialized constant YARD::Server::Commands::StaticFileCommand::ESCAPED -# Did you mean? YARD::Server::Commands::StaticFileCommand::UNESCAPED # uninitialized constant YARD::Server::Commands::StaticFileCommand::NONASCII # uninitialized constant YARD::Server::Commands::StaticFileCommand::UNESCAPED -# Did you mean? YARD::Server::Commands::StaticFileCommand::ESCAPED # uninitialized constant YARD::Server::Commands::StaticFileCommand::UNESCAPED_FORM # uninitialized constant YARD::Server::Commands::StaticFileCommand::UNESCAPED_PCHAR # wrong constant name # uninitialized constant YARD::Server::Commands::StaticFileHelpers::DefaultMimeTypes # uninitialized constant YARD::Server::Commands::StaticFileHelpers::ESCAPED -# Did you mean? YARD::Server::Commands::StaticFileHelpers::UNESCAPED # uninitialized constant YARD::Server::Commands::StaticFileHelpers::NONASCII # uninitialized constant YARD::Server::Commands::StaticFileHelpers::UNESCAPED -# Did you mean? YARD::Server::Commands::StaticFileHelpers::ESCAPED # uninitialized constant YARD::Server::Commands::StaticFileHelpers::UNESCAPED_FORM # uninitialized constant YARD::Server::Commands::StaticFileHelpers::UNESCAPED_PCHAR # wrong constant name favicon? @@ -5786,10 +5701,8 @@ # wrong constant name # uninitialized constant YARD::Server::RackAdapter::DefaultMimeTypes # uninitialized constant YARD::Server::RackAdapter::ESCAPED -# Did you mean? YARD::Server::RackAdapter::UNESCAPED # uninitialized constant YARD::Server::RackAdapter::NONASCII # uninitialized constant YARD::Server::RackAdapter::UNESCAPED -# Did you mean? YARD::Server::RackAdapter::ESCAPED # uninitialized constant YARD::Server::RackAdapter::UNESCAPED_FORM # uninitialized constant YARD::Server::RackAdapter::UNESCAPED_PCHAR # wrong constant name call @@ -5874,31 +5787,19 @@ # uninitialized constant YARD::Tags::TypesExplainer::Parser::BUILTIN_ALL # uninitialized constant YARD::Tags::TypesExplainer::Parser::BUILTIN_CLASSES # uninitialized constant YARD::Tags::TypesExplainer::Parser::BUILTIN_EXCEPTIONS -# Did you mean? YARD::Tags::TypesExplainer::Parser::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Tags::TypesExplainer::Parser::BUILTIN_EXCEPTIONS_HASH # uninitialized constant YARD::Tags::TypesExplainer::Parser::BUILTIN_MODULES # uninitialized constant YARD::Tags::TypesExplainer::Parser::CONSTANTMATCH # uninitialized constant YARD::Tags::TypesExplainer::Parser::CONSTANTSTART # uninitialized constant YARD::Tags::TypesExplainer::Parser::CSEP -# Did you mean? YARD::Tags::TypesExplainer::Parser::CSEPQ # uninitialized constant YARD::Tags::TypesExplainer::Parser::CSEPQ -# Did you mean? YARD::Tags::TypesExplainer::Parser::ISEPQ -# YARD::Tags::TypesExplainer::Parser::NSEPQ # uninitialized constant YARD::Tags::TypesExplainer::Parser::ISEP -# Did you mean? YARD::Tags::TypesExplainer::Parser::ISEPQ # uninitialized constant YARD::Tags::TypesExplainer::Parser::ISEPQ -# Did you mean? YARD::Tags::TypesExplainer::Parser::CSEPQ -# YARD::Tags::TypesExplainer::Parser::NSEPQ # uninitialized constant YARD::Tags::TypesExplainer::Parser::METHODMATCH # uninitialized constant YARD::Tags::TypesExplainer::Parser::METHODNAMEMATCH -# Did you mean? YARD::Tags::TypesExplainer::Parser::METHODMATCH # uninitialized constant YARD::Tags::TypesExplainer::Parser::NAMESPACEMATCH -# Did you mean? YARD::Tags::TypesExplainer::Parser::NamespaceMapper # uninitialized constant YARD::Tags::TypesExplainer::Parser::NSEP -# Did you mean? YARD::Tags::TypesExplainer::Parser::NSEPQ # uninitialized constant YARD::Tags::TypesExplainer::Parser::NSEPQ -# Did you mean? YARD::Tags::TypesExplainer::Parser::CSEPQ -# YARD::Tags::TypesExplainer::Parser::ISEPQ # uninitialized constant YARD::Tags::TypesExplainer::Parser::PROXY_MATCH # wrong constant name initialize # wrong constant name parse @@ -6017,8 +5918,8 @@ # wrong constant name # wrong constant name # wrong constant name -# wrong constant name # wrong constant name +# wrong constant name # wrong constant name # wrong constant name # wrong constant name @@ -6033,7 +5934,7 @@ # wrong constant name # wrong constant name # wrong constant name add_html -# wrong constant name add_regexp_handling +# wrong constant name add_special # wrong constant name add_word_pair # wrong constant name attribute_manager # wrong constant name convert @@ -6051,7 +5952,7 @@ # wrong constant name set_attrs # wrong constant name # wrong constant name add_html -# wrong constant name add_regexp_handling +# wrong constant name add_special # wrong constant name add_word_pair # wrong constant name attribute # wrong constant name attributes @@ -6059,7 +5960,7 @@ # wrong constant name changed_attribute_by_name # wrong constant name convert_attrs # wrong constant name convert_html -# wrong constant name convert_regexp_handlings +# wrong constant name convert_specials # wrong constant name copy_string # wrong constant name display_attributes # wrong constant name flow @@ -6067,7 +5968,7 @@ # wrong constant name mask_protected_sequences # wrong constant name matching_word_pairs # wrong constant name protectable -# wrong constant name regexp_handlings +# wrong constant name special # wrong constant name split_into_flow # wrong constant name unmask_protected_sequences # wrong constant name word_pair_map @@ -6075,7 +5976,7 @@ # wrong constant name as_string # wrong constant name bitmap_for # wrong constant name each_name_of -# wrong constant name regexp_handling +# wrong constant name special # wrong constant name # wrong constant name accept # wrong constant name @@ -6101,13 +6002,13 @@ # wrong constant name # wrong constant name # wrong constant name accept_document -# wrong constant name add_regexp_handling_RDOCLINK -# wrong constant name add_regexp_handling_TIDYLINK +# wrong constant name add_special_RDOCLINK +# wrong constant name add_special_TIDYLINK # wrong constant name add_tag # wrong constant name annotate # wrong constant name convert # wrong constant name convert_flow -# wrong constant name convert_regexp_handling +# wrong constant name convert_special # wrong constant name convert_string # wrong constant name ignore # wrong constant name in_tt? @@ -6181,13 +6082,13 @@ # wrong constant name # wrong constant name # uninitialized constant RDoc::Markup::Parser::MARKUP_FORMAT -# wrong constant name # wrong constant name # uninitialized constant RDoc::Markup::Parser::TO_HTML_CHARACTERS # wrong constant name build_heading # wrong constant name build_list # wrong constant name build_paragraph # wrong constant name build_verbatim +# wrong constant name char_pos # wrong constant name debug # wrong constant name debug= # wrong constant name get @@ -6196,19 +6097,11 @@ # wrong constant name peek_token # wrong constant name setup_scanner # wrong constant name skip +# wrong constant name token_pos # wrong constant name tokenize # wrong constant name tokens # wrong constant name unget # wrong constant name -# wrong constant name [] -# wrong constant name eos? -# wrong constant name initialize -# wrong constant name matched -# wrong constant name newline! -# wrong constant name pos -# wrong constant name scan -# wrong constant name unscan -# wrong constant name # wrong constant name # wrong constant name # wrong constant name parse @@ -6235,14 +6128,14 @@ # wrong constant name push # wrong constant name text # wrong constant name +# wrong constant name accept +# wrong constant name # wrong constant name == # wrong constant name initialize # wrong constant name text # wrong constant name text= # wrong constant name type # wrong constant name -# wrong constant name accept -# wrong constant name # wrong constant name # wrong constant name # uninitialized constant RDoc::Markup::ToHtml::MARKUP_FORMAT @@ -6266,10 +6159,10 @@ # wrong constant name from_path= # wrong constant name gen_url # wrong constant name handle_RDOCLINK -# wrong constant name handle_regexp_HARD_BREAK -# wrong constant name handle_regexp_HYPERLINK -# wrong constant name handle_regexp_RDOCLINK -# wrong constant name handle_regexp_TIDYLINK +# wrong constant name handle_special_HARD_BREAK +# wrong constant name handle_special_HYPERLINK +# wrong constant name handle_special_RDOCLINK +# wrong constant name handle_special_TIDYLINK # wrong constant name html_list_name # wrong constant name in_list_entry # wrong constant name init_tags @@ -6287,7 +6180,7 @@ # wrong constant name context # wrong constant name context= # wrong constant name cross_reference -# wrong constant name handle_regexp_CROSSREF +# wrong constant name handle_special_CROSSREF # wrong constant name initialize # wrong constant name link # wrong constant name show_hash @@ -6301,7 +6194,7 @@ # wrong constant name add_paragraph # wrong constant name character_limit # wrong constant name characters -# wrong constant name handle_regexp_CROSSREF +# wrong constant name handle_special_CROSSREF # wrong constant name initialize # wrong constant name mask # wrong constant name paragraph_limit @@ -6335,17 +6228,17 @@ # wrong constant name accept_verbatim # wrong constant name convert # wrong constant name end_accepting -# wrong constant name handle_regexp_CROSSREF -# wrong constant name handle_regexp_HARD_BREAK -# wrong constant name handle_regexp_TIDYLINK +# wrong constant name handle_special_CROSSREF +# wrong constant name handle_special_HARD_BREAK +# wrong constant name handle_special_TIDYLINK # wrong constant name initialize # wrong constant name res # wrong constant name start_accepting # wrong constant name # wrong constant name gen_url # wrong constant name handle_rdoc_link -# wrong constant name handle_regexp_RDOCLINK -# wrong constant name handle_regexp_TIDYLINK +# wrong constant name handle_special_RDOCLINK +# wrong constant name handle_special_TIDYLINK # wrong constant name # wrong constant name accept_blank_line # wrong constant name accept_block_quote @@ -6361,8 +6254,8 @@ # wrong constant name accept_verbatim # wrong constant name attributes # wrong constant name end_accepting -# wrong constant name handle_regexp_HARD_BREAK -# wrong constant name handle_regexp_SUPPRESSED_CROSSREF +# wrong constant name handle_special_HARD_BREAK +# wrong constant name handle_special_SUPPRESSED_CROSSREF # wrong constant name indent # wrong constant name indent= # wrong constant name init_tags @@ -6532,6 +6425,7 @@ # wrong constant name object # wrong constant name run # wrong constant name +# wrong constant name ruby31? # wrong constant name initialize # wrong constant name initialize # wrong constant name initialize diff --git a/sorbet/rbi/hidden-definitions/hidden.rbi b/sorbet/rbi/hidden-definitions/hidden.rbi index 879f3b0..8731c7d 100644 --- a/sorbet/rbi/hidden-definitions/hidden.rbi +++ b/sorbet/rbi/hidden-definitions/hidden.rbi @@ -3,5680 +3,7727 @@ # typed: autogenerated -class Addrinfo - def connect_internal(local_addrinfo, timeout=T.unsafe(nil)); end +module ANSI + CHART = ::T.let(nil, ::T.untyped) + SPECIAL_CHART = ::T.let(nil, ::T.untyped) end -class Array - include ::JSON::Ext::Generator::GeneratorMethods::Array - def deconstruct(); end - - def shelljoin(); end - - def to_h(); end -end - -class Array - def self.try_convert(arg); end +module ANSI::BBCode + ANSINAME2BBCODE = ::T.let(nil, ::T.untyped) + ANSINAME2CODE = ::T.let(nil, ::T.untyped) + BBCOLOR2ANSI = ::T.let(nil, ::T.untyped) end -BasicObject::BasicObject = BasicObject +module ANSI::BBCode + def self.ansi(colorname); end -class BigDecimal - def clone(); end - EXCEPTION_NaN = ::T.let(nil, ::T.untyped) - VERSION = ::T.let(nil, ::T.untyped) -end + def self.ansi_to_bbcode(string); end -class BigDecimal - def self.interpret_loosely(arg); end -end + def self.ansi_to_html(string); end -class Binding - def clone(); end + def self.bbcode_to_ansi(string, usecolors=T.unsafe(nil)); end - def irb(); end -end + def self.bbcode_to_html(string); end -class Bundler::Dependency - def branch(); end + def self.html_to_ansi(string); end - def expanded_platforms(); end + def self.html_to_bbcode(string); end - def git(); end + def self.strip_bbcode(string); end end -Bundler::Deprecate = Gem::Deprecate +class ANSI::Chain + def codes(); end -class Bundler::Env -end + def initialize(string); end -class Bundler::Env - def self.environment(); end + def method_missing(s, *a, &b); end - def self.report(options=T.unsafe(nil)); end + def string(); end - def self.write(io); end + def to_str(); end end -class Bundler::Fetcher - def fetch_spec(spec); end - - def fetchers(); end - - def http_proxy(); end - - def initialize(remote); end +class ANSI::Chain +end - def specs(gem_names, source); end +module ANSI::Code + include ::ANSI::Constants + def [](*codes); end - def specs_with_retry(gem_names, source); end + def ansi(*codes); end - def uri(); end + def back(spaces=T.unsafe(nil)); end - def use_api(); end + def black_on_black(string=T.unsafe(nil)); end - def user_agent(); end - FAIL_ERRORS = ::T.let(nil, ::T.untyped) - FETCHERS = ::T.let(nil, ::T.untyped) - HTTP_ERRORS = ::T.let(nil, ::T.untyped) - NET_ERRORS = ::T.let(nil, ::T.untyped) -end + def black_on_blue(string=T.unsafe(nil)); end -class Bundler::Fetcher::AuthenticationRequiredError - def initialize(remote_uri); end -end + def black_on_cyan(string=T.unsafe(nil)); end -class Bundler::Fetcher::BadAuthenticationError - def initialize(remote_uri); end -end + def black_on_green(string=T.unsafe(nil)); end -class Bundler::Fetcher::Base - def api_fetcher?(); end + def black_on_magenta(string=T.unsafe(nil)); end - def available?(); end + def black_on_red(string=T.unsafe(nil)); end - def display_uri(); end + def black_on_white(string=T.unsafe(nil)); end - def downloader(); end + def black_on_yellow(string=T.unsafe(nil)); end - def fetch_uri(); end + def blue_on_black(string=T.unsafe(nil)); end - def initialize(downloader, remote, display_uri); end + def blue_on_blue(string=T.unsafe(nil)); end - def remote(); end + def blue_on_cyan(string=T.unsafe(nil)); end - def remote_uri(); end -end + def blue_on_green(string=T.unsafe(nil)); end -class Bundler::Fetcher::Base -end + def blue_on_magenta(string=T.unsafe(nil)); end -class Bundler::Fetcher::CertificateFailureError - def initialize(remote_uri); end -end + def blue_on_red(string=T.unsafe(nil)); end -class Bundler::Fetcher::CompactIndex - def available?(*args, &blk); end + def blue_on_white(string=T.unsafe(nil)); end - def fetch_spec(*args, &blk); end + def blue_on_yellow(string=T.unsafe(nil)); end - def specs(*args, &blk); end + def code(*codes); end - def specs_for_names(gem_names); end -end + def color(*codes); end -class Bundler::Fetcher::CompactIndex::ClientFetcher - def call(path, headers); end + def cyan_on_black(string=T.unsafe(nil)); end - def fetcher(); end + def cyan_on_blue(string=T.unsafe(nil)); end - def fetcher=(_); end + def cyan_on_cyan(string=T.unsafe(nil)); end - def ui(); end + def cyan_on_green(string=T.unsafe(nil)); end - def ui=(_); end -end + def cyan_on_magenta(string=T.unsafe(nil)); end -class Bundler::Fetcher::CompactIndex::ClientFetcher - def self.[](*arg); end + def cyan_on_red(string=T.unsafe(nil)); end - def self.members(); end -end + def cyan_on_white(string=T.unsafe(nil)); end -class Bundler::Fetcher::CompactIndex - def self.compact_index_request(method_name); end -end + def cyan_on_yellow(string=T.unsafe(nil)); end -class Bundler::Fetcher::Dependency - def dependency_api_uri(gem_names=T.unsafe(nil)); end + def display(line, column=T.unsafe(nil)); end - def dependency_specs(gem_names); end + def down(spaces=T.unsafe(nil)); end - def get_formatted_specs_and_deps(gem_list); end + def forward(spaces=T.unsafe(nil)); end - def specs(gem_names, full_dependency_list=T.unsafe(nil), last_spec_list=T.unsafe(nil)); end + def green_on_black(string=T.unsafe(nil)); end - def unmarshalled_dep_gems(gem_names); end -end + def green_on_blue(string=T.unsafe(nil)); end -class Bundler::Fetcher::Dependency -end + def green_on_cyan(string=T.unsafe(nil)); end -class Bundler::Fetcher::Downloader - def connection(); end + def green_on_green(string=T.unsafe(nil)); end - def fetch(uri, headers=T.unsafe(nil), counter=T.unsafe(nil)); end + def green_on_magenta(string=T.unsafe(nil)); end - def initialize(connection, redirect_limit); end + def green_on_red(string=T.unsafe(nil)); end - def redirect_limit(); end + def green_on_white(string=T.unsafe(nil)); end - def request(uri, headers); end -end + def green_on_yellow(string=T.unsafe(nil)); end -class Bundler::Fetcher::Downloader -end + def hex_code(string, background=T.unsafe(nil)); end -class Bundler::Fetcher::Index - def fetch_spec(spec); end + def left(spaces=T.unsafe(nil)); end - def specs(_gem_names); end -end + def magenta_on_black(string=T.unsafe(nil)); end -class Bundler::Fetcher::Index -end + def magenta_on_blue(string=T.unsafe(nil)); end -class Bundler::Fetcher::SSLError - def initialize(msg=T.unsafe(nil)); end -end + def magenta_on_cyan(string=T.unsafe(nil)); end -class Bundler::Fetcher::TooManyRequestsError -end + def magenta_on_green(string=T.unsafe(nil)); end -class Bundler::Fetcher::TooManyRequestsError -end + def magenta_on_magenta(string=T.unsafe(nil)); end -class Bundler::Fetcher - def self.api_timeout(); end + def magenta_on_red(string=T.unsafe(nil)); end - def self.api_timeout=(api_timeout); end + def magenta_on_white(string=T.unsafe(nil)); end - def self.disable_endpoint(); end + def magenta_on_yellow(string=T.unsafe(nil)); end - def self.disable_endpoint=(disable_endpoint); end + def method_missing(code, *args, &blk); end - def self.max_retries(); end + def move(line, column=T.unsafe(nil)); end - def self.max_retries=(max_retries); end + def random(background=T.unsafe(nil)); end - def self.redirect_limit(); end + def red_on_black(string=T.unsafe(nil)); end - def self.redirect_limit=(redirect_limit); end -end + def red_on_blue(string=T.unsafe(nil)); end -module Bundler::FileUtils - VERSION = ::T.let(nil, ::T.untyped) -end + def red_on_cyan(string=T.unsafe(nil)); end -class Bundler::FileUtils::Entry_ - def link(dest); end -end + def red_on_green(string=T.unsafe(nil)); end -module Bundler::FileUtils - def self.cp_lr(src, dest, noop: T.unsafe(nil), verbose: T.unsafe(nil), dereference_root: T.unsafe(nil), remove_destination: T.unsafe(nil)); end + def red_on_magenta(string=T.unsafe(nil)); end - def self.link_entry(src, dest, dereference_root=T.unsafe(nil), remove_destination=T.unsafe(nil)); end -end + def red_on_red(string=T.unsafe(nil)); end -class Bundler::GemHelper - include ::Rake::DSL - include ::Rake::FileUtilsExt - include ::FileUtils - include ::FileUtils::StreamUtils_ - def allowed_push_host(); end + def red_on_white(string=T.unsafe(nil)); end - def already_tagged?(); end + def red_on_yellow(string=T.unsafe(nil)); end - def base(); end + def rgb(*args); end - def build_gem(); end + def rgb_256(r, g, b); end - def built_gem_path(); end + def rgb_code(red, green, blue, background=T.unsafe(nil)); end - def clean?(); end + def right(spaces=T.unsafe(nil)); end - def committed?(); end + def style(*codes); end - def gem_command(); end + def unansi(string=T.unsafe(nil)); end - def gem_key(); end + def uncolor(string=T.unsafe(nil)); end - def gem_push?(); end + def unstyle(string=T.unsafe(nil)); end - def gem_push_host(); end + def up(spaces=T.unsafe(nil)); end - def gemspec(); end + def white_on_black(string=T.unsafe(nil)); end - def git_push(remote=T.unsafe(nil)); end + def white_on_blue(string=T.unsafe(nil)); end - def guard_clean(); end + def white_on_cyan(string=T.unsafe(nil)); end - def initialize(base=T.unsafe(nil), name=T.unsafe(nil)); end + def white_on_green(string=T.unsafe(nil)); end - def install(); end + def white_on_magenta(string=T.unsafe(nil)); end - def install_gem(built_gem_path=T.unsafe(nil), local=T.unsafe(nil)); end + def white_on_red(string=T.unsafe(nil)); end - def name(); end + def white_on_white(string=T.unsafe(nil)); end - def perform_git_push(options=T.unsafe(nil)); end + def white_on_yellow(string=T.unsafe(nil)); end - def rubygem_push(path); end + def yellow_on_black(string=T.unsafe(nil)); end - def sh(cmd, &block); end + def yellow_on_blue(string=T.unsafe(nil)); end - def sh_with_input(cmd); end + def yellow_on_cyan(string=T.unsafe(nil)); end - def sh_with_status(cmd, &block); end + def yellow_on_green(string=T.unsafe(nil)); end - def spec_path(); end + def yellow_on_magenta(string=T.unsafe(nil)); end - def tag_version(); end + def yellow_on_red(string=T.unsafe(nil)); end - def version(); end + def yellow_on_white(string=T.unsafe(nil)); end - def version_tag(); end + def yellow_on_yellow(string=T.unsafe(nil)); end + ENDCODE = ::T.let(nil, ::T.untyped) + PATTERN = ::T.let(nil, ::T.untyped) end -class Bundler::GemHelper - def self.gemspec(&block); end - - def self.install_tasks(opts=T.unsafe(nil)); end - - def self.instance(); end +module ANSI::Code + extend ::ANSI::Code + extend ::ANSI::Constants + def self.colors(); end - def self.instance=(instance); end + def self.styles(); end end -class Bundler::GemVersionPromoter - def initialize(locked_specs=T.unsafe(nil), unlock_gems=T.unsafe(nil)); end +class ANSI::Columns + def align(); end - def level(); end + def align=(symbol); end - def level=(value); end + def columns(); end - def locked_specs(); end + def columns=(integer); end - def major?(); end + def format(); end - def minor?(); end + def format=(procedure); end - def prerelease_specified(); end + def initialize(list, options=T.unsafe(nil), &format); end - def prerelease_specified=(prerelease_specified); end + def join(cols=T.unsafe(nil)); end - def sort_versions(dep, spec_groups); end + def list(); end - def strict(); end + def list=(list); end - def strict=(strict); end + def padding(); end - def unlock_gems(); end - DEBUG = ::T.let(nil, ::T.untyped) + def padding=(pad); end + + def to_s(cols=T.unsafe(nil)); end end -class Bundler::GemVersionPromoter +class ANSI::Columns end -class Bundler::Graph - def edge_options(); end +module ANSI::Constants + BLACK = ::T.let(nil, ::T.untyped) + BLINK = ::T.let(nil, ::T.untyped) + BLINK_OFF = ::T.let(nil, ::T.untyped) + BLUE = ::T.let(nil, ::T.untyped) + BOLD = ::T.let(nil, ::T.untyped) + BOLD_OFF = ::T.let(nil, ::T.untyped) + BRIGHT = ::T.let(nil, ::T.untyped) + BRIGHT_OFF = ::T.let(nil, ::T.untyped) + CLEAN = ::T.let(nil, ::T.untyped) + CLEAR = ::T.let(nil, ::T.untyped) + CLEAR_EOL = ::T.let(nil, ::T.untyped) + CLEAR_LEFT = ::T.let(nil, ::T.untyped) + CLEAR_LINE = ::T.let(nil, ::T.untyped) + CLEAR_RIGHT = ::T.let(nil, ::T.untyped) + CLEAR_SCREEN = ::T.let(nil, ::T.untyped) + CLR = ::T.let(nil, ::T.untyped) + CLS = ::T.let(nil, ::T.untyped) + CONCEAL = ::T.let(nil, ::T.untyped) + CONCEALED = ::T.let(nil, ::T.untyped) + CONCEAL_OFF = ::T.let(nil, ::T.untyped) + CROSSED_OFF = ::T.let(nil, ::T.untyped) + CROSSED_OUT_OFF = ::T.let(nil, ::T.untyped) + CURSOR_HIDE = ::T.let(nil, ::T.untyped) + CURSOR_SHOW = ::T.let(nil, ::T.untyped) + CYAN = ::T.let(nil, ::T.untyped) + DARK = ::T.let(nil, ::T.untyped) + DEFAULT_FONT = ::T.let(nil, ::T.untyped) + DOUBLE_UNDERLINE = ::T.let(nil, ::T.untyped) + ENCIRCLE = ::T.let(nil, ::T.untyped) + ENCIRCLE_OFF = ::T.let(nil, ::T.untyped) + FAINT = ::T.let(nil, ::T.untyped) + FONT0 = ::T.let(nil, ::T.untyped) + FONT1 = ::T.let(nil, ::T.untyped) + FONT2 = ::T.let(nil, ::T.untyped) + FONT3 = ::T.let(nil, ::T.untyped) + FONT4 = ::T.let(nil, ::T.untyped) + FONT5 = ::T.let(nil, ::T.untyped) + FONT6 = ::T.let(nil, ::T.untyped) + FONT7 = ::T.let(nil, ::T.untyped) + FONT8 = ::T.let(nil, ::T.untyped) + FONT9 = ::T.let(nil, ::T.untyped) + FONT_DEFAULT = ::T.let(nil, ::T.untyped) + FRAKTUR = ::T.let(nil, ::T.untyped) + FRAKTUR_OFF = ::T.let(nil, ::T.untyped) + FRAME = ::T.let(nil, ::T.untyped) + FRAME_OFF = ::T.let(nil, ::T.untyped) + GREEN = ::T.let(nil, ::T.untyped) + HIDE = ::T.let(nil, ::T.untyped) + INVERSE = ::T.let(nil, ::T.untyped) + INVERSE_OFF = ::T.let(nil, ::T.untyped) + INVERT = ::T.let(nil, ::T.untyped) + ITALIC = ::T.let(nil, ::T.untyped) + ITALIC_OFF = ::T.let(nil, ::T.untyped) + MAGENTA = ::T.let(nil, ::T.untyped) + NEGATIVE = ::T.let(nil, ::T.untyped) + ON_BLACK = ::T.let(nil, ::T.untyped) + ON_BLUE = ::T.let(nil, ::T.untyped) + ON_CYAN = ::T.let(nil, ::T.untyped) + ON_GREEN = ::T.let(nil, ::T.untyped) + ON_MAGENTA = ::T.let(nil, ::T.untyped) + ON_RED = ::T.let(nil, ::T.untyped) + ON_WHITE = ::T.let(nil, ::T.untyped) + ON_YELLOW = ::T.let(nil, ::T.untyped) + OVERLINE = ::T.let(nil, ::T.untyped) + OVERLINE_OFF = ::T.let(nil, ::T.untyped) + POSITIVE = ::T.let(nil, ::T.untyped) + RAPID = ::T.let(nil, ::T.untyped) + RAPID_BLINK = ::T.let(nil, ::T.untyped) + RED = ::T.let(nil, ::T.untyped) + RESET = ::T.let(nil, ::T.untyped) + RESTORE = ::T.let(nil, ::T.untyped) + REVEAL = ::T.let(nil, ::T.untyped) + REVERSE = ::T.let(nil, ::T.untyped) + SAVE = ::T.let(nil, ::T.untyped) + SHOW = ::T.let(nil, ::T.untyped) + SLOW_BLINK = ::T.let(nil, ::T.untyped) + STRIKE = ::T.let(nil, ::T.untyped) + SWAP = ::T.let(nil, ::T.untyped) + UNDERLINE = ::T.let(nil, ::T.untyped) + UNDERLINE_OFF = ::T.let(nil, ::T.untyped) + UNDERSCORE = ::T.let(nil, ::T.untyped) + WHITE = ::T.let(nil, ::T.untyped) + YELLOW = ::T.let(nil, ::T.untyped) +end - def groups(); end +module ANSI::Constants +end - def initialize(env, output_file, show_version=T.unsafe(nil), show_requirements=T.unsafe(nil), output_format=T.unsafe(nil), without=T.unsafe(nil)); end +class ANSI::Diff + def diff1(); end - def node_options(); end + def diff2(); end - def output_file(); end + def initialize(object1, object2, options=T.unsafe(nil)); end - def output_format(); end + def join(separator=T.unsafe(nil)); end - def relations(); end + def to_a(); end + COLORS = ::T.let(nil, ::T.untyped) +end - def viz(); end - GRAPH_NAME = ::T.let(nil, ::T.untyped) +class ANSI::Diff + def self.diff(object1, object2, options=T.unsafe(nil)); end end -class Bundler::Graph::GraphVizClient - def g(); end +class ANSI::Logger + def ansicolor=(on); end - def initialize(graph_instance); end + def ansicolor?(); end - def run(); end -end + def formatter(&block); end -class Bundler::Graph::GraphVizClient + def styles(options=T.unsafe(nil)); end + DETAILED_FORMAT = ::T.let(nil, ::T.untyped) + SIMPLE_FORMAT = ::T.let(nil, ::T.untyped) end -class Bundler::Graph +class ANSI::Logger end -class Bundler::Index - include ::Enumerable -end +module ANSI::Mixin + def black(); end -class Bundler::Injector - def initialize(deps, options=T.unsafe(nil)); end + def black_on_blue(); end - def inject(gemfile_path, lockfile_path); end + def black_on_cyan(); end - def remove(gemfile_path, lockfile_path); end - INJECTED_GEMS = ::T.let(nil, ::T.untyped) -end + def black_on_green(); end -class Bundler::Injector - def self.inject(new_deps, options=T.unsafe(nil)); end + def black_on_magenta(); end - def self.remove(gems, options=T.unsafe(nil)); end -end + def black_on_red(); end -class Bundler::Molinillo::DependencyGraph - include ::Enumerable -end + def black_on_white(); end -class Bundler::Molinillo::DependencyGraph::Log - extend ::Enumerable -end - -class Bundler::Molinillo::DependencyGraph::Vertex - def _recursive_predecessors(vertices=T.unsafe(nil)); end - - def _recursive_successors(vertices=T.unsafe(nil)); end -end - -module Bundler::Plugin::API::Source - def ==(other); end + def black_on_yellow(); end - def app_cache_dirname(); end + def blink(); end - def app_cache_path(custom_path=T.unsafe(nil)); end + def blue(); end - def bundler_plugin_api_source?(); end + def blue_on_black(); end - def cache(spec, custom_path=T.unsafe(nil)); end + def blue_on_cyan(); end - def cached!(); end + def blue_on_green(); end - def can_lock?(spec); end + def blue_on_magenta(); end - def dependency_names(); end + def blue_on_red(); end - def dependency_names=(dependency_names); end + def blue_on_white(); end - def double_check_for(*arg); end + def blue_on_yellow(); end - def eql?(other); end + def bold(); end - def fetch_gemspec_files(); end + def concealed(); end - def gem_install_dir(); end + def cyan(); end - def hash(); end + def cyan_on_black(); end - def include?(other); end + def cyan_on_blue(); end - def initialize(opts); end + def cyan_on_green(); end - def install(spec, opts); end + def cyan_on_magenta(); end - def install_path(); end + def cyan_on_red(); end - def installed?(); end + def cyan_on_white(); end - def name(); end + def cyan_on_yellow(); end - def options(); end + def dark(); end - def options_to_lock(); end + def display(line, column=T.unsafe(nil)); end - def post_install(spec, disable_exts=T.unsafe(nil)); end + def green(); end - def remote!(); end + def green_on_black(); end - def root(); end + def green_on_blue(); end - def specs(); end + def green_on_cyan(); end - def to_lock(); end + def green_on_magenta(); end - def to_s(); end + def green_on_red(); end - def unlock!(); end + def green_on_white(); end - def unmet_deps(); end + def green_on_yellow(); end - def uri(); end + def italic(); end - def uri_hash(); end -end + def magenta(); end -module Bundler::Plugin::API::Source -end + def magenta_on_black(); end -module Bundler::Plugin::Events - GEM_AFTER_INSTALL = ::T.let(nil, ::T.untyped) - GEM_AFTER_INSTALL_ALL = ::T.let(nil, ::T.untyped) - GEM_BEFORE_INSTALL = ::T.let(nil, ::T.untyped) - GEM_BEFORE_INSTALL_ALL = ::T.let(nil, ::T.untyped) -end + def magenta_on_blue(); end -class Bundler::Plugin::Index - def installed_plugins(); end + def magenta_on_cyan(); end - def plugin_commands(plugin); end -end + def magenta_on_green(); end -class Bundler::Plugin::Index::CommandConflict - def initialize(plugin, commands); end -end + def magenta_on_red(); end -class Bundler::Plugin::Index::CommandConflict -end + def magenta_on_white(); end -class Bundler::Plugin::Index::SourceConflict - def initialize(plugin, sources); end -end + def magenta_on_yellow(); end -class Bundler::Plugin::Index::SourceConflict -end + def negative(); end -class Bundler::Plugin::Installer - def install(names, options); end + def on_black(); end - def install_definition(definition); end -end + def on_blue(); end -class Bundler::Plugin::Installer::Git - def generate_bin(spec, disable_extensions=T.unsafe(nil)); end -end + def on_cyan(); end -class Bundler::Plugin::Installer::Git -end + def on_green(); end -class Bundler::Plugin::Installer::Rubygems -end + def on_magenta(); end -class Bundler::Plugin::Installer::Rubygems -end + def on_red(); end -class Bundler::Plugin::Installer -end + def on_white(); end -class Bundler::Plugin::SourceList -end + def on_yellow(); end -class Bundler::Plugin::SourceList -end + def rapid(); end -module Bundler::Plugin - def self.list(); end -end + def red(); end -class Bundler::ProcessLock -end + def red_on_black(); end -class Bundler::ProcessLock - def self.lock(bundle_path=T.unsafe(nil)); end -end + def red_on_blue(); end -class Bundler::Retry - def attempt(&block); end + def red_on_cyan(); end - def attempts(&block); end + def red_on_green(); end - def current_run(); end + def red_on_magenta(); end - def current_run=(current_run); end + def red_on_white(); end - def initialize(name, exceptions=T.unsafe(nil), retries=T.unsafe(nil)); end + def red_on_yellow(); end - def name(); end + def reverse(); end - def name=(name); end + def strike(); end - def total_runs(); end + def underline(); end - def total_runs=(total_runs); end -end + def underscore(); end -class Bundler::Retry - def self.attempts(); end + def white(); end - def self.default_attempts(); end + def white_on_black(); end - def self.default_retries(); end -end + def white_on_blue(); end -class Bundler::RubyGemsGemInstaller -end + def white_on_cyan(); end -class Bundler::RubyGemsGemInstaller -end + def white_on_green(); end -class Bundler::RubygemsIntegration - def add_to_load_path(paths); end + def white_on_magenta(); end - def all_specs(); end + def white_on_red(); end - def backport_ext_builder_monitor(); end + def white_on_yellow(); end - def correct_for_windows_path(path); end + def yellow(); end - def default_stubs(); end + def yellow_on_black(); end - def find_name(name); end + def yellow_on_blue(); end - def gem_remote_fetcher(); end + def yellow_on_cyan(); end - def plain_specs(); end + def yellow_on_green(); end - def plain_specs=(specs); end + def yellow_on_magenta(); end - def stub_rubygems(specs); end + def yellow_on_red(); end - def use_gemdeps(gemfile); end + def yellow_on_white(); end end -class Bundler::Settings::Mirror - def ==(other); end - - def fallback_timeout(); end +module ANSI::Mixin +end - def fallback_timeout=(timeout); end +class ANSI::ProgressBar + def bar_mark=(mark); end - def initialize(uri=T.unsafe(nil), fallback_timeout=T.unsafe(nil)); end + def barmark=(mark); end - def uri(); end + def clear(); end - def uri=(uri); end + def file_transfer_mode(); end - def valid?(); end + def finish(); end - def validate!(probe=T.unsafe(nil)); end - DEFAULT_FALLBACK_TIMEOUT = ::T.let(nil, ::T.untyped) -end + def flush(); end -class Bundler::Settings::Mirror -end + def format(format, *arguments); end -class Bundler::Settings::Mirrors - def each(&blk); end + def format=(format); end - def for(uri); end + def format_arguments(); end - def initialize(prober=T.unsafe(nil)); end + def format_arguments=(format_arguments); end - def parse(key, value); end -end + def halt(); end -class Bundler::Settings::Mirrors -end + def inc(step=T.unsafe(nil)); end -class Bundler::Settings::Validator -end + def initialize(title, total, out=T.unsafe(nil)); end -class Bundler::Settings::Validator::Rule - def description(); end + def mark=(mark); end - def fail!(key, value, *reasons); end + def reset(); end - def initialize(keys, description, &validate); end + def set(count); end - def k(key); end + def standard_mode(); end - def set(settings, key, value, *reasons); end + def style(options); end - def validate!(key, value, settings); end -end + def styles(); end -class Bundler::Settings::Validator::Rule -end + def styles=(styles); end -class Bundler::Settings::Validator - def self.validate!(key, value, settings); end -end + def title=(str); end -class Bundler::Source::Git - def glob(); end -end + def total_overflow=(boolv); end -class Bundler::SpecSet - include ::Enumerable + def transfer_mode(); end end -class Bundler::Thor - include ::Bundler::Thor::Base - include ::Bundler::Thor::Invocation - include ::Bundler::Thor::Shell - def help(command=T.unsafe(nil), subcommand=T.unsafe(nil)); end - HELP_MAPPINGS = ::T.let(nil, ::T.untyped) - TEMPLATE_EXTNAME = ::T.let(nil, ::T.untyped) - THOR_RESERVED_WORDS = ::T.let(nil, ::T.untyped) +class ANSI::ProgressBar end -module Bundler::Thor::Actions - def _cleanup_options_and_set(options, key); end - - def _shared_configuration(); end - - def action(instance); end +ANSI::Progressbar = ANSI::ProgressBar - def add_file(destination, *args, &block); end +class ANSI::String + def +(other); end - def add_link(destination, *args); end + def [](*args); end - def append_file(path, *args, &block); end + def ansi(code); end - def append_to_file(path, *args, &block); end + def ansi!(code); end - def apply(path, config=T.unsafe(nil)); end + def black(); end - def behavior(); end + def black!(); end - def behavior=(behavior); end + def blue(); end - def chmod(path, mode, config=T.unsafe(nil)); end + def blue!(); end - def comment_lines(path, flag, *args); end + def bold(); end - def copy_file(source, *args, &block); end + def bold!(); end - def create_file(destination, *args, &block); end + def color(code); end - def create_link(destination, *args); end + def color!(code); end - def destination_root(); end + def cyan(); end - def destination_root=(root); end + def cyan!(); end - def directory(source, *args, &block); end + def downcase(); end - def empty_directory(destination, config=T.unsafe(nil)); end + def downcase!(); end - def find_in_source_paths(file); end + def green(); end - def get(source, *args, &block); end + def green!(); end - def gsub_file(path, flag, *args, &block); end + def gsub(pattern, replacement=T.unsafe(nil), &block); end - def in_root(); end + def gsub!(pattern, replacement=T.unsafe(nil), &block); end - def initialize(args=T.unsafe(nil), options=T.unsafe(nil), config=T.unsafe(nil)); end + def initialize(text=T.unsafe(nil), marks=T.unsafe(nil)); end - def inject_into_class(path, klass, *args, &block); end + def magenta(); end - def inject_into_file(destination, *args, &block); end + def magenta!(); end - def inject_into_module(path, module_name, *args, &block); end + def marks(); end - def insert_into_file(destination, *args, &block); end + def red(); end - def inside(dir=T.unsafe(nil), config=T.unsafe(nil), &block); end + def red!(); end - def link_file(source, *args); end + def size(); end - def prepend_file(path, *args, &block); end + def slice(*args); end - def prepend_to_file(path, *args, &block); end + def sub(pattern, replacement=T.unsafe(nil), &block); end - def relative_to_original_destination_root(path, remove_dot=T.unsafe(nil)); end + def sub!(pattern, replacement=T.unsafe(nil), &block); end - def remove_dir(path, config=T.unsafe(nil)); end + def text(); end - def remove_file(path, config=T.unsafe(nil)); end + def to_str(); end - def run(command, config=T.unsafe(nil)); end + def underline(); end - def run_ruby_script(command, config=T.unsafe(nil)); end + def underline!(); end - def source_paths(); end + def upcase(); end - def template(source, *args, &block); end + def upcase!(); end - def thor(command, *args); end + def yellow(); end - def uncomment_lines(path, flag, *args); end - WARNINGS = ::T.let(nil, ::T.untyped) + def yellow!(); end + CLR = ::T.let(nil, ::T.untyped) end -class Bundler::Thor::Actions::CapturableERB +class ANSI::String end -class Bundler::Thor::Actions::CapturableERB -end +class ANSI::Table + def align(); end -module Bundler::Thor::Actions::ClassMethods - def add_runtime_options!(); end + def align=(align); end - def source_paths(); end + def border(); end - def source_paths_for_search(); end + def border=(border); end - def source_root(path=T.unsafe(nil)); end -end + def fit(); end -module Bundler::Thor::Actions::ClassMethods -end + def fit=(fit); end -class Bundler::Thor::Actions::CreateFile - def data(); end + def format(); end - def force_on_collision?(); end + def format=(format); end - def force_or_skip_or_conflict(force, skip, &block); end + def initialize(table, options=T.unsafe(nil), &format); end - def identical?(); end + def padding(); end - def initialize(base, destination, data, config=T.unsafe(nil)); end + def padding=(padding); end - def on_conflict_behavior(&block); end + def table(); end - def render(); end + def table=(table); end end -class Bundler::Thor::Actions::CreateFile +class ANSI::Table end -class Bundler::Thor::Actions::CreateLink +module ANSI::Terminal + CHARACTER_MODE = ::T.let(nil, ::T.untyped) end -class Bundler::Thor::Actions::CreateLink -end +module ANSI::Terminal + def self.get_character(input=T.unsafe(nil)); end -class Bundler::Thor::Actions::Directory - def execute!(); end + def self.raw_no_echo_mode(); end - def file_level_lookup(previous_lookup); end + def self.restore_mode(); end - def files(lookup); end + def self.terminal_height(); end - def initialize(base, source, destination=T.unsafe(nil), config=T.unsafe(nil), &block); end + def self.terminal_size(); end - def source(); end + def self.terminal_width(); end end -class Bundler::Thor::Actions::Directory -end +module ANSI + extend ::ANSI::Code + extend ::ANSI::Constants + def self.const_missing(name); end -class Bundler::Thor::Actions::EmptyDirectory - def base(); end + def self.metadata(); end - def config(); end + def self.string(str); end +end - def convert_encoded_instructions(filename); end +class Array + include ::JSON::Ext::Generator::GeneratorMethods::Array + def shelljoin(); end - def destination(); end + def to_h(); end +end - def destination=(destination); end +class Array + def self.try_convert(arg); end +end - def exists?(); end +BasicObject::BasicObject = BasicObject - def given_destination(); end +class BigDecimal + def clone(); end + EXCEPTION_NaN = ::T.let(nil, ::T.untyped) + VERSION = ::T.let(nil, ::T.untyped) +end - def initialize(base, destination, config=T.unsafe(nil)); end +class BigDecimal + def self.ver(); end +end - def invoke!(); end +class Binding + def clone(); end - def invoke_with_conflict_check(&block); end + def irb(); end +end - def on_conflict_behavior(); end +class Bundler::APIResponseInvalidDependenciesError + def status_code(); end +end - def on_file_clash_behavior(); end +class Bundler::APIResponseInvalidDependenciesError +end - def pretend?(); end +class Bundler::CurrentRuby + def jruby_30?(); end - def relative_destination(); end + def jruby_31?(); end - def revoke!(); end + def jruby_3?(); end - def say_status(status, color); end -end + def maglev_30?(); end -class Bundler::Thor::Actions::EmptyDirectory -end + def maglev_31?(); end -class Bundler::Thor::Actions::InjectIntoFile - def behavior(); end + def maglev_3?(); end - def flag(); end + def mingw_30?(); end - def initialize(base, destination, data, config); end + def mingw_31?(); end - def replace!(regexp, string, force); end + def mingw_3?(); end - def replacement(); end + def mri_30?(); end - def say_status(behavior, warning: T.unsafe(nil), color: T.unsafe(nil)); end -end + def mri_31?(); end -class Bundler::Thor::Actions::InjectIntoFile -end + def mri_3?(); end -module Bundler::Thor::Actions - def self.included(base); end -end + def mswin64_30?(); end -class Bundler::Thor::AmbiguousCommandError -end + def mswin64_31?(); end -class Bundler::Thor::AmbiguousCommandError -end + def mswin64_3?(); end -Bundler::Thor::AmbiguousTaskError = Bundler::Thor::AmbiguousCommandError + def mswin_30?(); end -class Bundler::Thor::Argument - def banner(); end + def mswin_31?(); end - def default(); end + def mswin_3?(); end - def default_banner(); end + def on_30?(); end - def description(); end + def on_31?(); end - def enum(); end + def on_3?(); end - def human_name(); end + def rbx_30?(); end - def initialize(name, options=T.unsafe(nil)); end + def rbx_31?(); end - def name(); end + def rbx_3?(); end - def required(); end + def ruby_30?(); end - def required?(); end + def ruby_31?(); end - def show_default?(); end + def ruby_3?(); end - def type(); end + def truffleruby_30?(); end - def usage(); end + def truffleruby_31?(); end - def valid_type?(type); end + def truffleruby_3?(); end - def validate!(); end - VALID_TYPES = ::T.let(nil, ::T.untyped) -end + def x64_mingw_30?(); end -class Bundler::Thor::Argument + def x64_mingw_31?(); end + + def x64_mingw_3?(); end end -class Bundler::Thor::Arguments - def initialize(arguments=T.unsafe(nil)); end +class Bundler::Definition + def deleted_deps(); end - def parse(args); end + def dependencies_for(groups); end - def remaining(); end - NUMERIC = ::T.let(nil, ::T.untyped) -end + def locked_dependencies(); end -class Bundler::Thor::Arguments - def self.parse(*args); end + def most_specific_locked_platform(); end - def self.split(args); end -end + def new_deps(); end -module Bundler::Thor::Base - def args(); end + def requested_dependencies(); end - def args=(args); end + def resolve_only_locally!(); end - def initialize(args=T.unsafe(nil), local_options=T.unsafe(nil), config=T.unsafe(nil)); end + def resolve_prefering_local!(); end +end - def options(); end +class Bundler::Definition + def self.no_lock(); end - def options=(options); end + def self.no_lock=(no_lock); end +end - def parent_options(); end +class Bundler::DepProxy + def clone(); end +end - def parent_options=(parent_options); end +class Bundler::DepProxy + def self.get_proxy(dep, platform); end end -module Bundler::Thor::Base::ClassMethods - def all_commands(); end +class Bundler::Dependency + def branch(); end - def all_tasks(); end + def expanded_platforms(); end - def allow_incompatible_default_type!(); end + def git(); end - def argument(name, options=T.unsafe(nil)); end + def github(); end - def arguments(); end + def ref(); end +end - def attr_accessor(*arg); end +Bundler::Deprecate = Gem::Deprecate - def attr_reader(*arg); end +module Bundler::Digest + SHA1_MASK = ::T.let(nil, ::T.untyped) + SHA1_WORDS = ::T.let(nil, ::T.untyped) +end - def attr_writer(*arg); end +module Bundler::Digest + def self.sha1(string); end +end - def baseclass(); end +class Bundler::DirectoryRemovalError + def initialize(orig_exception, msg); end - def basename(); end + def status_code(); end +end - def build_option(name, options, scope); end +class Bundler::DirectoryRemovalError +end - def build_options(options, scope); end +class Bundler::Dsl + def check_primary_source_safety(); end + GITHUB_PULL_REQUEST_URL = ::T.let(nil, ::T.untyped) +end - def check_default_type(); end +class Bundler::Env +end - def check_default_type!(); end +class Bundler::Env + def self.environment(); end - def check_unknown_options(); end + def self.report(options=T.unsafe(nil)); end - def check_unknown_options!(); end + def self.write(io); end +end - def check_unknown_options?(config); end +class Bundler::EnvironmentPreserver + def replace_with_backup(); end +end - def class_option(name, options=T.unsafe(nil)); end +class Bundler::EnvironmentPreserver + def self.env_to_hash(env); end - def class_options(options=T.unsafe(nil)); end + def self.from_env(); end +end - def class_options_help(shell, groups=T.unsafe(nil)); end +class Bundler::Fetcher + def fetch_spec(spec); end - def commands(); end + def fetchers(); end - def create_command(meth); end + def http_proxy(); end - def create_task(meth); end + def initialize(remote); end - def disable_required_check?(command_name); end + def specs(gem_names, source); end - def dispatch(command, given_args, given_opts, config); end + def specs_with_retry(gem_names, source); end - def exit_on_failure?(); end + def uri(); end - def find_and_refresh_command(name); end + def use_api(); end - def find_and_refresh_task(name); end + def user_agent(); end + FAIL_ERRORS = ::T.let(nil, ::T.untyped) + FETCHERS = ::T.let(nil, ::T.untyped) + HTTP_ERRORS = ::T.let(nil, ::T.untyped) + NET_ERRORS = ::T.let(nil, ::T.untyped) +end - def from_superclass(method, default=T.unsafe(nil)); end +class Bundler::Fetcher::AuthenticationRequiredError + def initialize(remote_uri); end +end - def group(name=T.unsafe(nil)); end +class Bundler::Fetcher::BadAuthenticationError + def initialize(remote_uri); end +end - def handle_argument_error(command, error, args, arity); end +class Bundler::Fetcher::Base + def api_fetcher?(); end - def handle_no_command_error(command, has_namespace=T.unsafe(nil)); end + def available?(); end - def handle_no_task_error(command, has_namespace=T.unsafe(nil)); end + def display_uri(); end - def inherited(klass); end + def downloader(); end - def initialize_added(); end + def fetch_uri(); end - def is_thor_reserved_word?(word, type); end + def initialize(downloader, remote, display_uri); end - def method_added(meth); end + def remote(); end - def namespace(name=T.unsafe(nil)); end + def remote_uri(); end +end - def no_commands(&block); end +class Bundler::Fetcher::Base +end - def no_commands?(); end +class Bundler::Fetcher::CertificateFailureError + def initialize(remote_uri); end +end - def no_commands_context(); end +class Bundler::Fetcher::CompactIndex + def available?(*args, &blk); end - def no_tasks(&block); end + def specs(*args, &blk); end - def print_options(shell, options, group_name=T.unsafe(nil)); end + def specs_for_names(gem_names); end +end - def public_command(*names); end +class Bundler::Fetcher::CompactIndex::ClientFetcher + def call(path, headers); end - def public_task(*names); end + def fetcher(); end - def remove_argument(*names); end + def fetcher=(_); end - def remove_class_option(*names); end + def ui(); end - def remove_command(*names); end + def ui=(_); end +end - def remove_task(*names); end +class Bundler::Fetcher::CompactIndex::ClientFetcher + def self.[](*arg); end - def start(given_args=T.unsafe(nil), config=T.unsafe(nil)); end + def self.members(); end +end - def stop_on_unknown_option?(command_name); end +class Bundler::Fetcher::CompactIndex + def self.compact_index_request(method_name); end +end - def strict_args_position(); end +class Bundler::Fetcher::Dependency + def dependency_api_uri(gem_names=T.unsafe(nil)); end - def strict_args_position!(); end + def dependency_specs(gem_names); end - def strict_args_position?(config); end + def get_formatted_specs_and_deps(gem_list); end - def tasks(); end + def specs(gem_names, full_dependency_list=T.unsafe(nil), last_spec_list=T.unsafe(nil)); end + + def unmarshalled_dep_gems(gem_names); end end -module Bundler::Thor::Base::ClassMethods +class Bundler::Fetcher::Dependency end -module Bundler::Thor::Base - def self.included(base); end +class Bundler::Fetcher::Downloader + def connection(); end - def self.register_klass_file(klass); end + def fetch(uri, headers=T.unsafe(nil), counter=T.unsafe(nil)); end - def self.shell(); end + def initialize(connection, redirect_limit); end - def self.shell=(shell); end + def redirect_limit(); end - def self.subclass_files(); end + def request(uri, headers); end +end - def self.subclasses(); end +class Bundler::Fetcher::Downloader end -class Bundler::Thor::Command - def formatted_usage(klass, namespace=T.unsafe(nil), subcommand=T.unsafe(nil)); end +class Bundler::Fetcher::Index + def specs(_gem_names); end +end - def handle_argument_error?(instance, error, caller); end +class Bundler::Fetcher::Index +end - def handle_no_method_error?(instance, error, caller); end +class Bundler::Fetcher::SSLError + def initialize(msg=T.unsafe(nil)); end +end - def hidden?(); end +class Bundler::Fetcher::TooManyRequestsError +end - def initialize(name, description, long_description, usage, options=T.unsafe(nil)); end +class Bundler::Fetcher::TooManyRequestsError +end - def local_method?(instance, name); end +class Bundler::Fetcher + def self.api_timeout(); end - def not_debugging?(instance); end + def self.api_timeout=(api_timeout); end - def private_method?(instance); end + def self.disable_endpoint(); end - def public_method?(instance); end + def self.disable_endpoint=(disable_endpoint); end - def required_arguments_for(klass, usage); end + def self.max_retries(); end - def required_options(); end + def self.max_retries=(max_retries); end - def run(instance, args=T.unsafe(nil)); end + def self.redirect_limit(); end - def sans_backtrace(backtrace, caller); end - FILE_REGEXP = ::T.let(nil, ::T.untyped) + def self.redirect_limit=(redirect_limit); end end -class Bundler::Thor::Command +module Bundler::FileUtils + VERSION = ::T.let(nil, ::T.untyped) end -module Bundler::Thor::CoreExt +class Bundler::FileUtils::Entry_ + def link(dest); end end -class Bundler::Thor::CoreExt::HashWithIndifferentAccess - def [](key); end +module Bundler::FileUtils + def self.cp_lr(src, dest, noop: T.unsafe(nil), verbose: T.unsafe(nil), dereference_root: T.unsafe(nil), remove_destination: T.unsafe(nil)); end - def []=(key, value); end + def self.link_entry(src, dest, dereference_root=T.unsafe(nil), remove_destination=T.unsafe(nil)); end +end - def convert_key(key); end +class Bundler::GemHelper + include ::Rake::DSL + include ::Rake::FileUtilsExt + include ::FileUtils + include ::FileUtils::StreamUtils_ + def allowed_push_host(); end - def delete(key); end + def already_tagged?(); end - def fetch(key, *args); end + def base(); end - def initialize(hash=T.unsafe(nil)); end + def build_checksum(built_gem_path=T.unsafe(nil)); end - def key?(key); end + def build_gem(); end - def merge(other); end + def built_gem_path(); end - def merge!(other); end + def clean?(); end - def method_missing(method, *args); end + def committed?(); end - def replace(other_hash); end + def current_branch(); end - def reverse_merge(other); end + def default_remote(); end - def reverse_merge!(other_hash); end + def gem_command(); end - def values_at(*indices); end -end + def gem_key(); end -class Bundler::Thor::CoreExt::HashWithIndifferentAccess -end + def gem_push?(); end -module Bundler::Thor::CoreExt -end + def gem_push_host(); end -Bundler::Thor::Correctable = DidYouMean::Correctable + def gemspec(); end -class Bundler::Thor::DynamicCommand - def initialize(name, options=T.unsafe(nil)); end -end + def git_push(remote=T.unsafe(nil)); end -class Bundler::Thor::DynamicCommand -end + def guard_clean(); end -Bundler::Thor::DynamicTask = Bundler::Thor::DynamicCommand + def initialize(base=T.unsafe(nil), name=T.unsafe(nil)); end -class Bundler::Thor::Error -end + def install(); end -class Bundler::Thor::Error -end + def install_gem(built_gem_path=T.unsafe(nil), local=T.unsafe(nil)); end -class Bundler::Thor::Group - include ::Bundler::Thor::Base - include ::Bundler::Thor::Invocation - include ::Bundler::Thor::Shell - def _invoke_for_class_method(klass, command=T.unsafe(nil), *args, &block); end -end + def name(); end -class Bundler::Thor::Group - extend ::Bundler::Thor::Base::ClassMethods - extend ::Bundler::Thor::Invocation::ClassMethods - def self.banner(); end + def rubygem_push(path); end - def self.desc(description=T.unsafe(nil)); end + def sh(cmd, &block); end - def self.get_options_from_invocations(group_options, base_options); end + def sh_with_input(cmd); end - def self.handle_argument_error(command, error, _args, arity); end + def sh_with_status(cmd, &block); end - def self.help(shell); end + def spec_path(); end - def self.invocation_blocks(); end + def tag_prefix=(tag_prefix); end - def self.invocations(); end + def tag_version(); end - def self.invoke(*names, &block); end + def version(); end - def self.invoke_from_option(*names, &block); end + def version_tag(); end +end - def self.printable_commands(*arg); end +class Bundler::GemHelper + def self.gemspec(&block); end - def self.printable_tasks(*arg); end + def self.install_tasks(opts=T.unsafe(nil)); end - def self.remove_invocation(*names); end + def self.instance(); end - def self.self_command(); end + def self.instance=(instance); end - def self.self_task(); end + def self.tag_prefix=(prefix); end end -class Bundler::Thor::HiddenCommand +class Bundler::GemHelpers::PlatformMatch + def self.specificity_score(spec_platform, user_platform); end end -class Bundler::Thor::HiddenCommand -end +module Bundler::GemHelpers + def self.local_platform(); end -Bundler::Thor::HiddenTask = Bundler::Thor::HiddenCommand + def self.same_deps(spec, exemplary_spec); end -module Bundler::Thor::Invocation - def _parse_initialization_options(args, opts, config); end + def self.same_specificity(platform, spec, exemplary_spec); end - def _retrieve_class_and_command(name, sent_command=T.unsafe(nil)); end + def self.sort_best_platform_match(matching, platform); end +end - def _retrieve_class_and_task(name, sent_command=T.unsafe(nil)); end +class Bundler::GemVersionPromoter + def initialize(locked_specs=T.unsafe(nil), unlock_gems=T.unsafe(nil)); end - def _shared_configuration(); end + def level(); end - def current_command_chain(); end + def level=(value); end - def initialize(args=T.unsafe(nil), options=T.unsafe(nil), config=T.unsafe(nil), &block); end + def locked_specs(); end - def invoke(name=T.unsafe(nil), *args); end + def major?(); end - def invoke_all(); end + def minor?(); end - def invoke_command(command, *args); end + def prerelease_specified(); end - def invoke_task(command, *args); end + def prerelease_specified=(prerelease_specified); end - def invoke_with_padding(*args); end -end + def sort_versions(dep, spec_groups); end -module Bundler::Thor::Invocation::ClassMethods - def prepare_for_invocation(key, name); end -end + def strict(); end -module Bundler::Thor::Invocation::ClassMethods -end + def strict=(strict); end -module Bundler::Thor::Invocation - def self.included(base); end + def unlock_gems(); end + DEBUG = ::T.let(nil, ::T.untyped) end -class Bundler::Thor::InvocationError +class Bundler::GemVersionPromoter end -class Bundler::Thor::InvocationError -end +class Bundler::Graph + def edge_options(); end -module Bundler::Thor::LineEditor -end + def groups(); end -class Bundler::Thor::LineEditor::Basic - def initialize(prompt, options); end + def initialize(env, output_file, show_version=T.unsafe(nil), show_requirements=T.unsafe(nil), output_format=T.unsafe(nil), without=T.unsafe(nil)); end - def options(); end + def node_options(); end - def prompt(); end + def output_file(); end - def readline(); end -end + def output_format(); end -class Bundler::Thor::LineEditor::Basic - def self.available?(); end -end + def relations(); end -class Bundler::Thor::LineEditor::Readline + def viz(); end + GRAPH_NAME = ::T.let(nil, ::T.untyped) end -class Bundler::Thor::LineEditor::Readline::PathCompletion - def initialize(text); end +class Bundler::Graph::GraphVizClient + def g(); end - def matches(); end + def initialize(graph_instance); end + + def run(); end end -class Bundler::Thor::LineEditor::Readline::PathCompletion +class Bundler::Graph::GraphVizClient end -class Bundler::Thor::LineEditor::Readline +class Bundler::Graph end -module Bundler::Thor::LineEditor - def self.best_available(); end +class Bundler::IncompleteSpecification + def initialize(name, platform); end - def self.readline(prompt, options=T.unsafe(nil)); end + def name(); end + + def platform(); end end -class Bundler::Thor::MalformattedArgumentError +class Bundler::IncompleteSpecification end -class Bundler::Thor::MalformattedArgumentError +class Bundler::Index + include ::Enumerable end -class Bundler::Thor::NestedContext - def enter(); end +class Bundler::Injector + def initialize(deps, options=T.unsafe(nil)); end - def entered?(); end -end + def inject(gemfile_path, lockfile_path); end -class Bundler::Thor::NestedContext + def remove(gemfile_path, lockfile_path); end + INJECTED_GEMS = ::T.let(nil, ::T.untyped) end -class Bundler::Thor::NoKwargSpellChecker - def initialize(dictionary); end +class Bundler::Injector + def self.inject(new_deps, options=T.unsafe(nil)); end + + def self.remove(gems, options=T.unsafe(nil)); end end -class Bundler::Thor::NoKwargSpellChecker +class Bundler::Installer + def definition(); end end -class Bundler::Thor::Option - def aliases(); end +class Bundler::LazySpecification + def eql?(other); end - def array?(); end + def force_ruby_platform(); end - def boolean?(); end + def force_ruby_platform=(force_ruby_platform); end - def dasherize(str); end + def materialize_for_installation(); end - def dasherized?(); end + def platform_string(); end +end - def group(); end +class Bundler::LockfileParser + def may_include_redundant_platform_specific_gems?(); end +end - def hash?(); end +class Bundler::LockfileParser + def self.bundled_with(); end +end - def hide(); end +module Bundler::Molinillo::SpecificationProvider + def dependencies_equal?(dependencies, other_dependencies); end +end - def lazy_default(); end +class Bundler::PermissionError + def parent_folder(); end - def numeric?(); end + def permission_type(); end +end - def repeatable(); end +module Bundler::Plugin::API::Source + def ==(other); end - def string?(); end + def add_dependency_names(names); end - def switch_name(); end + def app_cache_dirname(); end - def undasherize(str); end + def app_cache_path(custom_path=T.unsafe(nil)); end - def usage(padding=T.unsafe(nil)); end + def cache(spec, custom_path=T.unsafe(nil)); end - def validate_default_type!(); end - VALID_TYPES = ::T.let(nil, ::T.untyped) -end + def cached!(); end -class Bundler::Thor::Option - def self.parse(key, value); end -end + def can_lock?(spec); end -class Bundler::Thor::Options - def assign_result!(option, result); end + def dependency_names(); end - def check_unknown!(); end + def dependency_names=(dependency_names); end - def current_is_switch?(); end + def double_check_for(*arg); end - def current_is_switch_formatted?(); end + def eql?(other); end - def initialize(hash_options=T.unsafe(nil), defaults=T.unsafe(nil), stop_on_unknown=T.unsafe(nil), disable_required_check=T.unsafe(nil)); end + def fetch_gemspec_files(); end - def normalize_switch(arg); end + def gem_install_dir(); end - def parse_boolean(switch); end + def hash(); end - def parse_peek(switch, option); end + def identifier(); end - def parsing_options?(); end + def include?(other); end - def switch?(arg); end + def initialize(opts); end - def switch_option(arg); end - EQ_RE = ::T.let(nil, ::T.untyped) - LONG_RE = ::T.let(nil, ::T.untyped) - OPTS_END = ::T.let(nil, ::T.untyped) - SHORT_NUM = ::T.let(nil, ::T.untyped) - SHORT_RE = ::T.let(nil, ::T.untyped) - SHORT_SQ_RE = ::T.let(nil, ::T.untyped) + def install(spec, opts); end + + def install_path(); end + + def installed?(); end + + def local!(); end + + def name(); end + + def options(); end + + def options_to_lock(); end + + def post_install(spec, disable_exts=T.unsafe(nil)); end + + def remote!(); end + + def root(); end + + def spec_names(); end + + def specs(); end + + def to_lock(); end + + def to_s(); end + + def unlock!(); end + + def unmet_deps(); end + + def uri(); end + + def uri_hash(); end end -class Bundler::Thor::Options - def self.to_switches(options); end +module Bundler::Plugin::API::Source end -module Bundler::Thor::RakeCompat - include ::Rake::DSL - include ::Rake::FileUtilsExt - include ::FileUtils - include ::FileUtils::StreamUtils_ +module Bundler::Plugin::Events + GEM_AFTER_INSTALL = ::T.let(nil, ::T.untyped) + GEM_AFTER_INSTALL_ALL = ::T.let(nil, ::T.untyped) + GEM_BEFORE_INSTALL = ::T.let(nil, ::T.untyped) + GEM_BEFORE_INSTALL_ALL = ::T.let(nil, ::T.untyped) end -module Bundler::Thor::RakeCompat - def self.included(base); end +class Bundler::Plugin::Index + def installed_plugins(); end - def self.rake_classes(); end + def plugin_commands(plugin); end + + def unregister_plugin(name); end end -class Bundler::Thor::RequiredArgumentMissingError +class Bundler::Plugin::Index::CommandConflict + def initialize(plugin, commands); end end -class Bundler::Thor::RequiredArgumentMissingError +class Bundler::Plugin::Index::CommandConflict end -module Bundler::Thor::Sandbox +class Bundler::Plugin::Index::SourceConflict + def initialize(plugin, sources); end end -module Bundler::Thor::Sandbox +class Bundler::Plugin::Index::SourceConflict end -module Bundler::Thor::Shell - def _shared_configuration(); end +class Bundler::Plugin::Installer + def install(names, options); end - def ask(*args, &block); end + def install_definition(definition); end +end - def error(*args, &block); end +class Bundler::Plugin::Installer::Git + def generate_bin(spec, disable_extensions=T.unsafe(nil)); end +end - def file_collision(*args, &block); end +class Bundler::Plugin::Installer::Git +end - def initialize(args=T.unsafe(nil), options=T.unsafe(nil), config=T.unsafe(nil)); end +class Bundler::Plugin::Installer::Rubygems +end - def no?(*args, &block); end +class Bundler::Plugin::Installer::Rubygems +end - def print_in_columns(*args, &block); end +class Bundler::Plugin::Installer +end - def print_table(*args, &block); end +class Bundler::Plugin::PluginInstallError +end - def print_wrapped(*args, &block); end +class Bundler::Plugin::PluginInstallError +end - def say(*args, &block); end +class Bundler::Plugin::SourceList +end - def say_status(*args, &block); end +class Bundler::Plugin::SourceList +end - def set_color(*args, &block); end +module Bundler::Plugin + def self.list(); end - def shell(); end + def self.save_plugin(name, spec, optional_plugin=T.unsafe(nil)); end - def shell=(shell); end + def self.uninstall(names, options); end +end - def terminal_width(*args, &block); end +class Bundler::ProcessLock +end - def with_padding(); end +class Bundler::ProcessLock + def self.lock(bundle_path=T.unsafe(nil)); end +end - def yes?(*args, &block); end - SHELL_DELEGATED_METHODS = ::T.let(nil, ::T.untyped) +class Bundler::RemoteSpecification + def required_rubygems_version(); end end -class Bundler::Thor::Shell::Basic - def answer_match(possibilities, answer, case_insensitive); end +class Bundler::Resolver + include ::Bundler::GemHelpers + def results_for(dependency); end - def as_unicode(); end + def source_for(name); end +end - def ask(statement, *args); end +class Bundler::Resolver::SpecGroup + def activated_platforms(); end - def ask_filtered(statement, color, options); end + def activated_platforms=(activated_platforms); end - def ask_simply(statement, color, options); end + def force_ruby_platform(); end - def base(); end + def force_ruby_platform=(force_ruby_platform); end - def base=(base); end + def sorted_activated_platforms(); end +end - def can_display_colors?(); end +class Bundler::Resolver::SpecGroup + def self.create_for(specs, all_platforms, specific_platform); end +end - def dynamic_width(); end +class Bundler::Retry + def attempt(&block); end - def dynamic_width_stty(); end + def attempts(&block); end - def dynamic_width_tput(); end + def current_run(); end - def error(statement); end + def current_run=(current_run); end - def file_collision(destination); end + def initialize(name, exceptions=T.unsafe(nil), retries=T.unsafe(nil)); end - def file_collision_help(); end + def name(); end - def git_merge_tool(); end + def name=(name); end - def indent(count=T.unsafe(nil)); end + def total_runs(); end - def is?(value); end + def total_runs=(total_runs); end +end - def lookup_color(color); end +class Bundler::Retry + def self.attempts(); end - def merge(destination, content); end + def self.default_attempts(); end - def merge_tool(); end + def self.default_retries(); end +end - def mute(); end +class Bundler::RubygemsIntegration + def add_default_gems_to(specs); end - def mute?(); end + def add_to_load_path(paths); end - def no?(statement, color=T.unsafe(nil)); end + def all_specs(); end - def padding(); end + def backport_ext_builder_monitor(); end - def padding=(value); end + def correct_for_windows_path(path); end - def prepare_message(message, *color); end + def default_stubs(); end - def print_in_columns(array); end + def find_bundler(version); end - def print_table(array, options=T.unsafe(nil)); end + def find_name(name); end - def print_wrapped(message, options=T.unsafe(nil)); end + def gem_remote_fetcher(); end - def quiet?(); end + def load_env_plugins(); end - def say(message=T.unsafe(nil), color=T.unsafe(nil), force_new_line=T.unsafe(nil)); end + def plain_specs(); end - def say_status(status, message, log_status=T.unsafe(nil)); end + def plain_specs=(specs); end - def set_color(string, *arg); end + def stub_rubygems(specs); end - def show_diff(destination, content); end + def supports_bundler_trampolining?(); end +end - def stderr(); end +class Bundler::SelfManager + def install_locked_bundler_and_restart_with_it_if_needed(); end - def stdout(); end + def restart_with_locked_bundler_if_needed(); end - def terminal_width(); end + def update_bundler_and_restart_with_it_if_needed(target); end +end - def truncate(string, width); end +class Bundler::SelfManager +end - def unix?(); end +class Bundler::Settings + def processor_count(); end + STRING_KEYS = ::T.let(nil, ::T.untyped) +end - def yes?(statement, color=T.unsafe(nil)); end - DEFAULT_TERMINAL_WIDTH = ::T.let(nil, ::T.untyped) +class Bundler::Settings::Mirror + def ==(other); end + + def fallback_timeout(); end + + def fallback_timeout=(timeout); end + + def initialize(uri=T.unsafe(nil), fallback_timeout=T.unsafe(nil)); end + + def uri(); end + + def uri=(uri); end + + def valid?(); end + + def validate!(probe=T.unsafe(nil)); end + DEFAULT_FALLBACK_TIMEOUT = ::T.let(nil, ::T.untyped) end -class Bundler::Thor::Shell::Basic +class Bundler::Settings::Mirror end -class Bundler::Thor::Shell::Color - def are_colors_disabled?(); end +class Bundler::Settings::Mirrors + def each(&blk); end - def diff_lcs_loaded?(); end + def for(uri); end - def output_diff_line(diff); end + def initialize(prober=T.unsafe(nil)); end - def set_color(string, *colors); end - BLACK = ::T.let(nil, ::T.untyped) - BLUE = ::T.let(nil, ::T.untyped) - BOLD = ::T.let(nil, ::T.untyped) - CLEAR = ::T.let(nil, ::T.untyped) - CYAN = ::T.let(nil, ::T.untyped) - GREEN = ::T.let(nil, ::T.untyped) - MAGENTA = ::T.let(nil, ::T.untyped) - ON_BLACK = ::T.let(nil, ::T.untyped) - ON_BLUE = ::T.let(nil, ::T.untyped) - ON_CYAN = ::T.let(nil, ::T.untyped) - ON_GREEN = ::T.let(nil, ::T.untyped) - ON_MAGENTA = ::T.let(nil, ::T.untyped) - ON_RED = ::T.let(nil, ::T.untyped) - ON_WHITE = ::T.let(nil, ::T.untyped) - ON_YELLOW = ::T.let(nil, ::T.untyped) - RED = ::T.let(nil, ::T.untyped) - WHITE = ::T.let(nil, ::T.untyped) - YELLOW = ::T.let(nil, ::T.untyped) + def parse(key, value); end end -class Bundler::Thor::Shell::Color +class Bundler::Settings::Mirrors end -class Bundler::Thor::Shell::HTML - def ask(statement, color=T.unsafe(nil)); end +class Bundler::Settings::Validator +end - def diff_lcs_loaded?(); end +class Bundler::Settings::Validator::Rule + def description(); end - def output_diff_line(diff); end + def fail!(key, value, *reasons); end - def set_color(string, *colors); end - BLACK = ::T.let(nil, ::T.untyped) - BLUE = ::T.let(nil, ::T.untyped) - BOLD = ::T.let(nil, ::T.untyped) - CYAN = ::T.let(nil, ::T.untyped) - GREEN = ::T.let(nil, ::T.untyped) - MAGENTA = ::T.let(nil, ::T.untyped) - ON_BLACK = ::T.let(nil, ::T.untyped) - ON_BLUE = ::T.let(nil, ::T.untyped) - ON_CYAN = ::T.let(nil, ::T.untyped) - ON_GREEN = ::T.let(nil, ::T.untyped) - ON_MAGENTA = ::T.let(nil, ::T.untyped) - ON_RED = ::T.let(nil, ::T.untyped) - ON_WHITE = ::T.let(nil, ::T.untyped) - ON_YELLOW = ::T.let(nil, ::T.untyped) - RED = ::T.let(nil, ::T.untyped) - WHITE = ::T.let(nil, ::T.untyped) - YELLOW = ::T.let(nil, ::T.untyped) + def initialize(keys, description, &validate); end + + def k(key); end + + def set(settings, key, value, *reasons); end + + def validate!(key, value, settings); end end -class Bundler::Thor::Shell::HTML +class Bundler::Settings::Validator::Rule end -module Bundler::Thor::Shell +class Bundler::Settings::Validator + def self.validate!(key, value, settings); end end -Bundler::Thor::Task = Bundler::Thor::Command +class Bundler::Settings + def self.key_for(key); end +end -class Bundler::Thor::UndefinedCommandError - include ::DidYouMean::Correctable - def all_commands(); end +class Bundler::Source + def add_dependency_names(names); end - def command(); end + def cached!(); end - def initialize(command, all_commands, namespace); end -end + def identifier(); end -class Bundler::Thor::UndefinedCommandError::SpellChecker - def corrections(); end + def local!(); end - def error(); end + def local_only!(); end - def initialize(error); end + def remote!(); end - def spell_checker(); end + def spec_names(); end end -class Bundler::Thor::UndefinedCommandError::SpellChecker -end +class Bundler::Source::Git + def glob(); end -class Bundler::Thor::UndefinedCommandError + def local?(); end end -Bundler::Thor::UndefinedTaskError = Bundler::Thor::UndefinedCommandError +class Bundler::Source::Rubygems + def default_cache_path_for(dir); end -class Bundler::Thor::UnknownArgumentError - include ::DidYouMean::Correctable - def initialize(switches, unknown); end + def dependency_api_available?(); end - def switches(); end + def fetch_gem_if_possible(spec, previous_spec=T.unsafe(nil)); end - def unknown(); end + def multiple_remotes?(); end + + def no_remotes?(); end + + def package_path(cache_path, spec); end + + def remote_names(); end end -class Bundler::Thor::UnknownArgumentError::SpellChecker - def corrections(); end +class Bundler::Source::RubygemsAggregate + def identifier(); end - def error(); end + def initialize(sources, source_map); end - def initialize(error); end + def source_map(); end - def spell_checker(); end -end + def sources(); end -class Bundler::Thor::UnknownArgumentError::SpellChecker + def specs(); end end -class Bundler::Thor::UnknownArgumentError +class Bundler::Source::RubygemsAggregate end -module Bundler::Thor::Util -end +class Bundler::SourceList + def add_global_rubygems_remote(uri); end -module Bundler::Thor::Util - def self.camel_case(str); end + def aggregate_global_source?(); end - def self.escape_globs(path); end + def expired_sources?(replacement_sources); end - def self.escape_html(string); end + def get_with_fallback(source); end - def self.find_by_namespace(namespace); end + def global_path_source(); end - def self.find_class_and_command_by_namespace(namespace, fallback=T.unsafe(nil)); end + def implicit_global_source?(); end - def self.find_class_and_task_by_namespace(namespace, fallback=T.unsafe(nil)); end + def local_only!(); end - def self.globs_for(path); end + def lock_other_sources(); end - def self.load_thorfile(path, content=T.unsafe(nil), debug=T.unsafe(nil)); end + def lock_rubygems_sources(); end - def self.namespace_from_thor_class(constant); end + def merged_gem_lockfile_sections!(replacement_source); end - def self.namespaces_in_content(contents, file=T.unsafe(nil)); end + def merged_gem_lockfile_sections?(); end - def self.ruby_command(); end + def non_default_explicit_sources(); end - def self.snake_case(str); end + def non_global_rubygems_sources(); end +end - def self.thor_classes_in(klass); end +class Bundler::SourceMap + def all_requirements(); end - def self.thor_root(); end + def dependencies(); end - def self.thor_root_glob(); end + def direct_requirements(); end - def self.user_home(); end + def initialize(sources, dependencies, locked_specs); end + + def locked_requirements(); end + + def locked_specs(); end + + def pinned_spec_names(skip=T.unsafe(nil)); end + + def sources(); end end -class Bundler::Thor - extend ::Bundler::Thor::Base::ClassMethods - extend ::Bundler::Thor::Invocation::ClassMethods - def self.banner(command, namespace=T.unsafe(nil), subcommand=T.unsafe(nil)); end +class Bundler::SourceMap +end - def self.check_unknown_options!(options=T.unsafe(nil)); end +class Bundler::SpecSet + include ::Enumerable + include ::Bundler::TSort + def incomplete_ruby_specs?(deps); end - def self.command_help(shell, command_name); end + def incomplete_specs(); end - def self.default_command(meth=T.unsafe(nil)); end + def missing_specs(); end +end - def self.default_task(meth=T.unsafe(nil)); end +class Bundler::StubSpecification + def extensions(); end - def self.deprecation_warning(message); end + def full_gem_path=(path); end - def self.desc(usage, description, options=T.unsafe(nil)); end + def gem_build_complete_path(); end - def self.disable_required_check(); end + def manually_installed?(); end +end - def self.disable_required_check!(*command_names); end +module Bundler::TSort + def each_strongly_connected_component(&block); end - def self.disable_required_check?(command); end + def each_strongly_connected_component_from(node, id_map=T.unsafe(nil), stack=T.unsafe(nil), &block); end - def self.dispatch(meth, given_args, given_opts, config); end + def strongly_connected_components(); end - def self.dynamic_command_class(); end + def tsort(); end - def self.find_command_possibilities(meth); end + def tsort_each(&block); end - def self.find_task_possibilities(meth); end + def tsort_each_child(node); end - def self.help(shell, subcommand=T.unsafe(nil)); end + def tsort_each_node(); end +end - def self.long_desc(long_description, options=T.unsafe(nil)); end +class Bundler::TSort::Cyclic +end - def self.map(mappings=T.unsafe(nil), **kw); end +class Bundler::TSort::Cyclic +end - def self.method_option(name, options=T.unsafe(nil)); end +module Bundler::TSort + def self.each_strongly_connected_component(each_node, each_child); end - def self.method_options(options=T.unsafe(nil)); end + def self.each_strongly_connected_component_from(node, each_child, id_map=T.unsafe(nil), stack=T.unsafe(nil)); end - def self.normalize_command_name(meth); end + def self.strongly_connected_components(each_node, each_child); end - def self.normalize_task_name(meth); end + def self.tsort(each_node, each_child); end - def self.option(name, options=T.unsafe(nil)); end + def self.tsort_each(each_node, each_child); end +end - def self.options(options=T.unsafe(nil)); end +class Bundler::Thor + include ::Bundler::Thor::Base + include ::Bundler::Thor::Invocation + include ::Bundler::Thor::Shell + def help(command=T.unsafe(nil), subcommand=T.unsafe(nil)); end + Correctable = ::T.let(nil, ::T.untyped) + HELP_MAPPINGS = ::T.let(nil, ::T.untyped) + TEMPLATE_EXTNAME = ::T.let(nil, ::T.untyped) + THOR_RESERVED_WORDS = ::T.let(nil, ::T.untyped) +end - def self.package_name(name, _=T.unsafe(nil)); end +module Bundler::Thor::Actions + def _cleanup_options_and_set(options, key); end - def self.printable_commands(all=T.unsafe(nil), subcommand=T.unsafe(nil)); end + def _shared_configuration(); end - def self.printable_tasks(all=T.unsafe(nil), subcommand=T.unsafe(nil)); end + def action(instance); end - def self.register(klass, subcommand_name, usage, description, options=T.unsafe(nil)); end + def add_file(destination, *args, &block); end - def self.retrieve_command_name(args); end + def add_link(destination, *args); end - def self.retrieve_task_name(args); end + def append_file(path, *args, &block); end - def self.stop_on_unknown_option(); end + def append_to_file(path, *args, &block); end - def self.stop_on_unknown_option!(*command_names); end + def apply(path, config=T.unsafe(nil)); end - def self.stop_on_unknown_option?(command); end + def behavior(); end - def self.subcommand(subcommand, subcommand_class); end + def behavior=(behavior); end - def self.subcommand_classes(); end + def chmod(path, mode, config=T.unsafe(nil)); end - def self.subcommand_help(cmd); end + def comment_lines(path, flag, *args); end - def self.subcommands(); end + def copy_file(source, *args, &block); end - def self.subtask(subcommand, subcommand_class); end + def create_file(destination, *args, &block); end - def self.subtask_help(cmd); end + def create_link(destination, *args); end - def self.subtasks(); end + def destination_root(); end - def self.task_help(shell, command_name); end -end + def destination_root=(root); end -class Bundler::UI::Shell - def add_color(string, *color); end + def directory(source, *args, &block); end - def ask(msg); end + def empty_directory(destination, config=T.unsafe(nil)); end - def confirm(msg, newline=T.unsafe(nil)); end + def find_in_source_paths(file); end - def debug(msg, newline=T.unsafe(nil)); end + def get(source, *args, &block); end - def debug?(); end + def gsub_file(path, flag, *args, &block); end - def error(msg, newline=T.unsafe(nil)); end + def in_root(); end - def info(msg, newline=T.unsafe(nil)); end + def initialize(args=T.unsafe(nil), options=T.unsafe(nil), config=T.unsafe(nil)); end - def initialize(options=T.unsafe(nil)); end + def inject_into_class(path, klass, *args, &block); end - def level(name=T.unsafe(nil)); end + def inject_into_file(destination, *args, &block); end - def level=(level); end + def inject_into_module(path, module_name, *args, &block); end - def no?(); end + def insert_into_file(destination, *args, &block); end - def quiet?(); end + def inside(dir=T.unsafe(nil), config=T.unsafe(nil), &block); end - def shell=(shell); end + def link_file(source, *args); end - def silence(&blk); end + def prepend_file(path, *args, &block); end - def trace(e, newline=T.unsafe(nil), force=T.unsafe(nil)); end + def prepend_to_file(path, *args, &block); end - def unprinted_warnings(); end + def relative_to_original_destination_root(path, remove_dot=T.unsafe(nil)); end - def warn(msg, newline=T.unsafe(nil)); end + def remove_dir(path, config=T.unsafe(nil)); end - def yes?(msg); end - LEVELS = ::T.let(nil, ::T.untyped) + def remove_file(path, config=T.unsafe(nil)); end + + def run(command, config=T.unsafe(nil)); end + + def run_ruby_script(command, config=T.unsafe(nil)); end + + def source_paths(); end + + def template(source, *args, &block); end + + def thor(command, *args); end + + def uncomment_lines(path, flag, *args); end + WARNINGS = ::T.let(nil, ::T.untyped) end -class Bundler::UI::Shell +class Bundler::Thor::Actions::CapturableERB end -module Bundler::URI - include ::Bundler::URI::RFC2396_REGEXP - ABS_PATH = ::T.let(nil, ::T.untyped) - ABS_URI = ::T.let(nil, ::T.untyped) - ABS_URI_REF = ::T.let(nil, ::T.untyped) - DEFAULT_PARSER = ::T.let(nil, ::T.untyped) - ESCAPED = ::T.let(nil, ::T.untyped) - FRAGMENT = ::T.let(nil, ::T.untyped) - HOST = ::T.let(nil, ::T.untyped) - OPAQUE = ::T.let(nil, ::T.untyped) - PORT = ::T.let(nil, ::T.untyped) - QUERY = ::T.let(nil, ::T.untyped) - REGISTRY = ::T.let(nil, ::T.untyped) - REL_PATH = ::T.let(nil, ::T.untyped) - REL_URI = ::T.let(nil, ::T.untyped) - REL_URI_REF = ::T.let(nil, ::T.untyped) - RFC3986_PARSER = ::T.let(nil, ::T.untyped) - SCHEME = ::T.let(nil, ::T.untyped) - TBLDECWWWCOMP_ = ::T.let(nil, ::T.untyped) - TBLENCWWWCOMP_ = ::T.let(nil, ::T.untyped) - UNSAFE = ::T.let(nil, ::T.untyped) - URI_REF = ::T.let(nil, ::T.untyped) - USERINFO = ::T.let(nil, ::T.untyped) - VERSION = ::T.let(nil, ::T.untyped) - VERSION_CODE = ::T.let(nil, ::T.untyped) - WEB_ENCODINGS_ = ::T.let(nil, ::T.untyped) +class Bundler::Thor::Actions::CapturableERB end -class Bundler::URI::BadURIError -end +module Bundler::Thor::Actions::ClassMethods + def add_runtime_options!(); end -class Bundler::URI::BadURIError -end + def source_paths(); end -class Bundler::URI::Error -end + def source_paths_for_search(); end -class Bundler::URI::Error + def source_root(path=T.unsafe(nil)); end end -module Bundler::URI::Escape - def decode(*arg); end +module Bundler::Thor::Actions::ClassMethods +end - def encode(*arg); end +class Bundler::Thor::Actions::CreateFile + def data(); end - def escape(*arg); end + def force_on_collision?(); end - def unescape(*arg); end -end + def force_or_skip_or_conflict(force, skip, &block); end -module Bundler::URI::Escape -end + def identical?(); end -class Bundler::URI::FTP - def set_typecode(v); end + def initialize(base, destination, data, config=T.unsafe(nil)); end - def typecode(); end + def on_conflict_behavior(&block); end - def typecode=(typecode); end - COMPONENT = ::T.let(nil, ::T.untyped) - DEFAULT_PORT = ::T.let(nil, ::T.untyped) - TYPECODE = ::T.let(nil, ::T.untyped) - TYPECODE_PREFIX = ::T.let(nil, ::T.untyped) + def render(); end end -class Bundler::URI::FTP - def self.new2(user, password, host, port, path, typecode=T.unsafe(nil), arg_check=T.unsafe(nil)); end +class Bundler::Thor::Actions::CreateFile end -class Bundler::URI::File - def check_password(user); end - - def check_user(user); end - - def check_userinfo(user); end - - def set_userinfo(v); end - COMPONENT = ::T.let(nil, ::T.untyped) - DEFAULT_PORT = ::T.let(nil, ::T.untyped) +class Bundler::Thor::Actions::CreateLink end -class Bundler::URI::File +class Bundler::Thor::Actions::CreateLink end -class Bundler::URI::Generic - include ::Bundler::URI - include ::Bundler::URI::RFC2396_REGEXP - def +(oth); end +class Bundler::Thor::Actions::Directory + def execute!(); end - def -(oth); end + def file_level_lookup(previous_lookup); end - def ==(oth); end + def files(lookup); end - def absolute(); end + def initialize(base, source, destination=T.unsafe(nil), config=T.unsafe(nil), &block); end - def absolute?(); end + def source(); end +end - def coerce(oth); end +class Bundler::Thor::Actions::Directory +end - def component(); end +class Bundler::Thor::Actions::EmptyDirectory + def base(); end - def component_ary(); end + def config(); end - def default_port(); end + def convert_encoded_instructions(filename); end - def eql?(oth); end + def destination(); end - def find_proxy(env=T.unsafe(nil)); end + def destination=(destination); end - def fragment(); end + def exists?(); end - def fragment=(v); end + def given_destination(); end - def hierarchical?(); end + def initialize(base, destination, config=T.unsafe(nil)); end - def host(); end + def invoke!(); end - def host=(v); end + def invoke_with_conflict_check(&block); end - def hostname(); end + def on_conflict_behavior(); end - def hostname=(v); end + def on_file_clash_behavior(); end - def initialize(scheme, userinfo, host, port, registry, path, opaque, query, fragment, parser=T.unsafe(nil), arg_check=T.unsafe(nil)); end + def pretend?(); end - def merge(oth); end + def relative_destination(); end - def merge!(oth); end + def revoke!(); end - def normalize(); end + def say_status(status, color); end +end - def normalize!(); end +class Bundler::Thor::Actions::EmptyDirectory +end - def opaque(); end +class Bundler::Thor::Actions::InjectIntoFile + def behavior(); end - def opaque=(v); end + def flag(); end - def parser(); end + def initialize(base, destination, data, config); end - def password(); end + def replace!(regexp, string, force); end - def password=(password); end + def replacement(); end - def path(); end + def say_status(behavior, warning: T.unsafe(nil), color: T.unsafe(nil)); end +end - def path=(v); end +class Bundler::Thor::Actions::InjectIntoFile +end - def port(); end +module Bundler::Thor::Actions + def self.included(base); end +end - def port=(v); end +class Bundler::Thor::AmbiguousCommandError +end - def query(); end +class Bundler::Thor::AmbiguousCommandError +end - def query=(v); end +Bundler::Thor::AmbiguousTaskError = Bundler::Thor::AmbiguousCommandError - def registry(); end +class Bundler::Thor::Argument + def banner(); end - def registry=(v); end + def default(); end - def relative?(); end + def default_banner(); end - def route_from(oth); end + def description(); end - def route_to(oth); end + def enum(); end - def scheme(); end + def human_name(); end - def scheme=(v); end + def initialize(name, options=T.unsafe(nil)); end - def select(*components); end + def name(); end - def set_host(v); end + def required(); end - def set_opaque(v); end + def required?(); end - def set_password(v); end + def show_default?(); end - def set_path(v); end + def type(); end - def set_port(v); end + def usage(); end - def set_registry(v); end + def valid_type?(type); end - def set_scheme(v); end + def validate!(); end + VALID_TYPES = ::T.let(nil, ::T.untyped) +end - def set_user(v); end +class Bundler::Thor::Argument +end - def set_userinfo(user, password=T.unsafe(nil)); end +class Bundler::Thor::Arguments + def initialize(arguments=T.unsafe(nil)); end - def user(); end + def parse(args); end - def user=(user); end + def remaining(); end + NUMERIC = ::T.let(nil, ::T.untyped) +end - def userinfo(); end +class Bundler::Thor::Arguments + def self.parse(*args); end - def userinfo=(userinfo); end - COMPONENT = ::T.let(nil, ::T.untyped) - DEFAULT_PORT = ::T.let(nil, ::T.untyped) - USE_REGISTRY = ::T.let(nil, ::T.untyped) + def self.split(args); end end -class Bundler::URI::Generic - def self.build(args); end +module Bundler::Thor::Base + def args(); end - def self.build2(args); end + def args=(args); end - def self.component(); end + def initialize(args=T.unsafe(nil), local_options=T.unsafe(nil), config=T.unsafe(nil)); end - def self.default_port(); end + def options(); end - def self.use_proxy?(hostname, addr, port, no_proxy); end + def options=(options); end - def self.use_registry(); end -end + def parent_options(); end -class Bundler::URI::HTTP - def request_uri(); end - COMPONENT = ::T.let(nil, ::T.untyped) - DEFAULT_PORT = ::T.let(nil, ::T.untyped) + def parent_options=(parent_options); end end -class Bundler::URI::HTTP -end +module Bundler::Thor::Base::ClassMethods + def all_commands(); end -class Bundler::URI::HTTPS - DEFAULT_PORT = ::T.let(nil, ::T.untyped) -end + def all_tasks(); end -class Bundler::URI::HTTPS -end + def allow_incompatible_default_type!(); end -class Bundler::URI::InvalidComponentError -end + def argument(name, options=T.unsafe(nil)); end -class Bundler::URI::InvalidComponentError -end + def arguments(); end -class Bundler::URI::InvalidURIError -end + def attr_accessor(*arg); end -class Bundler::URI::InvalidURIError -end + def attr_reader(*arg); end -class Bundler::URI::LDAP - def attributes(); end + def attr_writer(*arg); end - def attributes=(val); end + def baseclass(); end - def dn(); end + def basename(); end - def dn=(val); end + def build_option(name, options, scope); end - def extensions(); end + def build_options(options, scope); end - def extensions=(val); end + def check_default_type(); end - def filter(); end + def check_default_type!(); end - def filter=(val); end + def check_unknown_options(); end - def initialize(*arg); end + def check_unknown_options!(); end - def scope(); end + def check_unknown_options?(config); end - def scope=(val); end + def class_option(name, options=T.unsafe(nil)); end - def set_attributes(val); end + def class_options(options=T.unsafe(nil)); end - def set_dn(val); end + def class_options_help(shell, groups=T.unsafe(nil)); end - def set_extensions(val); end + def commands(); end - def set_filter(val); end + def create_command(meth); end - def set_scope(val); end - COMPONENT = ::T.let(nil, ::T.untyped) - DEFAULT_PORT = ::T.let(nil, ::T.untyped) - SCOPE = ::T.let(nil, ::T.untyped) - SCOPE_BASE = ::T.let(nil, ::T.untyped) - SCOPE_ONE = ::T.let(nil, ::T.untyped) - SCOPE_SUB = ::T.let(nil, ::T.untyped) -end + def create_task(meth); end -class Bundler::URI::LDAP -end + def disable_required_check?(command_name); end -class Bundler::URI::LDAPS - DEFAULT_PORT = ::T.let(nil, ::T.untyped) -end + def dispatch(command, given_args, given_opts, config); end -class Bundler::URI::LDAPS -end + def exit_on_failure?(); end -class Bundler::URI::MailTo - def headers(); end + def find_and_refresh_command(name); end - def headers=(v); end + def find_and_refresh_task(name); end - def initialize(*arg); end + def from_superclass(method, default=T.unsafe(nil)); end - def set_headers(v); end + def group(name=T.unsafe(nil)); end - def set_to(v); end + def handle_argument_error(command, error, args, arity); end - def to(); end + def handle_no_command_error(command, has_namespace=T.unsafe(nil)); end - def to=(v); end + def handle_no_task_error(command, has_namespace=T.unsafe(nil)); end - def to_mailtext(); end + def inherited(klass); end - def to_rfc822text(); end - COMPONENT = ::T.let(nil, ::T.untyped) - DEFAULT_PORT = ::T.let(nil, ::T.untyped) - EMAIL_REGEXP = ::T.let(nil, ::T.untyped) - HEADER_REGEXP = ::T.let(nil, ::T.untyped) -end + def initialize_added(); end -class Bundler::URI::MailTo -end + def is_thor_reserved_word?(word, type); end -Bundler::URI::Parser = Bundler::URI::RFC2396_Parser + def method_added(meth); end -Bundler::URI::REGEXP = Bundler::URI::RFC2396_REGEXP + def namespace(name=T.unsafe(nil)); end -class Bundler::URI::RFC2396_Parser - include ::Bundler::URI::RFC2396_REGEXP - def escape(str, unsafe=T.unsafe(nil)); end + def no_commands(&block); end - def extract(str, schemes=T.unsafe(nil)); end + def no_commands?(); end - def initialize(opts=T.unsafe(nil)); end + def no_commands_context(); end - def join(*uris); end + def no_tasks(&block); end - def make_regexp(schemes=T.unsafe(nil)); end + def print_options(shell, options, group_name=T.unsafe(nil)); end - def parse(uri); end + def public_command(*names); end - def pattern(); end + def public_task(*names); end - def regexp(); end + def remove_argument(*names); end - def split(uri); end + def remove_class_option(*names); end - def unescape(str, escaped=T.unsafe(nil)); end -end + def remove_command(*names); end -class Bundler::URI::RFC2396_Parser -end + def remove_task(*names); end -module Bundler::URI::RFC2396_REGEXP -end + def start(given_args=T.unsafe(nil), config=T.unsafe(nil)); end -module Bundler::URI::RFC2396_REGEXP::PATTERN - ABS_PATH = ::T.let(nil, ::T.untyped) - ABS_URI = ::T.let(nil, ::T.untyped) - ALNUM = ::T.let(nil, ::T.untyped) - ALPHA = ::T.let(nil, ::T.untyped) - DOMLABEL = ::T.let(nil, ::T.untyped) - ESCAPED = ::T.let(nil, ::T.untyped) - FRAGMENT = ::T.let(nil, ::T.untyped) - HEX = ::T.let(nil, ::T.untyped) - HIER_PART = ::T.let(nil, ::T.untyped) - HOST = ::T.let(nil, ::T.untyped) - HOSTNAME = ::T.let(nil, ::T.untyped) - HOSTPORT = ::T.let(nil, ::T.untyped) - IPV4ADDR = ::T.let(nil, ::T.untyped) - IPV6ADDR = ::T.let(nil, ::T.untyped) - IPV6REF = ::T.let(nil, ::T.untyped) - NET_PATH = ::T.let(nil, ::T.untyped) - OPAQUE_PART = ::T.let(nil, ::T.untyped) - PATH_SEGMENTS = ::T.let(nil, ::T.untyped) - PORT = ::T.let(nil, ::T.untyped) - QUERY = ::T.let(nil, ::T.untyped) - REG_NAME = ::T.let(nil, ::T.untyped) - REL_PATH = ::T.let(nil, ::T.untyped) - REL_SEGMENT = ::T.let(nil, ::T.untyped) - REL_URI = ::T.let(nil, ::T.untyped) - RESERVED = ::T.let(nil, ::T.untyped) - SCHEME = ::T.let(nil, ::T.untyped) - TOPLABEL = ::T.let(nil, ::T.untyped) - UNRESERVED = ::T.let(nil, ::T.untyped) - URIC = ::T.let(nil, ::T.untyped) - URIC_NO_SLASH = ::T.let(nil, ::T.untyped) - URI_REF = ::T.let(nil, ::T.untyped) - USERINFO = ::T.let(nil, ::T.untyped) - X_ABS_URI = ::T.let(nil, ::T.untyped) - X_REL_URI = ::T.let(nil, ::T.untyped) -end + def stop_on_unknown_option?(command_name); end -module Bundler::URI::RFC2396_REGEXP::PATTERN + def strict_args_position(); end + + def strict_args_position!(); end + + def strict_args_position?(config); end + + def tasks(); end end -module Bundler::URI::RFC2396_REGEXP +module Bundler::Thor::Base::ClassMethods end -class Bundler::URI::RFC3986_Parser - def join(*uris); end +module Bundler::Thor::Base + def self.included(base); end - def parse(uri); end + def self.register_klass_file(klass); end - def regexp(); end + def self.shell(); end - def split(uri); end - RFC3986_URI = ::T.let(nil, ::T.untyped) - RFC3986_relative_ref = ::T.let(nil, ::T.untyped) -end + def self.shell=(shell); end -class Bundler::URI::RFC3986_Parser -end + def self.subclass_files(); end -module Bundler::URI::Util + def self.subclasses(); end end -module Bundler::URI::Util - def self.make_components_hash(klass, array_hash); end -end +class Bundler::Thor::Command + def formatted_usage(klass, namespace=T.unsafe(nil), subcommand=T.unsafe(nil)); end -module Bundler::URI - extend ::Bundler::URI::Escape - def self.decode_www_form(str, enc=T.unsafe(nil), separator: T.unsafe(nil), use__charset_: T.unsafe(nil), isindex: T.unsafe(nil)); end + def handle_argument_error?(instance, error, caller); end - def self.decode_www_form_component(str, enc=T.unsafe(nil)); end + def handle_no_method_error?(instance, error, caller); end - def self.encode_www_form(enum, enc=T.unsafe(nil)); end + def hidden?(); end - def self.encode_www_form_component(str, enc=T.unsafe(nil)); end + def initialize(name, description, long_description, usage, options=T.unsafe(nil)); end - def self.extract(str, schemes=T.unsafe(nil), &block); end + def local_method?(instance, name); end - def self.get_encoding(label); end + def not_debugging?(instance); end - def self.join(*str); end + def private_method?(instance); end - def self.parse(uri); end + def public_method?(instance); end - def self.regexp(schemes=T.unsafe(nil)); end + def required_arguments_for(klass, usage); end - def self.scheme_list(); end + def required_options(); end - def self.split(uri); end -end + def run(instance, args=T.unsafe(nil)); end -module Bundler::VersionRanges + def sans_backtrace(backtrace, caller); end + FILE_REGEXP = ::T.let(nil, ::T.untyped) end -class Bundler::VersionRanges::NEq - def version(); end - - def version=(_); end +class Bundler::Thor::Command end -class Bundler::VersionRanges::NEq - def self.[](*arg); end - - def self.members(); end +module Bundler::Thor::CoreExt end -class Bundler::VersionRanges::ReqR - def cover?(v); end +class Bundler::Thor::CoreExt::HashWithIndifferentAccess + def [](key); end - def empty?(); end + def []=(key, value); end - def left(); end + def convert_key(key); end - def left=(_); end + def delete(key); end - def right(); end + def except(*keys); end - def right=(_); end + def fetch(key, *args); end - def single?(); end - INFINITY = ::T.let(nil, ::T.untyped) - UNIVERSAL = ::T.let(nil, ::T.untyped) - ZERO = ::T.let(nil, ::T.untyped) -end + def initialize(hash=T.unsafe(nil)); end -class Bundler::VersionRanges::ReqR::Endpoint - def inclusive(); end + def key?(key); end - def inclusive=(_); end + def merge(other); end - def version(); end + def merge!(other); end - def version=(_); end -end + def method_missing(method, *args); end -class Bundler::VersionRanges::ReqR::Endpoint - def self.[](*arg); end + def replace(other_hash); end - def self.members(); end -end + def reverse_merge(other); end -class Bundler::VersionRanges::ReqR - def self.[](*arg); end + def reverse_merge!(other_hash); end - def self.members(); end + def values_at(*indices); end end -module Bundler::VersionRanges - def self.empty?(ranges, neqs); end +class Bundler::Thor::CoreExt::HashWithIndifferentAccess +end - def self.for(requirement); end +module Bundler::Thor::CoreExt +end - def self.for_many(requirements); end +class Bundler::Thor::DynamicCommand + def initialize(name, options=T.unsafe(nil)); end end -module Bundler - def self.original_exec(*args); end +class Bundler::Thor::DynamicCommand +end - def self.original_system(*args); end +Bundler::Thor::DynamicTask = Bundler::Thor::DynamicCommand - def self.unbundled_env(); end +class Bundler::Thor::Error +end - def self.unbundled_exec(*args); end +class Bundler::Thor::Error +end - def self.unbundled_system(*args); end +class Bundler::Thor::Group + include ::Bundler::Thor::Base + include ::Bundler::Thor::Invocation + include ::Bundler::Thor::Shell + def _invoke_for_class_method(klass, command=T.unsafe(nil), *args, &block); end end -module CGI::HtmlExtension - def a(href=T.unsafe(nil)); end +class Bundler::Thor::Group + extend ::Bundler::Thor::Base::ClassMethods + extend ::Bundler::Thor::Invocation::ClassMethods + def self.banner(); end - def base(href=T.unsafe(nil)); end + def self.desc(description=T.unsafe(nil)); end - def blockquote(cite=T.unsafe(nil)); end + def self.get_options_from_invocations(group_options, base_options); end - def caption(align=T.unsafe(nil)); end + def self.handle_argument_error(command, error, _args, arity); end - def checkbox(name=T.unsafe(nil), value=T.unsafe(nil), checked=T.unsafe(nil)); end + def self.help(shell); end - def checkbox_group(name=T.unsafe(nil), *values); end + def self.invocation_blocks(); end - def file_field(name=T.unsafe(nil), size=T.unsafe(nil), maxlength=T.unsafe(nil)); end + def self.invocations(); end - def form(method=T.unsafe(nil), action=T.unsafe(nil), enctype=T.unsafe(nil)); end + def self.invoke(*names, &block); end - def hidden(name=T.unsafe(nil), value=T.unsafe(nil)); end + def self.invoke_from_option(*names, &block); end - def html(attributes=T.unsafe(nil)); end + def self.printable_commands(*arg); end - def image_button(src=T.unsafe(nil), name=T.unsafe(nil), alt=T.unsafe(nil)); end + def self.printable_tasks(*arg); end - def img(src=T.unsafe(nil), alt=T.unsafe(nil), width=T.unsafe(nil), height=T.unsafe(nil)); end + def self.remove_invocation(*names); end - def multipart_form(action=T.unsafe(nil), enctype=T.unsafe(nil)); end + def self.self_command(); end - def password_field(name=T.unsafe(nil), value=T.unsafe(nil), size=T.unsafe(nil), maxlength=T.unsafe(nil)); end + def self.self_task(); end +end - def popup_menu(name=T.unsafe(nil), *values); end +class Bundler::Thor::HiddenCommand +end - def radio_button(name=T.unsafe(nil), value=T.unsafe(nil), checked=T.unsafe(nil)); end +class Bundler::Thor::HiddenCommand +end - def radio_group(name=T.unsafe(nil), *values); end +Bundler::Thor::HiddenTask = Bundler::Thor::HiddenCommand - def reset(value=T.unsafe(nil), name=T.unsafe(nil)); end +module Bundler::Thor::Invocation + def _parse_initialization_options(args, opts, config); end - def scrolling_list(name=T.unsafe(nil), *values); end + def _retrieve_class_and_command(name, sent_command=T.unsafe(nil)); end - def submit(value=T.unsafe(nil), name=T.unsafe(nil)); end + def _retrieve_class_and_task(name, sent_command=T.unsafe(nil)); end - def text_field(name=T.unsafe(nil), value=T.unsafe(nil), size=T.unsafe(nil), maxlength=T.unsafe(nil)); end + def _shared_configuration(); end - def textarea(name=T.unsafe(nil), cols=T.unsafe(nil), rows=T.unsafe(nil)); end -end + def current_command_chain(); end -module CGI::HtmlExtension -end + def initialize(args=T.unsafe(nil), options=T.unsafe(nil), config=T.unsafe(nil), &block); end -class Class - def json_creatable?(); end -end + def invoke(name=T.unsafe(nil), *args); end -module CodeRay - CODERAY_PATH = ::T.let(nil, ::T.untyped) - TokenKinds = ::T.let(nil, ::T.untyped) - VERSION = ::T.let(nil, ::T.untyped) -end + def invoke_all(); end -class CodeRay::Encoders::Encoder - DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) -end + def invoke_command(command, *args); end -CodeRay::Encoders::Encoder::PLUGIN_HOST = CodeRay::Encoders + def invoke_task(command, *args); end -class CodeRay::Encoders::HTML - DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) - FILE_EXTENSION = ::T.let(nil, ::T.untyped) - HTML_ESCAPE = ::T.let(nil, ::T.untyped) - HTML_ESCAPE_PATTERN = ::T.let(nil, ::T.untyped) - TOKEN_KIND_TO_INFO = ::T.let(nil, ::T.untyped) - TRANSPARENT_TOKEN_KINDS = ::T.let(nil, ::T.untyped) + def invoke_with_padding(*args); end end -class CodeRay::Encoders::HTML::CSS - CSS_CLASS_PATTERN = ::T.let(nil, ::T.untyped) +module Bundler::Thor::Invocation::ClassMethods + def prepare_for_invocation(key, name); end end -module CodeRay::Encoders::HTML::Output - DIV = ::T.let(nil, ::T.untyped) - PAGE = ::T.let(nil, ::T.untyped) - SPAN = ::T.let(nil, ::T.untyped) - TABLE = ::T.let(nil, ::T.untyped) +module Bundler::Thor::Invocation::ClassMethods end -class CodeRay::Encoders::Terminal - TOKEN_COLORS = ::T.let(nil, ::T.untyped) +module Bundler::Thor::Invocation + def self.included(base); end end -module CodeRay::FileType - TypeFromExt = ::T.let(nil, ::T.untyped) - TypeFromName = ::T.let(nil, ::T.untyped) - TypeFromShebang = ::T.let(nil, ::T.untyped) +class Bundler::Thor::InvocationError end -module CodeRay::PluginHost - PLUGIN_HOSTS = ::T.let(nil, ::T.untyped) - PLUGIN_HOSTS_BY_ID = ::T.let(nil, ::T.untyped) +class Bundler::Thor::InvocationError end -class CodeRay::Scanners::Java - CONSTANTS = ::T.let(nil, ::T.untyped) - DIRECTIVES = ::T.let(nil, ::T.untyped) - ESCAPE = ::T.let(nil, ::T.untyped) - IDENT = ::T.let(nil, ::T.untyped) - IDENT_KIND = ::T.let(nil, ::T.untyped) - KEYWORDS = ::T.let(nil, ::T.untyped) - MAGIC_VARIABLES = ::T.let(nil, ::T.untyped) - RESERVED = ::T.let(nil, ::T.untyped) - STRING_CONTENT_PATTERN = ::T.let(nil, ::T.untyped) - TYPES = ::T.let(nil, ::T.untyped) - UNICODE_ESCAPE = ::T.let(nil, ::T.untyped) +module Bundler::Thor::LineEditor end -module CodeRay::Scanners::Java::BuiltinTypes - List = ::T.let(nil, ::T.untyped) +class Bundler::Thor::LineEditor::Basic + def initialize(prompt, options); end + + def options(); end + + def prompt(); end + + def readline(); end end -module CodeRay::Scanners::Ruby::Patterns - BINARY = ::T.let(nil, ::T.untyped) - CHARACTER = ::T.let(nil, ::T.untyped) - CLASS_VARIABLE = ::T.let(nil, ::T.untyped) - CONTROL_META_ESCAPE = ::T.let(nil, ::T.untyped) - DATA = ::T.let(nil, ::T.untyped) - DECIMAL = ::T.let(nil, ::T.untyped) - ESCAPE = ::T.let(nil, ::T.untyped) - EXPONENT = ::T.let(nil, ::T.untyped) - FANCY_STRING_INTERPRETED = ::T.let(nil, ::T.untyped) - FANCY_STRING_KIND = ::T.let(nil, ::T.untyped) - FANCY_STRING_START = ::T.let(nil, ::T.untyped) - FLOAT_OR_INT = ::T.let(nil, ::T.untyped) - FLOAT_SUFFIX = ::T.let(nil, ::T.untyped) - GLOBAL_VARIABLE = ::T.let(nil, ::T.untyped) - HEREDOC_OPEN = ::T.let(nil, ::T.untyped) - HEXADECIMAL = ::T.let(nil, ::T.untyped) - IDENT = ::T.let(nil, ::T.untyped) - IDENT_KIND = ::T.let(nil, ::T.untyped) - INSTANCE_VARIABLE = ::T.let(nil, ::T.untyped) - KEYWORDS = ::T.let(nil, ::T.untyped) - KEYWORDS_EXPECTING_VALUE = ::T.let(nil, ::T.untyped) - KEYWORD_NEW_STATE = ::T.let(nil, ::T.untyped) - METHOD_AFTER_DOT = ::T.let(nil, ::T.untyped) - METHOD_NAME = ::T.let(nil, ::T.untyped) - METHOD_NAME_EX = ::T.let(nil, ::T.untyped) - METHOD_NAME_OPERATOR = ::T.let(nil, ::T.untyped) - METHOD_NAME_OR_SYMBOL = ::T.let(nil, ::T.untyped) - METHOD_SUFFIX = ::T.let(nil, ::T.untyped) - NUMERIC = ::T.let(nil, ::T.untyped) - OBJECT_VARIABLE = ::T.let(nil, ::T.untyped) - OCTAL = ::T.let(nil, ::T.untyped) - PREDEFINED_CONSTANTS = ::T.let(nil, ::T.untyped) - PREFIX_VARIABLE = ::T.let(nil, ::T.untyped) - QUOTE_TO_TYPE = ::T.let(nil, ::T.untyped) - REGEXP_MODIFIERS = ::T.let(nil, ::T.untyped) - RUBYDOC = ::T.let(nil, ::T.untyped) - RUBYDOC_OR_DATA = ::T.let(nil, ::T.untyped) - SIMPLE_ESCAPE = ::T.let(nil, ::T.untyped) - SYMBOL = ::T.let(nil, ::T.untyped) - VALUE_FOLLOWS = ::T.let(nil, ::T.untyped) - VARIABLE = ::T.let(nil, ::T.untyped) +class Bundler::Thor::LineEditor::Basic + def self.available?(); end end -class CodeRay::Scanners::Ruby::StringState - CLOSING_PAREN = ::T.let(nil, ::T.untyped) - STRING_PATTERN = ::T.let(nil, ::T.untyped) +class Bundler::Thor::LineEditor::Readline end -class CodeRay::Scanners::Scanner - DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) - KINDS_NOT_LOC = ::T.let(nil, ::T.untyped) - SCANNER_STATE_INFO = ::T.let(nil, ::T.untyped) - SCAN_ERROR_MESSAGE = ::T.let(nil, ::T.untyped) +class Bundler::Thor::LineEditor::Readline::PathCompletion + def initialize(text); end + + def matches(); end end -CodeRay::Scanners::Scanner::PLUGIN_HOST = CodeRay::Scanners +class Bundler::Thor::LineEditor::Readline::PathCompletion +end -class CodeRay::Styles::Style - DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) +class Bundler::Thor::LineEditor::Readline end -CodeRay::Styles::Style::PLUGIN_HOST = CodeRay::Styles +module Bundler::Thor::LineEditor + def self.best_available(); end -class ConnectionPool - DEFAULTS = ::T.let(nil, ::T.untyped) - VERSION = ::T.let(nil, ::T.untyped) + def self.readline(prompt, options=T.unsafe(nil)); end end -class ConnectionPool::Wrapper - METHODS = ::T.let(nil, ::T.untyped) +class Bundler::Thor::MalformattedArgumentError end -class DRb::DRbArray - def _dump(lv); end +class Bundler::Thor::MalformattedArgumentError end -class DRb::DRbArray - def self._load(s); end +class Bundler::Thor::NestedContext + def enter(); end + + def entered?(); end end -class DRb::DRbConn - def alive?(); end +class Bundler::Thor::NestedContext +end - def close(); end +class Bundler::Thor::Option + def aliases(); end - def initialize(remote_uri); end + def array?(); end - def send_message(ref, msg_id, arg, block); end + def boolean?(); end - def uri(); end -end + def dasherize(str); end -class DRb::DRbConn - def self.make_pool(); end + def dasherized?(); end - def self.open(remote_uri); end + def group(); end - def self.stop_pool(); end -end + def hash?(); end -class DRb::DRbMessage - def dump(obj, error=T.unsafe(nil)); end - - def initialize(config); end - - def load(soc); end - - def recv_reply(stream); end - - def recv_request(stream); end - - def send_reply(stream, succ, result); end - - def send_request(stream, ref, msg_id, arg, b); end -end - -class DRb::DRbObject - def ==(other); end - - def eql?(other); end - - def initialize(obj, uri=T.unsafe(nil)); end -end - -class DRb::DRbObject - def self.prepare_backtrace(uri, result); end - - def self.with_friend(uri); end -end - -module DRb::DRbProtocol - def self.auto_load(uri); end -end - -class DRb::DRbRemoteError - def initialize(error); end -end + def hide(); end -class DRb::DRbServer - def initialize(uri=T.unsafe(nil), front=T.unsafe(nil), config_or_acl=T.unsafe(nil)); end + def lazy_default(); end - def safe_level(); end -end + def numeric?(); end -class DRb::DRbServer::InvokeMethod - include ::DRb::DRbServer::InvokeMethod18Mixin - def initialize(drb_server, client); end + def repeatable(); end - def perform(); end -end + def string?(); end -class DRb::DRbServer::InvokeMethod -end + def switch_name(); end -module DRb::DRbServer::InvokeMethod18Mixin - def block_yield(x); end + def undasherize(str); end - def perform_with_block(); end -end + def usage(padding=T.unsafe(nil)); end -module DRb::DRbServer::InvokeMethod18Mixin + def validate_default_type!(); end + VALID_TYPES = ::T.let(nil, ::T.untyped) end -class DRb::DRbServer - def self.default_safe_level(level); end - - def self.make_config(hash=T.unsafe(nil)); end +class Bundler::Thor::Option + def self.parse(key, value); end end -class DRb::DRbTCPSocket - def accept(); end - - def alive?(); end +class Bundler::Thor::Options + def assign_result!(option, result); end - def close(); end + def check_unknown!(); end - def initialize(uri, soc, config=T.unsafe(nil)); end + def current_is_switch?(); end - def peeraddr(); end + def current_is_switch_formatted?(); end - def recv_reply(); end + def initialize(hash_options=T.unsafe(nil), defaults=T.unsafe(nil), stop_on_unknown=T.unsafe(nil), disable_required_check=T.unsafe(nil)); end - def recv_request(); end + def normalize_switch(arg); end - def send_reply(succ, result); end + def parse_boolean(switch); end - def send_request(ref, msg_id, arg, b); end + def parse_peek(switch, option); end - def set_sockopt(soc); end + def parsing_options?(); end - def shutdown(); end + def switch?(arg); end - def stream(); end + def switch_option(arg); end - def uri(); end + def unshift(arg, is_value: T.unsafe(nil)); end + EQ_RE = ::T.let(nil, ::T.untyped) + LONG_RE = ::T.let(nil, ::T.untyped) + OPTS_END = ::T.let(nil, ::T.untyped) + SHORT_NUM = ::T.let(nil, ::T.untyped) + SHORT_RE = ::T.let(nil, ::T.untyped) + SHORT_SQ_RE = ::T.let(nil, ::T.untyped) end -class DRb::DRbTCPSocket - def self.getservername(); end - - def self.open(uri, config); end - - def self.open_server(uri, config); end - - def self.open_server_inaddr_any(host, port); end - - def self.parse_uri(uri); end - - def self.uri_option(uri, config); end +class Bundler::Thor::Options + def self.to_switches(options); end end -class DRb::DRbURIOption - def ==(other); end - - def eql?(other); end - - def initialize(option); end - - def option(); end +module Bundler::Thor::RakeCompat + include ::Rake::DSL + include ::Rake::FileUtilsExt + include ::FileUtils + include ::FileUtils::StreamUtils_ end -class DRb::DRbURIOption -end +module Bundler::Thor::RakeCompat + def self.included(base); end -module DRb::DRbUndumped - def _dump(dummy); end + def self.rake_classes(); end end -class DRb::DRbUnknown - def _dump(lv); end +class Bundler::Thor::RequiredArgumentMissingError end -class DRb::DRbUnknown - def self._load(s); end +class Bundler::Thor::RequiredArgumentMissingError end -class DRb::DRbUnknownError - def _dump(lv); end - - def initialize(unknown); end +module Bundler::Thor::Sandbox end -class DRb::DRbUnknownError - def self._load(s); end +module Bundler::Thor::Sandbox end -class DRb::ThreadObject - include ::MonitorMixin - def _execute(); end +module Bundler::Thor::Shell + def _shared_configuration(); end - def alive?(); end + def ask(*args, &block); end - def initialize(&blk); end + def error(*args, &block); end - def kill(); end + def file_collision(*args, &block); end - def method_missing(msg, *arg, &blk); end -end + def initialize(args=T.unsafe(nil), options=T.unsafe(nil), config=T.unsafe(nil)); end -class DRb::ThreadObject -end + def no?(*args, &block); end -module DRb - def self.mutex(); end -end + def print_in_columns(*args, &block); end -DRbIdConv = DRb::DRbIdConv + def print_table(*args, &block); end -DRbObject = DRb::DRbObject + def print_wrapped(*args, &block); end -DRbUndumped = DRb::DRbUndumped + def say(*args, &block); end -class Date - def infinite?(); end -end + def say_error(*args, &block); end -class Date::Infinity - def initialize(d=T.unsafe(nil)); end -end + def say_status(*args, &block); end -class Delegator - RUBYGEMS_ACTIVATION_MONITOR = ::T.let(nil, ::T.untyped) -end + def set_color(*args, &block); end -class DidYouMean::ClassNameChecker - def class_name(); end + def shell(); end - def class_names(); end + def shell=(shell); end - def corrections(); end + def terminal_width(*args, &block); end - def initialize(exception); end + def with_padding(); end - def scopes(); end + def yes?(*args, &block); end + SHELL_DELEGATED_METHODS = ::T.let(nil, ::T.untyped) end -class DidYouMean::CorrectElement - def call(names, element); end -end +class Bundler::Thor::Shell::Basic + def answer_match(possibilities, answer, case_insensitive); end -class DidYouMean::CorrectElement -end + def as_unicode(); end -module DidYouMean::Correctable - def corrections(); end + def ask(statement, *args); end - def original_message(); end + def ask_filtered(statement, color, options); end - def spell_checker(); end + def ask_simply(statement, color, options); end - def to_s(); end -end + def base(); end -module DidYouMean::Jaro - def self.distance(str1, str2); end -end + def base=(base); end -module DidYouMean::JaroWinkler - def self.distance(str1, str2); end -end + def can_display_colors?(); end -class DidYouMean::KeyErrorChecker - def corrections(); end + def dynamic_width(); end - def initialize(key_error); end -end + def dynamic_width_stty(); end -class DidYouMean::KeyErrorChecker -end + def dynamic_width_tput(); end -module DidYouMean::Levenshtein - def self.distance(str1, str2); end + def error(statement); end - def self.min3(a, b, c); end -end + def file_collision(destination); end -class DidYouMean::MethodNameChecker - def corrections(); end + def file_collision_help(); end - def initialize(exception); end + def git_merge_tool(); end - def method_name(); end + def indent(count=T.unsafe(nil)); end - def method_names(); end + def is?(value); end - def names_to_exclude(); end + def lookup_color(color); end - def receiver(); end - RB_RESERVED_WORDS = ::T.let(nil, ::T.untyped) -end + def merge(destination, content); end -class DidYouMean::NullChecker - def corrections(); end + def merge_tool(); end - def initialize(*arg); end -end + def mute(); end -class DidYouMean::ParseDimensions - def call(); end + def mute?(); end - def initialize(dictionary, separator); end -end + def no?(statement, color=T.unsafe(nil)); end -class DidYouMean::ParseDimensions -end + def padding(); end -class DidYouMean::PlainFormatter - def message_for(corrections); end -end + def padding=(value); end -class DidYouMean::PlainFormatter -end + def prepare_message(message, *color); end -class DidYouMean::TreeSpellChecker - def augment(); end + def print_in_columns(array); end + + def print_table(array, options=T.unsafe(nil)); end - def correct(input); end + def print_wrapped(message, options=T.unsafe(nil)); end - def dictionary(); end + def quiet?(); end - def dimensions(); end + def say(message=T.unsafe(nil), color=T.unsafe(nil), force_new_line=T.unsafe(nil)); end - def initialize(dictionary:, separator: T.unsafe(nil), augment: T.unsafe(nil)); end + def say_error(message=T.unsafe(nil), color=T.unsafe(nil), force_new_line=T.unsafe(nil)); end - def separator(); end -end + def say_status(status, message, log_status=T.unsafe(nil)); end -class DidYouMean::TreeSpellChecker -end + def set_color(string, *arg); end -class DidYouMean::VariableNameChecker - def corrections(); end + def show_diff(destination, content); end - def cvar_names(); end + def stderr(); end - def initialize(exception); end + def stdout(); end - def ivar_names(); end + def terminal_width(); end - def lvar_names(); end + def truncate(string, width); end - def method_names(); end + def unix?(); end - def name(); end - RB_RESERVED_WORDS = ::T.let(nil, ::T.untyped) + def yes?(statement, color=T.unsafe(nil)); end + DEFAULT_TERMINAL_WIDTH = ::T.let(nil, ::T.untyped) end -module DidYouMean - def self.correct_error(error_class, spell_checker); end - - def self.formatter(); end - - def self.formatter=(formatter); end +class Bundler::Thor::Shell::Basic end -class Dir - def children(); end +class Bundler::Thor::Shell::Color + def are_colors_disabled?(); end - def each_child(); end -end + def are_colors_supported?(); end -module Dir::Tmpname - UNUSABLE_CHARS = ::T.let(nil, ::T.untyped) -end + def diff_lcs_loaded?(); end -class Dir - def self.exists?(arg); end -end + def output_diff_line(diff); end -module Docile - VERSION = ::T.let(nil, ::T.untyped) + def set_color(string, *colors); end + BLACK = ::T.let(nil, ::T.untyped) + BLUE = ::T.let(nil, ::T.untyped) + BOLD = ::T.let(nil, ::T.untyped) + CLEAR = ::T.let(nil, ::T.untyped) + CYAN = ::T.let(nil, ::T.untyped) + GREEN = ::T.let(nil, ::T.untyped) + MAGENTA = ::T.let(nil, ::T.untyped) + ON_BLACK = ::T.let(nil, ::T.untyped) + ON_BLUE = ::T.let(nil, ::T.untyped) + ON_CYAN = ::T.let(nil, ::T.untyped) + ON_GREEN = ::T.let(nil, ::T.untyped) + ON_MAGENTA = ::T.let(nil, ::T.untyped) + ON_RED = ::T.let(nil, ::T.untyped) + ON_WHITE = ::T.let(nil, ::T.untyped) + ON_YELLOW = ::T.let(nil, ::T.untyped) + RED = ::T.let(nil, ::T.untyped) + WHITE = ::T.let(nil, ::T.untyped) + YELLOW = ::T.let(nil, ::T.untyped) end -module Docile::BacktraceFilter - FILTER_PATTERN = ::T.let(nil, ::T.untyped) +class Bundler::Thor::Shell::Color end -class Docile::FallbackContextProxy - NON_FALLBACK_METHODS = ::T.let(nil, ::T.untyped) - NON_PROXIED_INSTANCE_VARIABLES = ::T.let(nil, ::T.untyped) - NON_PROXIED_METHODS = ::T.let(nil, ::T.untyped) -end +class Bundler::Thor::Shell::HTML + def ask(statement, color=T.unsafe(nil)); end -class ERB - def def_method(mod, methodname, fname=T.unsafe(nil)); end + def diff_lcs_loaded?(); end - def def_module(methodname=T.unsafe(nil)); end -end + def output_diff_line(diff); end -class ERB::Compiler::Scanner - DEFAULT_ETAGS = ::T.let(nil, ::T.untyped) - DEFAULT_STAGS = ::T.let(nil, ::T.untyped) + def set_color(string, *colors); end + BLACK = ::T.let(nil, ::T.untyped) + BLUE = ::T.let(nil, ::T.untyped) + BOLD = ::T.let(nil, ::T.untyped) + CYAN = ::T.let(nil, ::T.untyped) + GREEN = ::T.let(nil, ::T.untyped) + MAGENTA = ::T.let(nil, ::T.untyped) + ON_BLACK = ::T.let(nil, ::T.untyped) + ON_BLUE = ::T.let(nil, ::T.untyped) + ON_CYAN = ::T.let(nil, ::T.untyped) + ON_GREEN = ::T.let(nil, ::T.untyped) + ON_MAGENTA = ::T.let(nil, ::T.untyped) + ON_RED = ::T.let(nil, ::T.untyped) + ON_WHITE = ::T.let(nil, ::T.untyped) + ON_YELLOW = ::T.let(nil, ::T.untyped) + RED = ::T.let(nil, ::T.untyped) + WHITE = ::T.let(nil, ::T.untyped) + YELLOW = ::T.let(nil, ::T.untyped) end -class Encoding - def _dump(*arg); end - CESU_8 = ::T.let(nil, ::T.untyped) +class Bundler::Thor::Shell::HTML end -class Encoding::Converter - def initialize(*arg); end +module Bundler::Thor::Shell end -class Encoding - def self._load(arg); end -end +Bundler::Thor::Task = Bundler::Thor::Command -module Enumerable - def sum(*arg); end -end +class Bundler::Thor::UndefinedCommandError + def all_commands(); end -class Enumerator - def +(arg); end + def command(); end - def each_with_index(); end + def initialize(command, all_commands, namespace); end end -class Enumerator::ArithmeticSequence - def begin(); end - - def each(&blk); end - - def end(); end +class Bundler::Thor::UndefinedCommandError::SpellChecker + def corrections(); end - def exclude_end?(); end + def error(); end - def last(*arg); end + def initialize(error); end - def step(); end + def spell_checker(); end end -class Enumerator::ArithmeticSequence +class Bundler::Thor::UndefinedCommandError::SpellChecker end -class Enumerator::Chain +class Bundler::Thor::UndefinedCommandError end -class Enumerator::Chain -end +Bundler::Thor::UndefinedTaskError = Bundler::Thor::UndefinedCommandError -class Enumerator::Generator - def each(*arg, &blk); end +class Bundler::Thor::UnknownArgumentError + def initialize(switches, unknown); end - def initialize(*arg); end -end + def switches(); end -class Enumerator::Lazy - def eager(); end + def unknown(); end end -class Enumerator::Producer - def each(&blk); end -end +class Bundler::Thor::UnknownArgumentError::SpellChecker + def corrections(); end -class Enumerator::Producer -end + def error(); end -class Enumerator::Yielder - def to_proc(); end -end + def initialize(error); end -class Enumerator - def self.produce(*arg); end + def spell_checker(); end end -class Errno::EAUTH - Errno = ::T.let(nil, ::T.untyped) +class Bundler::Thor::UnknownArgumentError::SpellChecker end -class Errno::EAUTH +class Bundler::Thor::UnknownArgumentError end -class Errno::EBADARCH - Errno = ::T.let(nil, ::T.untyped) +module Bundler::Thor::Util end -class Errno::EBADARCH -end +module Bundler::Thor::Util + def self.camel_case(str); end -class Errno::EBADEXEC - Errno = ::T.let(nil, ::T.untyped) -end + def self.escape_globs(path); end -class Errno::EBADEXEC -end + def self.escape_html(string); end -class Errno::EBADMACHO - Errno = ::T.let(nil, ::T.untyped) -end + def self.find_by_namespace(namespace); end -class Errno::EBADMACHO -end + def self.find_class_and_command_by_namespace(namespace, fallback=T.unsafe(nil)); end -class Errno::EBADRPC - Errno = ::T.let(nil, ::T.untyped) -end + def self.find_class_and_task_by_namespace(namespace, fallback=T.unsafe(nil)); end -class Errno::EBADRPC -end + def self.globs_for(path); end -Errno::ECAPMODE = Errno::NOERROR + def self.load_thorfile(path, content=T.unsafe(nil), debug=T.unsafe(nil)); end -Errno::EDEADLOCK = Errno::NOERROR + def self.namespace_from_thor_class(constant); end -class Errno::EDEVERR - Errno = ::T.let(nil, ::T.untyped) -end + def self.namespaces_in_content(contents, file=T.unsafe(nil)); end -class Errno::EDEVERR -end + def self.ruby_command(); end -Errno::EDOOFUS = Errno::NOERROR + def self.snake_case(str); end -class Errno::EFTYPE - Errno = ::T.let(nil, ::T.untyped) -end + def self.thor_classes_in(klass); end -class Errno::EFTYPE -end + def self.thor_root(); end -Errno::EIPSEC = Errno::NOERROR + def self.thor_root_glob(); end -class Errno::ELAST - Errno = ::T.let(nil, ::T.untyped) + def self.user_home(); end end -class Errno::ELAST -end +class Bundler::Thor + extend ::Bundler::Thor::Base::ClassMethods + extend ::Bundler::Thor::Invocation::ClassMethods + def self.banner(command, namespace=T.unsafe(nil), subcommand=T.unsafe(nil)); end -class Errno::ENEEDAUTH - Errno = ::T.let(nil, ::T.untyped) -end + def self.check_unknown_options!(options=T.unsafe(nil)); end -class Errno::ENEEDAUTH -end + def self.command_help(shell, command_name); end -class Errno::ENOATTR - Errno = ::T.let(nil, ::T.untyped) -end + def self.default_command(meth=T.unsafe(nil)); end -class Errno::ENOATTR -end + def self.default_task(meth=T.unsafe(nil)); end -class Errno::ENOPOLICY - Errno = ::T.let(nil, ::T.untyped) -end + def self.deprecation_warning(message); end -class Errno::ENOPOLICY -end + def self.desc(usage, description, options=T.unsafe(nil)); end -Errno::ENOTCAPABLE = Errno::NOERROR + def self.disable_required_check(); end -class Errno::ENOTSUP - Errno = ::T.let(nil, ::T.untyped) -end + def self.disable_required_check!(*command_names); end -class Errno::ENOTSUP -end + def self.disable_required_check?(command); end -class Errno::EPROCLIM - Errno = ::T.let(nil, ::T.untyped) -end + def self.dispatch(meth, given_args, given_opts, config); end -class Errno::EPROCLIM -end + def self.dynamic_command_class(); end -class Errno::EPROCUNAVAIL - Errno = ::T.let(nil, ::T.untyped) -end + def self.find_command_possibilities(meth); end -class Errno::EPROCUNAVAIL -end + def self.find_task_possibilities(meth); end -class Errno::EPROGMISMATCH - Errno = ::T.let(nil, ::T.untyped) -end + def self.help(shell, subcommand=T.unsafe(nil)); end -class Errno::EPROGMISMATCH -end + def self.long_desc(long_description, options=T.unsafe(nil)); end -class Errno::EPROGUNAVAIL - Errno = ::T.let(nil, ::T.untyped) -end + def self.map(mappings=T.unsafe(nil), **kw); end -class Errno::EPROGUNAVAIL -end + def self.method_option(name, options=T.unsafe(nil)); end -class Errno::EPWROFF - Errno = ::T.let(nil, ::T.untyped) -end + def self.method_options(options=T.unsafe(nil)); end -class Errno::EPWROFF -end + def self.normalize_command_name(meth); end -Errno::EQFULL = Errno::ELAST + def self.normalize_task_name(meth); end -class Errno::ERPCMISMATCH - Errno = ::T.let(nil, ::T.untyped) -end + def self.option(name, options=T.unsafe(nil)); end -class Errno::ERPCMISMATCH -end + def self.options(options=T.unsafe(nil)); end -class Errno::ESHLIBVERS - Errno = ::T.let(nil, ::T.untyped) -end + def self.package_name(name, _=T.unsafe(nil)); end -class Errno::ESHLIBVERS -end + def self.printable_commands(all=T.unsafe(nil), subcommand=T.unsafe(nil)); end -module Etc - VERSION = ::T.let(nil, ::T.untyped) -end + def self.printable_tasks(all=T.unsafe(nil), subcommand=T.unsafe(nil)); end -class Etc::Group - def gid(); end + def self.register(klass, subcommand_name, usage, description, options=T.unsafe(nil)); end - def gid=(_); end + def self.retrieve_command_name(args); end - def mem(); end + def self.retrieve_task_name(args); end - def mem=(_); end + def self.stop_on_unknown_option(); end - def name(); end + def self.stop_on_unknown_option!(*command_names); end - def name=(_); end + def self.stop_on_unknown_option?(command); end - def passwd(); end + def self.subcommand(subcommand, subcommand_class); end - def passwd=(_); end -end + def self.subcommand_classes(); end -class Etc::Group - extend ::Enumerable - def self.[](*arg); end + def self.subcommand_help(cmd); end - def self.each(&blk); end + def self.subcommands(); end - def self.members(); end -end + def self.subtask(subcommand, subcommand_class); end -class Etc::Passwd - def change(); end + def self.subtask_help(cmd); end - def change=(_); end + def self.subtasks(); end - def dir=(_); end + def self.task_help(shell, command_name); end +end - def expire(); end +class Bundler::UI::Shell + def add_color(string, *color); end - def expire=(_); end + def ask(msg); end - def gecos(); end + def confirm(msg, newline=T.unsafe(nil)); end - def gecos=(_); end + def debug(msg, newline=T.unsafe(nil)); end - def gid=(_); end + def debug?(); end - def name=(_); end + def error(msg, newline=T.unsafe(nil), color=T.unsafe(nil)); end - def passwd=(_); end + def info(msg, newline=T.unsafe(nil)); end - def shell=(_); end + def initialize(options=T.unsafe(nil)); end - def uclass(); end + def level(name=T.unsafe(nil)); end - def uclass=(_); end + def level=(level); end - def uid=(_); end -end + def no?(); end -class Etc::Passwd - extend ::Enumerable - def self.[](*arg); end + def quiet?(); end - def self.each(&blk); end + def shell=(shell); end - def self.members(); end -end + def silence(&blk); end -class ExitCalledError -end + def trace(e, newline=T.unsafe(nil), force=T.unsafe(nil)); end -class ExitCalledError -end + def unprinted_warnings(); end -class FalseClass - include ::JSON::Ext::Generator::GeneratorMethods::FalseClass -end + def warn(msg, newline=T.unsafe(nil), color=T.unsafe(nil)); end -module Faraday - METHODS_WITH_BODY = ::T.let(nil, ::T.untyped) - METHODS_WITH_QUERY = ::T.let(nil, ::T.untyped) - VERSION = ::T.let(nil, ::T.untyped) + def yes?(msg); end + LEVELS = ::T.let(nil, ::T.untyped) end -class Faraday::Adapter - CONTENT_LENGTH = ::T.let(nil, ::T.untyped) - TIMEOUT_KEYS = ::T.let(nil, ::T.untyped) +class Bundler::UI::Shell end -class Faraday::Adapter::Excon - OPTS_KEYS = ::T.let(nil, ::T.untyped) +module Bundler::URI + include ::Bundler::URI::RFC2396_REGEXP + ABS_PATH = ::T.let(nil, ::T.untyped) + ABS_URI = ::T.let(nil, ::T.untyped) + ABS_URI_REF = ::T.let(nil, ::T.untyped) + DEFAULT_PARSER = ::T.let(nil, ::T.untyped) + ESCAPED = ::T.let(nil, ::T.untyped) + FRAGMENT = ::T.let(nil, ::T.untyped) + HOST = ::T.let(nil, ::T.untyped) + OPAQUE = ::T.let(nil, ::T.untyped) + PORT = ::T.let(nil, ::T.untyped) + QUERY = ::T.let(nil, ::T.untyped) + REGISTRY = ::T.let(nil, ::T.untyped) + REL_PATH = ::T.let(nil, ::T.untyped) + REL_URI = ::T.let(nil, ::T.untyped) + REL_URI_REF = ::T.let(nil, ::T.untyped) + RFC3986_PARSER = ::T.let(nil, ::T.untyped) + SCHEME = ::T.let(nil, ::T.untyped) + TBLDECWWWCOMP_ = ::T.let(nil, ::T.untyped) + TBLENCWWWCOMP_ = ::T.let(nil, ::T.untyped) + UNSAFE = ::T.let(nil, ::T.untyped) + URI_REF = ::T.let(nil, ::T.untyped) + USERINFO = ::T.let(nil, ::T.untyped) + VERSION = ::T.let(nil, ::T.untyped) + VERSION_CODE = ::T.let(nil, ::T.untyped) + WEB_ENCODINGS_ = ::T.let(nil, ::T.untyped) end -class Faraday::Adapter::NetHttp - NET_HTTP_EXCEPTIONS = ::T.let(nil, ::T.untyped) +class Bundler::URI::BadURIError end -class Faraday::Adapter::NetHttpPersistent - SSL_CONFIGURATIONS = ::T.let(nil, ::T.untyped) +class Bundler::URI::BadURIError end -class Faraday::Adapter::Patron - CURL_TIMEOUT_MESSAGES = ::T.let(nil, ::T.untyped) +class Bundler::URI::Error end -class Faraday::Adapter::Rack - SPECIAL_HEADERS = ::T.let(nil, ::T.untyped) +class Bundler::URI::Error end -class Faraday::Adapter::Test - def configure(); end +class Bundler::URI::FTP + def set_typecode(v); end - def initialize(app, stubs=T.unsafe(nil), &block); end + def typecode(); end - def stubs(); end + def typecode=(typecode); end + COMPONENT = ::T.let(nil, ::T.untyped) + DEFAULT_PORT = ::T.let(nil, ::T.untyped) + TYPECODE = ::T.let(nil, ::T.untyped) + TYPECODE_PREFIX = ::T.let(nil, ::T.untyped) +end - def stubs=(stubs); end +class Bundler::URI::FTP + def self.new2(user, password, host, port, path, typecode=T.unsafe(nil), arg_check=T.unsafe(nil)); end end -class Faraday::Adapter::Test::Stub - def headers_match?(request_headers); end +class Bundler::URI::File + def check_password(user); end - def matches?(env); end + def check_user(user); end - def params_match?(env); end + def check_userinfo(user); end - def path_match?(request_path, meta); end + def set_userinfo(v); end + COMPONENT = ::T.let(nil, ::T.untyped) + DEFAULT_PORT = ::T.let(nil, ::T.untyped) end -class Faraday::Adapter::Test::Stub +class Bundler::URI::File end -class Faraday::Adapter::Test::Stubs - def delete(path, headers=T.unsafe(nil), &block); end +class Bundler::URI::Generic + include ::Bundler::URI + include ::Bundler::URI::RFC2396_REGEXP + def +(oth); end - def empty?(); end + def -(oth); end - def get(path, headers=T.unsafe(nil), &block); end + def ==(oth); end - def head(path, headers=T.unsafe(nil), &block); end + def absolute(); end - def initialize(strict_mode: T.unsafe(nil)); end + def absolute?(); end - def match(env); end + def coerce(oth); end - def matches?(stack, env); end + def component(); end - def new_stub(request_method, path, headers=T.unsafe(nil), body=T.unsafe(nil), &block); end + def component_ary(); end - def options(path, headers=T.unsafe(nil), &block); end + def default_port(); end - def patch(path, body=T.unsafe(nil), headers=T.unsafe(nil), &block); end + def eql?(oth); end - def post(path, body=T.unsafe(nil), headers=T.unsafe(nil), &block); end + def find_proxy(env=T.unsafe(nil)); end - def put(path, body=T.unsafe(nil), headers=T.unsafe(nil), &block); end + def fragment(); end - def strict_mode=(value); end + def fragment=(v); end - def verify_stubbed_calls(); end -end + def hierarchical?(); end -class Faraday::Adapter::Test::Stubs::NotFound -end + def host(); end -class Faraday::Adapter::Test::Stubs::NotFound -end + def host=(v); end -class Faraday::Adapter::Test::Stubs -end + def hostname(); end -class Faraday::Adapter::Test -end + def hostname=(v); end -class Faraday::Adapter::Typhoeus - def call(); end -end + def initialize(scheme, userinfo, host, port, registry, path, opaque, query, fragment, parser=T.unsafe(nil), arg_check=T.unsafe(nil)); end -class Faraday::Adapter::Typhoeus -end + def merge(oth); end -class Faraday::Connection - METHODS = ::T.let(nil, ::T.untyped) - USER_AGENT = ::T.let(nil, ::T.untyped) -end + def merge!(oth); end -module Faraday::DecodeMethods - SUBKEYS_REGEX = ::T.let(nil, ::T.untyped) -end + def normalize(); end -module Faraday::EmHttp - VERSION = ::T.let(nil, ::T.untyped) -end + def normalize!(); end -module Faraday::EmSynchrony - VERSION = ::T.let(nil, ::T.untyped) -end + def opaque(); end -class Faraday::Env - ContentLength = ::T.let(nil, ::T.untyped) - MethodsWithBodies = ::T.let(nil, ::T.untyped) - StatusesWithoutBody = ::T.let(nil, ::T.untyped) - SuccessfulStatuses = ::T.let(nil, ::T.untyped) -end + def opaque=(v); end -module Faraday::Excon - VERSION = ::T.let(nil, ::T.untyped) -end + def parser(); end -Faraday::FilePart = UploadIO + def password(); end -module Faraday::HTTPClient - VERSION = ::T.let(nil, ::T.untyped) -end + def password=(password); end -module Faraday::Multipart - VERSION = ::T.let(nil, ::T.untyped) -end + def path(); end -Faraday::Multipart::FilePart = UploadIO + def path=(v); end -class Faraday::Multipart::Middleware - DEFAULT_BOUNDARY_PREFIX = ::T.let(nil, ::T.untyped) -end + def port(); end -Faraday::Multipart::Parts = Parts + def port=(v); end -module Faraday::NetHttp - VERSION = ::T.let(nil, ::T.untyped) -end + def query(); end -module Faraday::NetHttpPersistent - VERSION = ::T.let(nil, ::T.untyped) -end + def query=(v); end -Faraday::Parts = Parts + def registry(); end -module Faraday::Patron - VERSION = ::T.let(nil, ::T.untyped) -end + def registry=(v); end -module Faraday::Rack - VERSION = ::T.let(nil, ::T.untyped) -end + def relative?(); end -class Faraday::RackBuilder - LOCK_ERR = ::T.let(nil, ::T.untyped) - NO_ARGUMENT = ::T.let(nil, ::T.untyped) -end + def route_from(oth); end -class Faraday::RackBuilder::Handler - REGISTRY = ::T.let(nil, ::T.untyped) -end + def route_to(oth); end -class Faraday::Request::Authorization - def initialize(app, type, param); end + def scheme(); end - def on_request(env); end - KEY = ::T.let(nil, ::T.untyped) -end + def scheme=(v); end -class Faraday::Request::Authorization - def self.build_hash(type, hash); end + def select(*components); end - def self.header(type, token); end -end + def set_host(v); end -class Faraday::Request::BasicAuthentication -end + def set_opaque(v); end -class Faraday::Request::BasicAuthentication - def self.header(login, pass); end -end + def set_password(v); end -class Faraday::Request::Instrumentation - def initialize(app, options=T.unsafe(nil)); end -end + def set_path(v); end -class Faraday::Request::Instrumentation::Options -end + def set_port(v); end -class Faraday::Request::Instrumentation::Options -end + def set_registry(v); end -class Faraday::Request::Instrumentation -end + def set_scheme(v); end -class Faraday::Request::Multipart - DEFAULT_BOUNDARY_PREFIX = ::T.let(nil, ::T.untyped) -end + def set_user(v); end -class Faraday::Request::Retry - def build_exception_matcher(exceptions); end + def set_userinfo(user, password=T.unsafe(nil)); end - def calculate_sleep_amount(retries, env); end + def user(); end - def initialize(app, options=T.unsafe(nil)); end - DEFAULT_EXCEPTIONS = ::T.let(nil, ::T.untyped) - IDEMPOTENT_METHODS = ::T.let(nil, ::T.untyped) -end + def user=(user); end -class Faraday::Request::Retry::Options - DEFAULT_CHECK = ::T.let(nil, ::T.untyped) -end + def userinfo(); end -class Faraday::Request::Retry::Options + def userinfo=(userinfo); end + COMPONENT = ::T.let(nil, ::T.untyped) + DEFAULT_PORT = ::T.let(nil, ::T.untyped) + USE_REGISTRY = ::T.let(nil, ::T.untyped) end -class Faraday::Request::Retry -end +class Bundler::URI::Generic + def self.build(args); end -class Faraday::Request::TokenAuthentication - def initialize(app, token, options=T.unsafe(nil)); end -end + def self.build2(args); end -class Faraday::Request::TokenAuthentication - def self.header(token, options=T.unsafe(nil)); end + def self.component(); end + + def self.default_port(); end + + def self.use_proxy?(hostname, addr, port, no_proxy); end + + def self.use_registry(); end end -class Faraday::Request::UrlEncoded - CONTENT_TYPE = ::T.let(nil, ::T.untyped) +class Bundler::URI::HTTP + def request_uri(); end + COMPONENT = ::T.let(nil, ::T.untyped) + DEFAULT_PORT = ::T.let(nil, ::T.untyped) end -class Faraday::Response::Logger - def initialize(app, logger=T.unsafe(nil), options=T.unsafe(nil)); end +class Bundler::URI::HTTP end -class Faraday::Response::Logger +class Bundler::URI::HTTPS + DEFAULT_PORT = ::T.let(nil, ::T.untyped) end -class Faraday::Response::RaiseError - ClientErrorStatuses = ::T.let(nil, ::T.untyped) - ServerErrorStatuses = ::T.let(nil, ::T.untyped) +class Bundler::URI::HTTPS end -Faraday::Timer = Timeout +class Bundler::URI::InvalidComponentError +end -Faraday::UploadIO = UploadIO +class Bundler::URI::InvalidComponentError +end -module Faraday::Utils - DEFAULT_SEP = ::T.let(nil, ::T.untyped) - ESCAPE_RE = ::T.let(nil, ::T.untyped) +class Bundler::URI::InvalidURIError end -class Faraday::Utils::Headers - KeyMap = ::T.let(nil, ::T.untyped) +class Bundler::URI::InvalidURIError end -class Fiber - def initialize(*arg); end +class Bundler::URI::LDAP + def attributes(); end - def transfer(*arg); end -end + def attributes=(val); end -class Fiber - def self.current(); end -end + def dn(); end -class File - RELATIVE_PARENTDIR = ::T.let(nil, ::T.untyped) - RELATIVE_SAMEDIR = ::T.let(nil, ::T.untyped) -end + def dn=(val); end -class File - def self.absolute_path?(arg); end + def extensions(); end - def self.cleanpath(path, rel_root=T.unsafe(nil)); end + def extensions=(val); end - def self.exists?(arg); end + def filter(); end - def self.open!(file, *args, &block); end + def filter=(val); end - def self.read_binary(file); end + def initialize(*arg); end - def self.relative_path(from, to); end -end + def scope(); end -FileList = Rake::FileList + def scope=(val); end -module FileUtils - include ::FileUtils::StreamUtils_ - LN_SUPPORTED = ::T.let(nil, ::T.untyped) - RUBY = ::T.let(nil, ::T.untyped) -end + def set_attributes(val); end -module FileUtils::DryRun - include ::FileUtils - include ::FileUtils::StreamUtils_ - include ::FileUtils::LowMethods -end + def set_dn(val); end -module FileUtils::DryRun - extend ::FileUtils::DryRun - extend ::FileUtils - extend ::FileUtils::StreamUtils_ - extend ::FileUtils::LowMethods -end + def set_extensions(val); end -module FileUtils::NoWrite - include ::FileUtils - include ::FileUtils::StreamUtils_ - include ::FileUtils::LowMethods -end + def set_filter(val); end -module FileUtils::NoWrite - extend ::FileUtils::NoWrite - extend ::FileUtils - extend ::FileUtils::StreamUtils_ - extend ::FileUtils::LowMethods + def set_scope(val); end + COMPONENT = ::T.let(nil, ::T.untyped) + DEFAULT_PORT = ::T.let(nil, ::T.untyped) + SCOPE = ::T.let(nil, ::T.untyped) + SCOPE_BASE = ::T.let(nil, ::T.untyped) + SCOPE_ONE = ::T.let(nil, ::T.untyped) + SCOPE_SUB = ::T.let(nil, ::T.untyped) end -module FileUtils::Verbose - include ::FileUtils - include ::FileUtils::StreamUtils_ +class Bundler::URI::LDAP end -module FileUtils::Verbose - extend ::FileUtils::Verbose - extend ::FileUtils - extend ::FileUtils::StreamUtils_ +class Bundler::URI::LDAPS + DEFAULT_PORT = ::T.let(nil, ::T.untyped) end -module FileUtils - extend ::FileUtils::StreamUtils_ +class Bundler::URI::LDAPS end -class Float - include ::JSON::Ext::Generator::GeneratorMethods::Float -end +class Bundler::URI::MailTo + def headers(); end -module Forwardable - VERSION = ::T.let(nil, ::T.untyped) -end + def headers=(v); end -module Forwardable - def self._compile_method(src, file, line); end + def initialize(*arg); end - def self._delegator_method(obj, accessor, method, ali); end + def set_headers(v); end - def self._valid_method?(method); end + def set_to(v); end - def self.debug(); end + def to(); end - def self.debug=(debug); end -end + def to=(v); end -class FrozenError - def receiver(); end -end + def to_mailtext(); end -module GC - def garbage_collect(full_mark: T.unsafe(nil), immediate_mark: T.unsafe(nil), immediate_sweep: T.unsafe(nil)); end + def to_rfc822text(); end + COMPONENT = ::T.let(nil, ::T.untyped) + DEFAULT_PORT = ::T.let(nil, ::T.untyped) + EMAIL_REGEXP = ::T.let(nil, ::T.untyped) + HEADER_REGEXP = ::T.let(nil, ::T.untyped) end -module GC - def self.verify_transient_heap_internal_consistency(); end +class Bundler::URI::MailTo end -module Gem - ConfigMap = ::T.let(nil, ::T.untyped) - RbConfigPriorities = ::T.let(nil, ::T.untyped) - RubyGemsVersion = ::T.let(nil, ::T.untyped) - UNTAINT = ::T.let(nil, ::T.untyped) -end +Bundler::URI::Parser = Bundler::URI::RFC2396_Parser -Gem::Cache = Gem::SourceIndex +Bundler::URI::REGEXP = Bundler::URI::RFC2396_REGEXP -class Gem::Exception - extend ::Gem::Deprecate -end +class Bundler::URI::RFC2396_Parser + include ::Bundler::URI::RFC2396_REGEXP + def escape(str, unsafe=T.unsafe(nil)); end -class Gem::Ext::BuildError -end + def extract(str, schemes=T.unsafe(nil)); end -class Gem::Ext::BuildError -end + def initialize(opts=T.unsafe(nil)); end -class Gem::Ext::ExtConfBuilder -end + def join(*uris); end -Gem::Ext::ExtConfBuilder::FileEntry = FileUtils::Entry_ + def make_regexp(schemes=T.unsafe(nil)); end -class Gem::Ext::ExtConfBuilder - def self.build(extension, dest_path, results, args=T.unsafe(nil), lib_dir=T.unsafe(nil)); end + def parse(uri); end - def self.get_relative_path(path); end -end + def pattern(); end -class Gem::Package - def gem(); end -end + def regexp(); end -class Gem::Package::DigestIO - def digests(); end + def split(uri); end - def initialize(io, digests); end + def unescape(str, escaped=T.unsafe(nil)); end +end - def write(data); end +class Bundler::URI::RFC2396_Parser +end + +module Bundler::URI::RFC2396_REGEXP end -class Gem::Package::DigestIO - def self.wrap(io, digests); end +module Bundler::URI::RFC2396_REGEXP::PATTERN + ABS_PATH = ::T.let(nil, ::T.untyped) + ABS_URI = ::T.let(nil, ::T.untyped) + ALNUM = ::T.let(nil, ::T.untyped) + ALPHA = ::T.let(nil, ::T.untyped) + DOMLABEL = ::T.let(nil, ::T.untyped) + ESCAPED = ::T.let(nil, ::T.untyped) + FRAGMENT = ::T.let(nil, ::T.untyped) + HEX = ::T.let(nil, ::T.untyped) + HIER_PART = ::T.let(nil, ::T.untyped) + HOST = ::T.let(nil, ::T.untyped) + HOSTNAME = ::T.let(nil, ::T.untyped) + HOSTPORT = ::T.let(nil, ::T.untyped) + IPV4ADDR = ::T.let(nil, ::T.untyped) + IPV6ADDR = ::T.let(nil, ::T.untyped) + IPV6REF = ::T.let(nil, ::T.untyped) + NET_PATH = ::T.let(nil, ::T.untyped) + OPAQUE_PART = ::T.let(nil, ::T.untyped) + PATH_SEGMENTS = ::T.let(nil, ::T.untyped) + PORT = ::T.let(nil, ::T.untyped) + QUERY = ::T.let(nil, ::T.untyped) + REG_NAME = ::T.let(nil, ::T.untyped) + REL_PATH = ::T.let(nil, ::T.untyped) + REL_SEGMENT = ::T.let(nil, ::T.untyped) + REL_URI = ::T.let(nil, ::T.untyped) + RESERVED = ::T.let(nil, ::T.untyped) + SCHEME = ::T.let(nil, ::T.untyped) + TOPLABEL = ::T.let(nil, ::T.untyped) + UNRESERVED = ::T.let(nil, ::T.untyped) + URIC = ::T.let(nil, ::T.untyped) + URIC_NO_SLASH = ::T.let(nil, ::T.untyped) + URI_REF = ::T.let(nil, ::T.untyped) + USERINFO = ::T.let(nil, ::T.untyped) + X_ABS_URI = ::T.let(nil, ::T.untyped) + X_REL_URI = ::T.let(nil, ::T.untyped) end -class Gem::Package::FileSource - def initialize(path); end +module Bundler::URI::RFC2396_REGEXP::PATTERN +end - def path(); end +module Bundler::URI::RFC2396_REGEXP +end - def present?(); end +class Bundler::URI::RFC3986_Parser + def join(*uris); end - def start(); end + def parse(uri); end - def with_read_io(&block); end + def regexp(); end - def with_write_io(&block); end + def split(uri); end + RFC3986_URI = ::T.let(nil, ::T.untyped) + RFC3986_relative_ref = ::T.let(nil, ::T.untyped) end -class Gem::Package::FileSource +class Bundler::URI::RFC3986_Parser end -class Gem::Package::IOSource - def initialize(io); end +module Bundler::URI::Util +end - def io(); end +module Bundler::URI::Util + def self.make_components_hash(klass, array_hash); end +end - def path(); end +module Bundler::URI + def self.decode_www_form(str, enc=T.unsafe(nil), separator: T.unsafe(nil), use__charset_: T.unsafe(nil), isindex: T.unsafe(nil)); end - def present?(); end + def self.decode_www_form_component(str, enc=T.unsafe(nil)); end - def start(); end + def self.encode_www_form(enum, enc=T.unsafe(nil)); end - def with_read_io(); end + def self.encode_www_form_component(str, enc=T.unsafe(nil)); end - def with_write_io(); end -end + def self.extract(str, schemes=T.unsafe(nil), &block); end -class Gem::Package::IOSource -end + def self.for(scheme, *arguments, default: T.unsafe(nil)); end -class Gem::Package::Old - def extract_files(destination_dir); end + def self.get_encoding(label); end - def file_list(io); end + def self.join(*str); end - def read_until_dashes(io); end + def self.parse(uri); end - def skip_ruby(io); end -end + def self.regexp(schemes=T.unsafe(nil)); end -class Gem::Package::Old -end + def self.scheme_list(); end -class Gem::Package::Source + def self.split(uri); end end -class Gem::Package::Source +module Bundler::VersionRanges end -class Gem::Package::TarHeader - def ==(other); end - - def checksum(); end +class Bundler::VersionRanges::NEq + def version(); end - def devmajor(); end + def version=(_); end +end - def devminor(); end +class Bundler::VersionRanges::NEq + def self.[](*arg); end - def empty?(); end + def self.members(); end +end - def gid(); end +class Bundler::VersionRanges::ReqR + def cover?(v); end - def gname(); end + def empty?(); end - def initialize(vals); end + def left(); end - def linkname(); end + def left=(_); end - def magic(); end + def right(); end - def mode(); end + def right=(_); end - def mtime(); end + def single?(); end + INFINITY = ::T.let(nil, ::T.untyped) + UNIVERSAL = ::T.let(nil, ::T.untyped) + ZERO = ::T.let(nil, ::T.untyped) +end - def name(); end +class Bundler::VersionRanges::ReqR::Endpoint + def inclusive(); end - def prefix(); end + def inclusive=(_); end - def size(); end + def version(); end - def typeflag(); end + def version=(_); end +end - def uid(); end +class Bundler::VersionRanges::ReqR::Endpoint + def self.[](*arg); end - def uname(); end + def self.members(); end +end - def update_checksum(); end +class Bundler::VersionRanges::ReqR + def self.[](*arg); end - def version(); end - EMPTY_HEADER = ::T.let(nil, ::T.untyped) - FIELDS = ::T.let(nil, ::T.untyped) - PACK_FORMAT = ::T.let(nil, ::T.untyped) - UNPACK_FORMAT = ::T.let(nil, ::T.untyped) + def self.members(); end end -class Gem::Package::TarHeader - def self.from(stream); end +module Bundler::VersionRanges + def self.empty?(ranges, neqs); end - def self.oct_or_256based(str); end + def self.for(requirement); end - def self.strict_oct(str); end + def self.for_many(requirements); end end -class Gem::Package::TarReader::Entry - def bytes_read(); end - - def check_closed(); end +module Bundler + def self.configure_gem_home_and_path(path=T.unsafe(nil)); end - def close(); end + def self.create_bundle_path(); end - def closed?(); end + def self.most_specific_locked_platform?(platform); end - def directory?(); end + def self.original_exec(*args); end - def eof?(); end + def self.original_system(*args); end - def file?(); end + def self.preferred_gemfile_name(); end - def full_name(); end + def self.reset_settings_and_root!(); end - def getc(); end + def self.self_manager(); end - def header(); end + def self.unbundled_env(); end - def initialize(header, io); end + def self.unbundled_exec(*args); end - def length(); end + def self.unbundled_system(*args); end +end - def pos(); end +module CGI::HtmlExtension + def a(href=T.unsafe(nil)); end - def read(len=T.unsafe(nil)); end + def base(href=T.unsafe(nil)); end - def readpartial(maxlen=T.unsafe(nil), outbuf=T.unsafe(nil)); end + def blockquote(cite=T.unsafe(nil)); end - def rewind(); end + def caption(align=T.unsafe(nil)); end - def size(); end + def checkbox(name=T.unsafe(nil), value=T.unsafe(nil), checked=T.unsafe(nil)); end - def symlink?(); end -end + def checkbox_group(name=T.unsafe(nil), *values); end -class Gem::Package::TarReader::Entry -end + def file_field(name=T.unsafe(nil), size=T.unsafe(nil), maxlength=T.unsafe(nil)); end -class Gem::Package::TarReader - def self.new(io); end -end + def form(method=T.unsafe(nil), action=T.unsafe(nil), enctype=T.unsafe(nil)); end -class Gem::Package::TarWriter - def self.new(io); end -end + def hidden(name=T.unsafe(nil), value=T.unsafe(nil)); end -class Gem::Package - def self.new(gem, security_policy=T.unsafe(nil)); end + def html(attributes=T.unsafe(nil)); end - def self.raw_spec(path, security_policy=T.unsafe(nil)); end -end + def image_button(src=T.unsafe(nil), name=T.unsafe(nil), alt=T.unsafe(nil)); end -class Gem::PathSupport - def home(); end + def img(src=T.unsafe(nil), alt=T.unsafe(nil), width=T.unsafe(nil), height=T.unsafe(nil)); end - def initialize(env); end + def multipart_form(action=T.unsafe(nil), enctype=T.unsafe(nil)); end - def path(); end + def password_field(name=T.unsafe(nil), value=T.unsafe(nil), size=T.unsafe(nil), maxlength=T.unsafe(nil)); end - def spec_cache_dir(); end -end + def popup_menu(name=T.unsafe(nil), *values); end -class Gem::RemoteFetcher::FetchError - include ::Gem::UriParsing - def initialize(message, uri); end + def radio_button(name=T.unsafe(nil), value=T.unsafe(nil), checked=T.unsafe(nil)); end - def uri(); end + def radio_group(name=T.unsafe(nil), *values); end - def uri=(uri); end -end + def reset(value=T.unsafe(nil), name=T.unsafe(nil)); end -class Gem::RemoteFetcher::FetchError -end + def scrolling_list(name=T.unsafe(nil), *values); end -class Gem::RemoteFetcher::UnknownHostError -end + def submit(value=T.unsafe(nil), name=T.unsafe(nil)); end -class Gem::RemoteFetcher::UnknownHostError -end + def text_field(name=T.unsafe(nil), value=T.unsafe(nil), size=T.unsafe(nil), maxlength=T.unsafe(nil)); end -class Gem::Request - extend ::Gem::UserInteraction - extend ::Gem::DefaultUserInteraction - extend ::Gem::Text + def textarea(name=T.unsafe(nil), cols=T.unsafe(nil), rows=T.unsafe(nil)); end end -class Gem::Resolver::CurrentSet +module CGI::HtmlExtension end -class Gem::Resolver::CurrentSet +class Class + def json_creatable?(); end end -class Gem::Resolver::LocalSpecification +module CodeRay + CODERAY_PATH = ::T.let(nil, ::T.untyped) + TokenKinds = ::T.let(nil, ::T.untyped) + VERSION = ::T.let(nil, ::T.untyped) end -class Gem::Resolver::LocalSpecification +class CodeRay::Encoders::Encoder + DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) end -class Gem::Resolver::Molinillo::DependencyGraph::Log - def add_edge_no_circular(graph, origin, destination, requirement); end - - def add_vertex(graph, name, payload, root); end - - def delete_edge(graph, origin_name, destination_name, requirement); end - - def detach_vertex_named(graph, name); end - - def each(&blk); end - - def pop!(graph); end - - def reverse_each(); end - - def rewind_to(graph, tag); end - - def set_payload(graph, name, payload); end +CodeRay::Encoders::Encoder::PLUGIN_HOST = CodeRay::Encoders - def tag(graph, tag); end +class CodeRay::Encoders::HTML + DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) + FILE_EXTENSION = ::T.let(nil, ::T.untyped) + HTML_ESCAPE = ::T.let(nil, ::T.untyped) + HTML_ESCAPE_PATTERN = ::T.let(nil, ::T.untyped) + TOKEN_KIND_TO_INFO = ::T.let(nil, ::T.untyped) + TRANSPARENT_TOKEN_KINDS = ::T.let(nil, ::T.untyped) end -class Gem::Resolver::Molinillo::DependencyGraph::Log - extend ::Enumerable +class CodeRay::Encoders::HTML::CSS + CSS_CLASS_PATTERN = ::T.let(nil, ::T.untyped) end -class Gem::RuntimeRequirementNotMetError - def suggestion(); end - - def suggestion=(suggestion); end +module CodeRay::Encoders::HTML::Output + DIV = ::T.let(nil, ::T.untyped) + PAGE = ::T.let(nil, ::T.untyped) + SPAN = ::T.let(nil, ::T.untyped) + TABLE = ::T.let(nil, ::T.untyped) end -class Gem::RuntimeRequirementNotMetError +class CodeRay::Encoders::Terminal + TOKEN_COLORS = ::T.let(nil, ::T.untyped) end -class Gem::Security::Exception +module CodeRay::FileType + TypeFromExt = ::T.let(nil, ::T.untyped) + TypeFromName = ::T.let(nil, ::T.untyped) + TypeFromShebang = ::T.let(nil, ::T.untyped) end -class Gem::Security::Exception +module CodeRay::PluginHost + PLUGIN_HOSTS = ::T.let(nil, ::T.untyped) + PLUGIN_HOSTS_BY_ID = ::T.let(nil, ::T.untyped) end -Gem::Security::KEY_ALGORITHM = OpenSSL::PKey::RSA - -class Gem::Security::Policy - include ::Gem::UserInteraction - include ::Gem::DefaultUserInteraction - include ::Gem::Text - def check_cert(signer, issuer, time); end - - def check_chain(chain, time); end - - def check_data(public_key, digest, signature, data); end - - def check_key(signer, key); end - - def check_root(chain, time); end - - def check_trust(chain, digester, trust_dir); end +class CodeRay::Scanners::Java + CONSTANTS = ::T.let(nil, ::T.untyped) + DIRECTIVES = ::T.let(nil, ::T.untyped) + ESCAPE = ::T.let(nil, ::T.untyped) + IDENT = ::T.let(nil, ::T.untyped) + IDENT_KIND = ::T.let(nil, ::T.untyped) + KEYWORDS = ::T.let(nil, ::T.untyped) + MAGIC_VARIABLES = ::T.let(nil, ::T.untyped) + RESERVED = ::T.let(nil, ::T.untyped) + STRING_CONTENT_PATTERN = ::T.let(nil, ::T.untyped) + TYPES = ::T.let(nil, ::T.untyped) + UNICODE_ESCAPE = ::T.let(nil, ::T.untyped) +end - def initialize(name, policy=T.unsafe(nil), opt=T.unsafe(nil)); end +module CodeRay::Scanners::Java::BuiltinTypes + List = ::T.let(nil, ::T.untyped) +end - def name(); end +module CodeRay::Scanners::Ruby::Patterns + BINARY = ::T.let(nil, ::T.untyped) + CHARACTER = ::T.let(nil, ::T.untyped) + CLASS_VARIABLE = ::T.let(nil, ::T.untyped) + CONTROL_META_ESCAPE = ::T.let(nil, ::T.untyped) + DATA = ::T.let(nil, ::T.untyped) + DECIMAL = ::T.let(nil, ::T.untyped) + ESCAPE = ::T.let(nil, ::T.untyped) + EXPONENT = ::T.let(nil, ::T.untyped) + FANCY_STRING_INTERPRETED = ::T.let(nil, ::T.untyped) + FANCY_STRING_KIND = ::T.let(nil, ::T.untyped) + FANCY_STRING_START = ::T.let(nil, ::T.untyped) + FLOAT_OR_INT = ::T.let(nil, ::T.untyped) + FLOAT_SUFFIX = ::T.let(nil, ::T.untyped) + GLOBAL_VARIABLE = ::T.let(nil, ::T.untyped) + HEREDOC_OPEN = ::T.let(nil, ::T.untyped) + HEXADECIMAL = ::T.let(nil, ::T.untyped) + IDENT = ::T.let(nil, ::T.untyped) + IDENT_KIND = ::T.let(nil, ::T.untyped) + INSTANCE_VARIABLE = ::T.let(nil, ::T.untyped) + KEYWORDS = ::T.let(nil, ::T.untyped) + KEYWORDS_EXPECTING_VALUE = ::T.let(nil, ::T.untyped) + KEYWORD_NEW_STATE = ::T.let(nil, ::T.untyped) + METHOD_AFTER_DOT = ::T.let(nil, ::T.untyped) + METHOD_NAME = ::T.let(nil, ::T.untyped) + METHOD_NAME_EX = ::T.let(nil, ::T.untyped) + METHOD_NAME_OPERATOR = ::T.let(nil, ::T.untyped) + METHOD_NAME_OR_SYMBOL = ::T.let(nil, ::T.untyped) + METHOD_SUFFIX = ::T.let(nil, ::T.untyped) + NUMERIC = ::T.let(nil, ::T.untyped) + OBJECT_VARIABLE = ::T.let(nil, ::T.untyped) + OCTAL = ::T.let(nil, ::T.untyped) + PREDEFINED_CONSTANTS = ::T.let(nil, ::T.untyped) + PREFIX_VARIABLE = ::T.let(nil, ::T.untyped) + QUOTE_TO_TYPE = ::T.let(nil, ::T.untyped) + REGEXP_MODIFIERS = ::T.let(nil, ::T.untyped) + RUBYDOC = ::T.let(nil, ::T.untyped) + RUBYDOC_OR_DATA = ::T.let(nil, ::T.untyped) + SIMPLE_ESCAPE = ::T.let(nil, ::T.untyped) + SYMBOL = ::T.let(nil, ::T.untyped) + VALUE_FOLLOWS = ::T.let(nil, ::T.untyped) + VARIABLE = ::T.let(nil, ::T.untyped) +end - def only_signed(); end +class CodeRay::Scanners::Ruby::StringState + CLOSING_PAREN = ::T.let(nil, ::T.untyped) + STRING_PATTERN = ::T.let(nil, ::T.untyped) +end - def only_signed=(only_signed); end +class CodeRay::Scanners::Scanner + DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) + KINDS_NOT_LOC = ::T.let(nil, ::T.untyped) + SCANNER_STATE_INFO = ::T.let(nil, ::T.untyped) + SCAN_ERROR_MESSAGE = ::T.let(nil, ::T.untyped) +end - def only_trusted(); end +CodeRay::Scanners::Scanner::PLUGIN_HOST = CodeRay::Scanners - def only_trusted=(only_trusted); end +class CodeRay::Styles::Style + DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) +end - def subject(certificate); end +CodeRay::Styles::Style::PLUGIN_HOST = CodeRay::Styles - def verify(chain, key=T.unsafe(nil), digests=T.unsafe(nil), signatures=T.unsafe(nil), full_name=T.unsafe(nil)); end +CompositeIO = Multipart::Post::CompositeReadIO - def verify_chain(); end +class ConnectionPool + DEFAULTS = ::T.let(nil, ::T.untyped) + VERSION = ::T.let(nil, ::T.untyped) +end - def verify_chain=(verify_chain); end +class ConnectionPool::Wrapper + METHODS = ::T.let(nil, ::T.untyped) +end - def verify_data(); end +class DRb::DRbArray + def _dump(lv); end +end - def verify_data=(verify_data); end +class DRb::DRbArray + def self._load(s); end +end - def verify_root(); end +class DRb::DRbConn + def alive?(); end - def verify_root=(verify_root); end + def close(); end - def verify_signatures(spec, digests, signatures); end + def initialize(remote_uri); end - def verify_signer(); end + def send_message(ref, msg_id, arg, block); end - def verify_signer=(verify_signer); end + def uri(); end end -class Gem::Security::Policy +class DRb::DRbConn + def self.open(remote_uri); end end -class Gem::Security::Signer - include ::Gem::UserInteraction - include ::Gem::DefaultUserInteraction - include ::Gem::Text - def cert_chain(); end +class DRb::DRbMessage + def dump(obj, error=T.unsafe(nil)); end - def cert_chain=(cert_chain); end + def initialize(config); end - def digest_algorithm(); end + def load(soc); end - def digest_name(); end + def recv_reply(stream); end - def extract_name(cert); end + def recv_request(stream); end - def initialize(key, cert_chain, passphrase=T.unsafe(nil), options=T.unsafe(nil)); end + def send_reply(stream, succ, result); end - def key(); end + def send_request(stream, ref, msg_id, arg, b); end +end - def key=(key); end +class DRb::DRbObject + def ==(other); end - def load_cert_chain(); end + def eql?(other); end - def options(); end + def initialize(obj, uri=T.unsafe(nil)); end +end + +class DRb::DRbObject + def self.prepare_backtrace(uri, result); end - def re_sign_key(expiration_length: T.unsafe(nil)); end + def self.with_friend(uri); end +end - def sign(data); end +module DRb::DRbProtocol + def self.auto_load(uri); end end -class Gem::Security::Signer - def self.re_sign_cert(expired_cert, expired_cert_path, private_key); end +class DRb::DRbRemoteError + def initialize(error); end end -class Gem::Security::TrustDir - def cert_path(certificate); end +class DRb::DRbServer + def initialize(uri=T.unsafe(nil), front=T.unsafe(nil), config_or_acl=T.unsafe(nil)); end + + def safe_level(); end +end - def dir(); end +class DRb::DRbServer::InvokeMethod + include ::DRb::DRbServer::InvokeMethod18Mixin + def initialize(drb_server, client); end - def each_certificate(); end + def perform(); end +end - def initialize(dir, permissions=T.unsafe(nil)); end +class DRb::DRbServer::InvokeMethod +end - def issuer_of(certificate); end +module DRb::DRbServer::InvokeMethod18Mixin + def block_yield(x); end - def load_certificate(certificate_file); end + def perform_with_block(); end +end - def name_path(name); end +module DRb::DRbServer::InvokeMethod18Mixin +end - def trust_cert(certificate); end +class DRb::DRbServer + def self.default_safe_level(level); end - def verify(); end + def self.make_config(hash=T.unsafe(nil)); end end -module Gem::Security - def self.alt_name_or_x509_entry(certificate, x509_entry); end +class DRb::DRbTCPSocket + def accept(); end + + def alive?(); end - def self.create_cert(subject, key, age=T.unsafe(nil), extensions=T.unsafe(nil), serial=T.unsafe(nil)); end + def close(); end - def self.create_cert_email(email, key, age=T.unsafe(nil), extensions=T.unsafe(nil)); end + def initialize(uri, soc, config=T.unsafe(nil)); end - def self.create_cert_self_signed(subject, key, age=T.unsafe(nil), extensions=T.unsafe(nil), serial=T.unsafe(nil)); end + def peeraddr(); end - def self.create_key(length=T.unsafe(nil), algorithm=T.unsafe(nil)); end + def recv_reply(); end - def self.email_to_name(email_address); end + def recv_request(); end - def self.re_sign(expired_certificate, private_key, age=T.unsafe(nil), extensions=T.unsafe(nil)); end + def send_reply(succ, result); end - def self.reset(); end + def send_request(ref, msg_id, arg, b); end - def self.sign(certificate, signing_key, signing_cert, age=T.unsafe(nil), extensions=T.unsafe(nil), serial=T.unsafe(nil)); end + def set_sockopt(soc); end - def self.trust_dir(); end + def shutdown(); end - def self.trusted_certificates(&block); end + def stream(); end - def self.write(pemmable, path, permissions=T.unsafe(nil), passphrase=T.unsafe(nil), cipher=T.unsafe(nil)); end + def uri(); end end -class Gem::SpecFetcher - include ::Gem::UserInteraction - include ::Gem::DefaultUserInteraction - include ::Gem::Text - def available_specs(type); end - - def detect(type=T.unsafe(nil)); end +class DRb::DRbTCPSocket + def self.getservername(); end - def initialize(sources=T.unsafe(nil)); end + def self.open(uri, config); end - def latest_specs(); end + def self.open_server(uri, config); end - def prerelease_specs(); end + def self.open_server_inaddr_any(host, port); end - def search_for_dependency(dependency, matching_platform=T.unsafe(nil)); end + def self.parse_uri(uri); end - def sources(); end + def self.uri_option(uri, config); end +end - def spec_for_dependency(dependency, matching_platform=T.unsafe(nil)); end +class DRb::DRbURIOption + def ==(other); end - def specs(); end + def eql?(other); end - def suggest_gems_from_name(gem_name, type=T.unsafe(nil)); end + def initialize(option); end - def tuples_for(source, type, gracefully_ignore=T.unsafe(nil)); end + def option(); end end -class Gem::SpecFetcher - def self.fetcher(); end - - def self.fetcher=(fetcher); end +class DRb::DRbURIOption end -class Gem::Specification - include ::Bundler::MatchPlatform - include ::Bundler::GemHelpers - def removed_method_calls(); end +module DRb::DRbUndumped + def _dump(dummy); end +end - def to_ruby(); end - REMOVED_METHODS = ::T.let(nil, ::T.untyped) +class DRb::DRbUnknown + def _dump(lv); end end -class Gem::Specification - extend ::Gem::Deprecate - extend ::Enumerable +class DRb::DRbUnknown + def self._load(s); end end -class Gem::SpecificationPolicy - include ::Gem::UserInteraction - include ::Gem::DefaultUserInteraction - include ::Gem::Text - def initialize(specification); end +class DRb::DRbUnknownError + def _dump(lv); end + + def initialize(unknown); end +end - def packaging(); end +class DRb::DRbUnknownError + def self._load(s); end +end - def packaging=(packaging); end +module DRb + def self.mutex(); end +end - def validate(strict=T.unsafe(nil)); end +DRbIdConv = DRb::DRbIdConv - def validate_dependencies(); end +DRbObject = DRb::DRbObject - def validate_metadata(); end +DRbUndumped = DRb::DRbUndumped - def validate_permissions(); end - HOMEPAGE_URI_PATTERN = ::T.let(nil, ::T.untyped) - LAZY = ::T.let(nil, ::T.untyped) - LAZY_PATTERN = ::T.let(nil, ::T.untyped) - METADATA_LINK_KEYS = ::T.let(nil, ::T.untyped) - SPECIAL_CHARACTERS = ::T.let(nil, ::T.untyped) - VALID_NAME_PATTERN = ::T.let(nil, ::T.untyped) - VALID_URI_PATTERN = ::T.let(nil, ::T.untyped) +class Date::Infinity + def initialize(d=T.unsafe(nil)); end end -class Gem::SpecificationPolicy +class Delegator + RUBYGEMS_ACTIVATION_MONITOR = ::T.let(nil, ::T.untyped) end -class Gem::StreamUI - def _deprecated_debug(statement); end +class Dir + def self.exists?(arg); end end -class Gem::StubSpecification - def build_extensions(); end +module Docile + VERSION = ::T.let(nil, ::T.untyped) +end - def extensions(); end +module Docile::BacktraceFilter + FILTER_PATTERN = ::T.let(nil, ::T.untyped) +end - def initialize(filename, base_dir, gems_dir, default_gem); end +class Docile::FallbackContextProxy + NON_FALLBACK_METHODS = ::T.let(nil, ::T.untyped) + NON_PROXIED_INSTANCE_VARIABLES = ::T.let(nil, ::T.untyped) + NON_PROXIED_METHODS = ::T.let(nil, ::T.untyped) +end - def missing_extensions?(); end +class ERB + def def_method(mod, methodname, fname=T.unsafe(nil)); end - def valid?(); end + def def_module(methodname=T.unsafe(nil)); end end -class Gem::StubSpecification::StubLine - def extensions(); end - - def full_name(); end - - def initialize(data, extensions); end - - def name(); end - - def platform(); end - - def require_paths(); end - - def version(); end +class ERB::Compiler::Scanner + DEFAULT_ETAGS = ::T.let(nil, ::T.untyped) + DEFAULT_STAGS = ::T.let(nil, ::T.untyped) end -class Gem::StubSpecification - def self.default_gemspec_stub(filename, base_dir, gems_dir); end - - def self.gemspec_stub(filename, base_dir, gems_dir); end +class Encoding + def _dump(*arg); end end -class Gem::UninstallError - def spec(); end - - def spec=(spec); end +class Encoding::Converter + def initialize(*arg); end end -class Gem::UninstallError +class Encoding + def self._load(arg); end end -Gem::UnsatisfiableDepedencyError = Gem::UnsatisfiableDependencyError +class Enumerator + def each_with_index(); end +end -Gem::Version::Requirement = Gem::Requirement +class Enumerator::Generator + def each(*arg, &blk); end -module Gem - def self.activated_gem_paths(); end + def initialize(*arg); end end -class Hash - include ::JSON::Ext::Generator::GeneratorMethods::Hash - def deconstruct_keys(arg); end +class Errno::EAUTH + Errno = ::T.let(nil, ::T.untyped) end -class Hash - def self.ruby2_keywords_hash(arg); end - - def self.ruby2_keywords_hash?(arg); end - - def self.try_convert(arg); end +class Errno::EAUTH end -class IO - def nonblock(*arg); end - - def nonblock=(nonblock); end - - def nonblock?(); end - - def nread(); end - - def pathconf(arg); end - - def ready?(); end - - def set_encoding_by_bom(); end - - def wait(*arg); end - - def wait_readable(*arg); end +class Errno::EBADRPC + Errno = ::T.let(nil, ::T.untyped) +end - def wait_writable(*arg); end +class Errno::EBADRPC end -IO::EWOULDBLOCKWaitReadable = IO::EAGAINWaitReadable +Errno::ECAPMODE = Errno::NOERROR -IO::EWOULDBLOCKWaitWritable = IO::EAGAINWaitWritable +Errno::EDEADLOCK = Errno::NOERROR -class IPAddr - def ==(other); end +Errno::EDOOFUS = Errno::NOERROR - def initialize(addr=T.unsafe(nil), family=T.unsafe(nil)); end +class Errno::EFTYPE + Errno = ::T.let(nil, ::T.untyped) end -class Integer - include ::JSON::Ext::Generator::GeneratorMethods::Integer - def to_bn(); end +class Errno::EFTYPE end -class JSON::Ext::Generator::State - def self.from_state(arg); end -end +Errno::EIPSEC = Errno::NOERROR -class JSON::Ext::Parser - def initialize(*arg); end +class Errno::ENEEDAUTH + Errno = ::T.let(nil, ::T.untyped) end -JSON::Parser = JSON::Ext::Parser - -JSON::State = JSON::Ext::Generator::State - -JSON::UnparserError = JSON::GeneratorError - -module JWT::Algos - ALGOS = ::T.let(nil, ::T.untyped) +class Errno::ENEEDAUTH end -module JWT::Algos::Ecdsa - NAMED_CURVES = ::T.let(nil, ::T.untyped) - SUPPORTED = ::T.let(nil, ::T.untyped) +class Errno::ENOATTR + Errno = ::T.let(nil, ::T.untyped) end -module JWT::Algos::Eddsa - SUPPORTED = ::T.let(nil, ::T.untyped) +class Errno::ENOATTR end -module JWT::Algos::Hmac - SUPPORTED = ::T.let(nil, ::T.untyped) -end +Errno::ENOTCAPABLE = Errno::NOERROR -module JWT::Algos::None - SUPPORTED = ::T.let(nil, ::T.untyped) +class Errno::ENOTSUP + Errno = ::T.let(nil, ::T.untyped) end -module JWT::Algos::Ps - SUPPORTED = ::T.let(nil, ::T.untyped) +class Errno::ENOTSUP end -module JWT::Algos::Rsa - SUPPORTED = ::T.let(nil, ::T.untyped) +class Errno::EPROCLIM + Errno = ::T.let(nil, ::T.untyped) end -module JWT::Algos::Unsupported - SUPPORTED = ::T.let(nil, ::T.untyped) +class Errno::EPROCLIM end -class JWT::ClaimsValidator - NUMERIC_CLAIMS = ::T.let(nil, ::T.untyped) +class Errno::EPROCUNAVAIL + Errno = ::T.let(nil, ::T.untyped) end -module JWT::DefaultOptions - DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) +class Errno::EPROCUNAVAIL end -class JWT::Encode - ALG_KEY = ::T.let(nil, ::T.untyped) - ALG_NONE = ::T.let(nil, ::T.untyped) +class Errno::EPROGMISMATCH + Errno = ::T.let(nil, ::T.untyped) end -class JWT::JWK::EC - BINARY = ::T.let(nil, ::T.untyped) - KTY = ::T.let(nil, ::T.untyped) - KTYS = ::T.let(nil, ::T.untyped) +class Errno::EPROGMISMATCH end -class JWT::JWK::HMAC - KTY = ::T.let(nil, ::T.untyped) - KTYS = ::T.let(nil, ::T.untyped) +class Errno::EPROGUNAVAIL + Errno = ::T.let(nil, ::T.untyped) end -class JWT::JWK::RSA - BINARY = ::T.let(nil, ::T.untyped) - KTY = ::T.let(nil, ::T.untyped) - KTYS = ::T.let(nil, ::T.untyped) - RSA_KEY_ELEMENTS = ::T.let(nil, ::T.untyped) +class Errno::EPROGUNAVAIL end -class JWT::Verify - DEFAULTS = ::T.let(nil, ::T.untyped) +class Errno::ERPCMISMATCH + Errno = ::T.let(nil, ::T.untyped) end -module Kernel - def itself(); end +class Errno::ERPCMISMATCH +end - def object_id(); end +class Etc::Group + def gid(); end - def pretty_inspect(); end + def gid=(_); end - def then(); end + def mem(); end - def yield_self(); end -end + def mem=(_); end -module Kernel - def self.at_exit(); end -end + def name(); end -class KeyError - include ::DidYouMean::Correctable -end + def name=(_); end -class Logger - def debug!(); end + def passwd(); end - def error!(); end + def passwd=(_); end +end - def fatal!(); end +class Etc::Group + extend ::Enumerable + def self.[](*arg); end - def info!(); end + def self.each(&blk); end - def warn!(); end - SEV_LABEL = ::T.let(nil, ::T.untyped) + def self.members(); end end -class Logger::Formatter - Format = ::T.let(nil, ::T.untyped) -end +class Etc::Passwd + def change(); end -class Logger::LogDevice - include ::MonitorMixin -end + def change=(_); end -module Logger::Period - SiD = ::T.let(nil, ::T.untyped) -end + def dir=(_); end -module MethodSource - VERSION = ::T.let(nil, ::T.untyped) -end + def expire(); end -module MethodSource::CodeHelpers::IncompleteExpression - GENERIC_REGEXPS = ::T.let(nil, ::T.untyped) - RBX_ONLY_REGEXPS = ::T.let(nil, ::T.untyped) -end + def expire=(_); end -class Monitor - def enter(); end + def gecos(); end - def exit(); end + def gecos=(_); end - def mon_check_owner(); end + def gid=(_); end - def mon_enter(); end + def name=(_); end - def mon_exit(); end + def passwd=(_); end - def mon_locked?(); end + def shell=(_); end - def mon_owned?(); end + def uclass(); end - def mon_synchronize(); end + def uclass=(_); end - def mon_try_enter(); end + def uid=(_); end +end - def new_cond(); end +class Etc::Passwd + extend ::Enumerable + def self.[](*arg); end - def synchronize(); end + def self.each(&blk); end - def try_enter(); end + def self.members(); end +end - def try_mon_enter(); end +class ExitCalledError +end - def wait_for_cond(arg, arg1); end +class ExitCalledError end -module MonitorMixin - def initialize(*args); end +class FalseClass + include ::JSON::Ext::Generator::GeneratorMethods::FalseClass end -class MonitorMixin::ConditionVariable - def initialize(monitor); end +module Faraday + CONTENT_TYPE = ::T.let(nil, ::T.untyped) + METHODS_WITH_BODY = ::T.let(nil, ::T.untyped) + METHODS_WITH_QUERY = ::T.let(nil, ::T.untyped) + VERSION = ::T.let(nil, ::T.untyped) end -class NameError - include ::DidYouMean::Correctable +class Faraday::Adapter + CONTENT_LENGTH = ::T.let(nil, ::T.untyped) + TIMEOUT_KEYS = ::T.let(nil, ::T.untyped) end -class Net::BufferedIO - def write_timeout(); end +class Faraday::Adapter::Excon + OPTS_KEYS = ::T.let(nil, ::T.untyped) +end - def write_timeout=(write_timeout); end +class Faraday::Adapter::NetHttp + NET_HTTP_EXCEPTIONS = ::T.let(nil, ::T.untyped) end -class Net::HTTP - def ipaddr(); end +class Faraday::Adapter::NetHttpPersistent + SSL_CONFIGURATIONS = ::T.let(nil, ::T.untyped) +end - def ipaddr=(addr); end +class Faraday::Adapter::Patron + CURL_TIMEOUT_MESSAGES = ::T.let(nil, ::T.untyped) +end - def max_retries(); end +class Faraday::Adapter::Rack + SPECIAL_HEADERS = ::T.let(nil, ::T.untyped) +end - def max_retries=(retries); end +class Faraday::Adapter::Test + def configure(); end - def max_version(); end + def initialize(app, stubs=T.unsafe(nil), &block); end - def max_version=(max_version); end + def stubs(); end - def min_version(); end + def stubs=(stubs); end +end - def min_version=(min_version); end +class Faraday::Adapter::Test::Stub + def headers_match?(request_headers); end - def write_timeout(); end + def matches?(env); end - def write_timeout=(sec); end - ENVIRONMENT_VARIABLE_IS_MULTIUSER_SAFE = ::T.let(nil, ::T.untyped) + def params_match?(env); end + + def path_match?(request_path, meta); end end -class Net::HTTP::Persistent - DEFAULT_POOL_SIZE = ::T.let(nil, ::T.untyped) - EPOCH = ::T.let(nil, ::T.untyped) - HAVE_OPENSSL = ::T.let(nil, ::T.untyped) - VERSION = ::T.let(nil, ::T.untyped) +class Faraday::Adapter::Test::Stub end -Net::HTTP::ProxyMod = Net::HTTP::ProxyDelta +class Faraday::Adapter::Test::Stubs + def delete(path, headers=T.unsafe(nil), &block); end -class Net::HTTPAlreadyReported - HAS_BODY = ::T.let(nil, ::T.untyped) -end + def empty?(); end -class Net::HTTPAlreadyReported -end + def get(path, headers=T.unsafe(nil), &block); end -Net::HTTPClientErrorCode = Net::HTTPClientError + def head(path, headers=T.unsafe(nil), &block); end -class Net::HTTPEarlyHints - HAS_BODY = ::T.let(nil, ::T.untyped) -end + def initialize(strict_mode: T.unsafe(nil)); end -class Net::HTTPEarlyHints -end + def match(env); end -Net::HTTPFatalErrorCode = Net::HTTPClientError + def matches?(stack, env); end -Net::HTTPInformation::EXCEPTION_TYPE = Net::HTTPError + def new_stub(request_method, path, headers=T.unsafe(nil), body=T.unsafe(nil), &block); end -Net::HTTPInformationCode = Net::HTTPInformation + def options(path, headers=T.unsafe(nil), &block); end -class Net::HTTPLoopDetected - HAS_BODY = ::T.let(nil, ::T.untyped) -end + def patch(path, body=T.unsafe(nil), headers=T.unsafe(nil), &block); end -class Net::HTTPLoopDetected + def post(path, body=T.unsafe(nil), headers=T.unsafe(nil), &block); end + + def put(path, body=T.unsafe(nil), headers=T.unsafe(nil), &block); end + + def strict_mode=(value); end + + def verify_stubbed_calls(); end end -class Net::HTTPMisdirectedRequest - HAS_BODY = ::T.let(nil, ::T.untyped) +class Faraday::Adapter::Test::Stubs::NotFound end -class Net::HTTPMisdirectedRequest +class Faraday::Adapter::Test::Stubs::NotFound end -Net::HTTPMovedTemporarily = Net::HTTPFound +class Faraday::Adapter::Test::Stubs +end -Net::HTTPMultipleChoice = Net::HTTPMultipleChoices +class Faraday::Adapter::Test +end -class Net::HTTPNotExtended - HAS_BODY = ::T.let(nil, ::T.untyped) +class Faraday::Adapter::Typhoeus + def call(); end end -class Net::HTTPNotExtended +class Faraday::Adapter::Typhoeus end -class Net::HTTPPayloadTooLarge - HAS_BODY = ::T.let(nil, ::T.untyped) +class Faraday::Connection + METHODS = ::T.let(nil, ::T.untyped) + USER_AGENT = ::T.let(nil, ::T.untyped) end -class Net::HTTPPayloadTooLarge +module Faraday::DecodeMethods + SUBKEYS_REGEX = ::T.let(nil, ::T.untyped) end -class Net::HTTPProcessing - HAS_BODY = ::T.let(nil, ::T.untyped) +module Faraday::EmHttp + VERSION = ::T.let(nil, ::T.untyped) end -class Net::HTTPProcessing +module Faraday::EmSynchrony + VERSION = ::T.let(nil, ::T.untyped) end -class Net::HTTPRangeNotSatisfiable - HAS_BODY = ::T.let(nil, ::T.untyped) +class Faraday::Env + ContentLength = ::T.let(nil, ::T.untyped) + MethodsWithBodies = ::T.let(nil, ::T.untyped) + StatusesWithoutBody = ::T.let(nil, ::T.untyped) + SuccessfulStatuses = ::T.let(nil, ::T.untyped) end -class Net::HTTPRangeNotSatisfiable +module Faraday::Excon + VERSION = ::T.let(nil, ::T.untyped) end -Net::HTTPRedirection::EXCEPTION_TYPE = Net::HTTPRetriableError +Faraday::FilePart = Multipart::Post::UploadIO -Net::HTTPRedirectionCode = Net::HTTPRedirection +module Faraday::HTTPClient + VERSION = ::T.let(nil, ::T.untyped) +end -Net::HTTPRequestURITooLarge = Net::HTTPURITooLong +module Faraday::Multipart + VERSION = ::T.let(nil, ::T.untyped) +end -Net::HTTPResponceReceiver = Net::HTTPResponse +Faraday::Multipart::FilePart = Multipart::Post::UploadIO -Net::HTTPRetriableCode = Net::HTTPRedirection +class Faraday::Multipart::Middleware + DEFAULT_BOUNDARY_PREFIX = ::T.let(nil, ::T.untyped) +end -Net::HTTPServerErrorCode = Net::HTTPServerError +Faraday::Multipart::Parts = Multipart::Post::Parts -Net::HTTPSession = Net::HTTP +module Faraday::NetHttp + VERSION = ::T.let(nil, ::T.untyped) +end -Net::HTTPSuccess::EXCEPTION_TYPE = Net::HTTPError +module Faraday::NetHttpPersistent + VERSION = ::T.let(nil, ::T.untyped) +end -Net::HTTPSuccessCode = Net::HTTPSuccess +Faraday::Parts = Multipart::Post::Parts -class Net::HTTPURITooLong - HAS_BODY = ::T.let(nil, ::T.untyped) +module Faraday::Patron + VERSION = ::T.let(nil, ::T.untyped) end -class Net::HTTPURITooLong +module Faraday::Rack + VERSION = ::T.let(nil, ::T.untyped) end -Net::HTTPUnknownResponse::EXCEPTION_TYPE = Net::HTTPError - -class Net::HTTPVariantAlsoNegotiates - HAS_BODY = ::T.let(nil, ::T.untyped) +class Faraday::RackBuilder + LOCK_ERR = ::T.let(nil, ::T.untyped) + NO_ARGUMENT = ::T.let(nil, ::T.untyped) end -class Net::HTTPVariantAlsoNegotiates +class Faraday::RackBuilder::Handler + REGISTRY = ::T.let(nil, ::T.untyped) end -Net::NetPrivate::HTTPRequest = Net::HTTPRequest - -Net::NetPrivate::Socket = Net::InternetMessageIO +class Faraday::Request::Authorization + def initialize(app, type, param); end -Net::ProtocRetryError = Net::ProtoRetriableError + def on_request(env); end + KEY = ::T.let(nil, ::T.untyped) +end -class Net::ReadTimeout - def initialize(io=T.unsafe(nil)); end +class Faraday::Request::Authorization + def self.build_hash(type, hash); end - def io(); end + def self.header(type, token); end end -class Net::WriteTimeout - def initialize(io=T.unsafe(nil)); end +class Faraday::Request::BasicAuthentication +end - def io(); end +class Faraday::Request::BasicAuthentication + def self.header(login, pass); end end -class NilClass - include ::JSON::Ext::Generator::GeneratorMethods::NilClass +class Faraday::Request::Instrumentation + def initialize(app, options=T.unsafe(nil)); end end -class NoMatchingPatternError +class Faraday::Request::Instrumentation::Options end -class NoMatchingPatternError +class Faraday::Request::Instrumentation::Options end -class Object - include ::JSON::Ext::Generator::GeneratorMethods::Object - include ::PP::ObjectMixin - ARGF = ::T.let(nil, ::T.untyped) - ARGV = ::T.let(nil, ::T.untyped) - CROSS_COMPILING = ::T.let(nil, ::T.untyped) - ENV = ::T.let(nil, ::T.untyped) - RUBY18 = ::T.let(nil, ::T.untyped) - RUBY19 = ::T.let(nil, ::T.untyped) - RUBY_COPYRIGHT = ::T.let(nil, ::T.untyped) - RUBY_DESCRIPTION = ::T.let(nil, ::T.untyped) - RUBY_ENGINE = ::T.let(nil, ::T.untyped) - RUBY_ENGINE_VERSION = ::T.let(nil, ::T.untyped) - RUBY_PATCHLEVEL = ::T.let(nil, ::T.untyped) - RUBY_PLATFORM = ::T.let(nil, ::T.untyped) - RUBY_RELEASE_DATE = ::T.let(nil, ::T.untyped) - RUBY_REVISION = ::T.let(nil, ::T.untyped) - RUBY_VERSION = ::T.let(nil, ::T.untyped) - STDERR = ::T.let(nil, ::T.untyped) - STDIN = ::T.let(nil, ::T.untyped) - STDOUT = ::T.let(nil, ::T.untyped) - TOPLEVEL_BINDING = ::T.let(nil, ::T.untyped) +class Faraday::Request::Instrumentation end -class OpenSSL::ASN1::ASN1Data - def indefinite_length(); end +Faraday::Request::Retry = Faraday::Retry::Middleware - def indefinite_length=(indefinite_length); end +class Faraday::Request::TokenAuthentication + def initialize(app, token, options=T.unsafe(nil)); end end -class OpenSSL::BN - def +@(); end - - def -@(); end +class Faraday::Request::TokenAuthentication + def self.header(token, options=T.unsafe(nil)); end +end - def /(arg); end +class Faraday::Request::UrlEncoded + CONTENT_TYPE = ::T.let(nil, ::T.untyped) +end - def negative?(); end +class Faraday::Response::Logger + def initialize(app, logger=T.unsafe(nil), options=T.unsafe(nil)); end end -module OpenSSL::KDF +class Faraday::Response::Logger end -class OpenSSL::KDF::KDFError +class Faraday::Response::RaiseError + ClientErrorStatuses = ::T.let(nil, ::T.untyped) + ServerErrorStatuses = ::T.let(nil, ::T.untyped) end -class OpenSSL::KDF::KDFError +module Faraday::Retry + VERSION = ::T.let(nil, ::T.untyped) end -module OpenSSL::KDF - def self.hkdf(*arg); end +class Faraday::Retry::Middleware + def build_exception_matcher(exceptions); end - def self.pbkdf2_hmac(*arg); end + def calculate_sleep_amount(retries, env); end - def self.scrypt(*arg); end + def initialize(app, options=T.unsafe(nil)); end + DEFAULT_EXCEPTIONS = ::T.let(nil, ::T.untyped) + IDEMPOTENT_METHODS = ::T.let(nil, ::T.untyped) end -class OpenSSL::OCSP::Request - def signed?(); end +class Faraday::Retry::Middleware::Options + DEFAULT_CHECK = ::T.let(nil, ::T.untyped) end -OpenSSL::PKCS7::Signer = OpenSSL::PKCS7::SignerInfo - -class OpenSSL::PKey::EC - EXPLICIT_CURVE = ::T.let(nil, ::T.untyped) +class Faraday::Retry::Middleware::Options end -class OpenSSL::PKey::EC::Point - def to_octet_string(arg); end +class Faraday::Retry::Middleware end -module OpenSSL::SSL - OP_ALLOW_NO_DHE_KEX = ::T.let(nil, ::T.untyped) - OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION = ::T.let(nil, ::T.untyped) - OP_CRYPTOPRO_TLSEXT_BUG = ::T.let(nil, ::T.untyped) - OP_LEGACY_SERVER_CONNECT = ::T.let(nil, ::T.untyped) - OP_NO_ENCRYPT_THEN_MAC = ::T.let(nil, ::T.untyped) - OP_NO_RENEGOTIATION = ::T.let(nil, ::T.untyped) - OP_NO_TLSv1_3 = ::T.let(nil, ::T.untyped) - OP_SAFARI_ECDHE_ECDSA_BUG = ::T.let(nil, ::T.untyped) - OP_TLSEXT_PADDING = ::T.let(nil, ::T.untyped) - SSL2_VERSION = ::T.let(nil, ::T.untyped) - SSL3_VERSION = ::T.let(nil, ::T.untyped) - TLS1_1_VERSION = ::T.let(nil, ::T.untyped) - TLS1_2_VERSION = ::T.let(nil, ::T.untyped) - TLS1_3_VERSION = ::T.let(nil, ::T.untyped) - TLS1_VERSION = ::T.let(nil, ::T.untyped) +module Faraday::Retry end -class OpenSSL::SSL::SSLContext - def alpn_protocols(); end - - def alpn_protocols=(alpn_protocols); end +Faraday::Timer = Timeout - def alpn_select_cb(); end +Faraday::UploadIO = Multipart::Post::UploadIO - def alpn_select_cb=(alpn_select_cb); end +module Faraday::Utils + DEFAULT_SEP = ::T.let(nil, ::T.untyped) + ESCAPE_RE = ::T.let(nil, ::T.untyped) +end - def enable_fallback_scsv(); end - - def max_version=(version); end - - def min_version=(version); end - DEFAULT_TMP_DH_CALLBACK = ::T.let(nil, ::T.untyped) +class Faraday::Utils::Headers + KeyMap = ::T.let(nil, ::T.untyped) end -class OpenSSL::SSL::SSLSocket - def alpn_protocol(); end - - def tmp_key(); end +class Fiber + def transfer(*arg); end end -module OpenSSL::X509 - V_FLAG_NO_CHECK_TIME = ::T.let(nil, ::T.untyped) - V_FLAG_TRUSTED_FIRST = ::T.let(nil, ::T.untyped) +class Fiber + def self.current(); end end -class OpenSSL::X509::Attribute - def ==(other); end +class File + RELATIVE_PARENTDIR = ::T.let(nil, ::T.untyped) + RELATIVE_SAMEDIR = ::T.let(nil, ::T.untyped) end -class OpenSSL::X509::CRL - def ==(other); end -end +class File + def self.cleanpath(path, rel_root=T.unsafe(nil)); end -class OpenSSL::X509::Extension - def ==(other); end -end + def self.exists?(arg); end -class OpenSSL::X509::Name - def to_utf8(); end -end + def self.open!(file, *args, &block); end -class OpenSSL::X509::Request - def ==(other); end + def self.read_binary(file); end + + def self.relative_path(from, to); end end -class OpenSSL::X509::Revoked - def ==(other); end +FileList = Rake::FileList - def to_der(); end +module FileUtils + include ::FileUtils::StreamUtils_ + LN_SUPPORTED = ::T.let(nil, ::T.untyped) + RUBY = ::T.let(nil, ::T.untyped) end -module OpenSSL - def self.fips_mode(); end +module FileUtils::DryRun + include ::FileUtils + include ::FileUtils::StreamUtils_ + include ::FileUtils::LowMethods end -class OpenStruct - VERSION = ::T.let(nil, ::T.untyped) +module FileUtils::DryRun + extend ::FileUtils::DryRun + extend ::FileUtils + extend ::FileUtils::StreamUtils_ + extend ::FileUtils::LowMethods end -class OpenURI::Buffer - def <<(str); end +module FileUtils::NoWrite + include ::FileUtils + include ::FileUtils::StreamUtils_ + include ::FileUtils::LowMethods +end - def io(); end +module FileUtils::NoWrite + extend ::FileUtils::NoWrite + extend ::FileUtils + extend ::FileUtils::StreamUtils_ + extend ::FileUtils::LowMethods +end - def size(); end - StringMax = ::T.let(nil, ::T.untyped) +module FileUtils::Verbose + include ::FileUtils + include ::FileUtils::StreamUtils_ end -class OpenURI::Buffer +module FileUtils::Verbose + extend ::FileUtils::Verbose + extend ::FileUtils + extend ::FileUtils::StreamUtils_ end -class OpenURI::HTTPError - def initialize(message, io); end +module FileUtils + extend ::FileUtils::StreamUtils_ end -class OpenURI::HTTPRedirect - def initialize(message, io, uri); end +class Float + include ::JSON::Ext::Generator::GeneratorMethods::Float end -module OpenURI::Meta - def content_type_parse(); end +module Forwardable + def self._compile_method(src, file, line); end - def meta_add_field(name, value); end + def self._delegator_method(obj, accessor, method, ali); end - def meta_add_field2(name, values); end + def self._valid_method?(method); end - def meta_setup_encoding(); end - RE_LWS = ::T.let(nil, ::T.untyped) - RE_PARAMETERS = ::T.let(nil, ::T.untyped) - RE_QUOTED_STRING = ::T.let(nil, ::T.untyped) - RE_TOKEN = ::T.let(nil, ::T.untyped) + def self.debug(); end + + def self.debug=(debug); end end -module OpenURI::Meta - def self.init(obj, src=T.unsafe(nil)); end +module GC + def garbage_collect(*arg); end end -module OpenURI - def self.check_options(options); end +module Gem + ConfigMap = ::T.let(nil, ::T.untyped) + RbConfigPriorities = ::T.let(nil, ::T.untyped) + RubyGemsPackageVersion = ::T.let(nil, ::T.untyped) + RubyGemsVersion = ::T.let(nil, ::T.untyped) + USE_BUNDLER_FOR_GEMDEPS = ::T.let(nil, ::T.untyped) +end - def self.open_http(buf, target, proxy, options); end +Gem::Cache = Gem::SourceIndex - def self.open_loop(uri, options); end +class Gem::Dependency + def force_ruby_platform(); end +end - def self.open_uri(name, *rest); end +Gem::DependencyResolver = Gem::Resolver - def self.redirectable?(uri1, uri2); end +class Gem::Ext::BuildError +end - def self.scan_open_optional_arguments(*rest); end +class Gem::Ext::BuildError end -class OptionParser - def additional_message(typ, opt); end +class Gem::Ext::Builder + def self.redirector(); end end -class OptionParser::List - def get_candidates(id); end +class Gem::Ext::ExtConfBuilder end -class OptionParser::ParseError - def additional(); end +Gem::Ext::ExtConfBuilder::FileEntry = FileUtils::Entry_ + +class Gem::Ext::ExtConfBuilder + def self.build(extension, directory, dest_path, results, args=T.unsafe(nil), lib_dir=T.unsafe(nil)); end - def additional=(additional); end + def self.get_relative_path(path); end end -class Proc - def <<(arg); end +Gem::Installer::ExtensionBuildError = Gem::Ext::BuildError - def >>(arg); end +class Gem::Installer::FakePackage + def copy_to(path); end - def clone(); end + def extract_files(destination_dir, pattern=T.unsafe(nil)); end + + def initialize(spec); end + + def spec(); end + + def spec=(spec); end end -class Pry - BINDING_METHOD_IMPL = ::T.let(nil, ::T.untyped) - Commands = ::T.let(nil, ::T.untyped) - EMPTY_COMPLETIONS = ::T.let(nil, ::T.untyped) - HAS_SAFE_LEVEL = ::T.let(nil, ::T.untyped) - LOCAL_RC_FILE = ::T.let(nil, ::T.untyped) - VERSION = ::T.let(nil, ::T.untyped) +class Gem::Installer::FakePackage end -class Pry::BasicObject - ENV = ::T.let(nil, ::T.untyped) +class Gem::Licenses + IDENTIFIERS = ::T.let(nil, ::T.untyped) end -Pry::BasicObject::Dir = Dir +class Gem::PathSupport + def home(); end -Pry::BasicObject::File = File + def initialize(env); end -Pry::BasicObject::Kernel = Kernel + def path(); end -Pry::BasicObject::LoadError = LoadError + def spec_cache_dir(); end +end -Pry::BasicObject::Pry = Pry +class Gem::Platform + def self.match_gem?(platform, gem_name); end -class Pry::CInternals::ETagParser::CFile - ALTERNATIVE_SEPARATOR = ::T.let(nil, ::T.untyped) - SYMBOL_SEPARATOR = ::T.let(nil, ::T.untyped) + def self.match_spec?(spec); end end -class Pry::Code - extend ::MethodSource::CodeHelpers +class Gem::Request + extend ::Gem::UserInteraction + extend ::Gem::DefaultUserInteraction + extend ::Gem::Text end -class Pry::CodeFile - DEFAULT_EXT = ::T.let(nil, ::T.untyped) - EXTENSIONS = ::T.let(nil, ::T.untyped) - FILES = ::T.let(nil, ::T.untyped) - INITIAL_PWD = ::T.let(nil, ::T.untyped) +Gem::RequestSet::GemDepedencyAPI = Gem::RequestSet::GemDependencyAPI + +class Gem::Requirement + include ::Gem::Requirement::CorrectHashForLambdaOperator end -class Pry::Command - VOID_VALUE = ::T.let(nil, ::T.untyped) +module Gem::Requirement::CorrectHashForLambdaOperator + def hash(); end end -class Pry::Command::Ls - DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) +module Gem::Requirement::CorrectHashForLambdaOperator end -class Pry::Command::Ls::Constants - DEPRECATED_CONSTANTS = ::T.let(nil, ::T.untyped) +class Gem::Resolver::ActivationRequest + def others_possible?(); end end -class Pry::Command::Ls::Globals - BUILTIN_GLOBALS = ::T.let(nil, ::T.untyped) - PSEUDO_GLOBALS = ::T.let(nil, ::T.untyped) +class Gem::Resolver::CurrentSet end -class Pry::Command::Wtf - RUBY_FRAME_PATTERN = ::T.let(nil, ::T.untyped) +class Gem::Resolver::CurrentSet end -module Pry::Helpers::DocumentationHelpers - YARD_TAGS = ::T.let(nil, ::T.untyped) +Gem::Resolver::DependencyConflict = Gem::Resolver::Conflict + +class Gem::Resolver::LocalSpecification end -module Pry::Helpers::Text - COLORS = ::T.let(nil, ::T.untyped) +class Gem::Resolver::LocalSpecification end -class Pry::Indent - IGNORE_TOKENS = ::T.let(nil, ::T.untyped) - MIDWAY_TOKENS = ::T.let(nil, ::T.untyped) - OPEN_TOKENS = ::T.let(nil, ::T.untyped) - OPTIONAL_DO_TOKENS = ::T.let(nil, ::T.untyped) - SINGLELINE_TOKENS = ::T.let(nil, ::T.untyped) - SPACES = ::T.let(nil, ::T.untyped) - STATEMENT_END_TOKENS = ::T.let(nil, ::T.untyped) +class Gem::Resolver::Molinillo::DependencyGraph::Log + def add_edge_no_circular(graph, origin, destination, requirement); end + + def add_vertex(graph, name, payload, root); end + + def delete_edge(graph, origin_name, destination_name, requirement); end + + def detach_vertex_named(graph, name); end + + def each(&blk); end + + def pop!(graph); end + + def reverse_each(); end + + def rewind_to(graph, tag); end + + def set_payload(graph, name, payload); end + + def tag(graph, tag); end end -class Pry::InputCompleter - ARRAY_REGEXP = ::T.let(nil, ::T.untyped) - CONSTANT_OR_METHOD_REGEXP = ::T.let(nil, ::T.untyped) - CONSTANT_REGEXP = ::T.let(nil, ::T.untyped) - GLOBALVARIABLE_REGEXP = ::T.let(nil, ::T.untyped) - HEX_REGEXP = ::T.let(nil, ::T.untyped) - NUMERIC_REGEXP = ::T.let(nil, ::T.untyped) - PROC_OR_HASH_REGEXP = ::T.let(nil, ::T.untyped) - REGEX_REGEXP = ::T.let(nil, ::T.untyped) - RESERVED_WORDS = ::T.let(nil, ::T.untyped) - SYMBOL_METHOD_CALL_REGEXP = ::T.let(nil, ::T.untyped) - SYMBOL_REGEXP = ::T.let(nil, ::T.untyped) - TOPLEVEL_LOOKUP_REGEXP = ::T.let(nil, ::T.untyped) - VARIABLE_REGEXP = ::T.let(nil, ::T.untyped) - WORD_ESCAPE_STR = ::T.let(nil, ::T.untyped) +class Gem::Resolver::Molinillo::DependencyGraph::Log + extend ::Enumerable +end + +class Gem::RuntimeRequirementNotMetError + def suggestion(); end + + def suggestion=(suggestion); end +end + +class Gem::RuntimeRequirementNotMetError end -class Pry::Inspector - MAP = ::T.let(nil, ::T.untyped) -end +class Gem::Source + def api_uri(); end +end + +class Gem::SpecFetcher + include ::Gem::UserInteraction + include ::Gem::DefaultUserInteraction + include ::Gem::Text + def available_specs(type); end + + def detect(type=T.unsafe(nil)); end + + def initialize(sources=T.unsafe(nil)); end + + def latest_specs(); end + + def prerelease_specs(); end + + def search_for_dependency(dependency, matching_platform=T.unsafe(nil)); end + + def sources(); end + + def spec_for_dependency(dependency, matching_platform=T.unsafe(nil)); end + + def specs(); end + + def suggest_gems_from_name(gem_name, type=T.unsafe(nil)); end + + def tuples_for(source, type, gracefully_ignore=T.unsafe(nil)); end +end + +class Gem::SpecFetcher + def self.fetcher(); end + + def self.fetcher=(fetcher); end +end + +class Gem::Specification + include ::Bundler::MatchPlatform + include ::Bundler::GemHelpers + include ::Gem::Specification::YamlBackfiller + def bundled_gem_in_old_ruby?(); end + + def deleted_gem?(); end + + def rg_required_ruby_version=(req); end + + def rubyforge_project(); end + + def to_ruby(); end + + def warning(statement); end + LATEST_RUBY_WITHOUT_PATCH_VERSIONS = ::T.let(nil, ::T.untyped) +end + +module Gem::Specification::YamlBackfiller + def to_yaml(opts=T.unsafe(nil)); end +end + +module Gem::Specification::YamlBackfiller +end + +class Gem::Specification + extend ::Enumerable + extend ::Gem::Deprecate + def self.add_spec(spec); end + + def self.add_specs(*specs); end + + def self.remove_spec(spec); end +end + +class Gem::StubSpecification + def build_extensions(); end + + def extensions(); end + + def initialize(filename, base_dir, gems_dir, default_gem); end + + def missing_extensions?(); end + + def valid?(); end +end + +class Gem::StubSpecification::StubLine + def extensions(); end + + def full_name(); end + + def initialize(data, extensions); end + + def name(); end + + def platform(); end + + def require_paths(); end + + def version(); end +end + +class Gem::StubSpecification + def self.default_gemspec_stub(filename, base_dir, gems_dir); end + + def self.gemspec_stub(filename, base_dir, gems_dir); end +end + +Gem::UnsatisfiableDepedencyError = Gem::UnsatisfiableDependencyError + +module Gem::Util + NULL_DEVICE = ::T.let(nil, ::T.untyped) +end + +Gem::Version::Requirement = Gem::Requirement + +module Gem + def self._deprecated_datadir(gem_name); end + + def self.default_gems_use_full_paths?(); end + + def self.remove_unresolved_default_spec(spec); end +end + +class Hash + include ::JSON::Ext::Generator::GeneratorMethods::Hash +end + +class Hash + def self.ruby2_keywords_hash(hash); end + + def self.ruby2_keywords_hash?(hash); end +end + +class IO + def nonblock(*arg); end + + def nonblock=(nonblock); end + + def nonblock?(); end + + def nread(); end + + def pathconf(arg); end + + def ready?(); end + + def wait(*arg); end + + def wait_readable(*arg); end + + def wait_writable(*arg); end +end + +IO::EWOULDBLOCKWaitReadable = IO::EAGAINWaitReadable + +IO::EWOULDBLOCKWaitWritable = IO::EAGAINWaitWritable + +class IPAddr + def ==(other); end + + def initialize(addr=T.unsafe(nil), family=T.unsafe(nil)); end +end + +class Integer + include ::JSON::Ext::Generator::GeneratorMethods::Integer + def to_bn(); end + GMP_VERSION = ::T.let(nil, ::T.untyped) +end + +class JSON::Ext::Generator::State + def self.from_state(arg); end +end + +class JSON::Ext::Parser + def initialize(*arg); end +end + +JSON::Parser = JSON::Ext::Parser + +JSON::State = JSON::Ext::Generator::State + +JSON::UnparserError = JSON::GeneratorError + +module JWT::Algos + ALGOS = ::T.let(nil, ::T.untyped) +end + +module JWT::Algos::Ecdsa + NAMED_CURVES = ::T.let(nil, ::T.untyped) + SUPPORTED = ::T.let(nil, ::T.untyped) +end + +module JWT::Algos::Eddsa + SUPPORTED = ::T.let(nil, ::T.untyped) +end + +module JWT::Algos::Hmac + SUPPORTED = ::T.let(nil, ::T.untyped) +end + +module JWT::Algos::None + SUPPORTED = ::T.let(nil, ::T.untyped) +end + +module JWT::Algos::Ps + SUPPORTED = ::T.let(nil, ::T.untyped) +end + +module JWT::Algos::Rsa + SUPPORTED = ::T.let(nil, ::T.untyped) +end + +module JWT::Algos::Unsupported + SUPPORTED = ::T.let(nil, ::T.untyped) +end + +class JWT::ClaimsValidator + NUMERIC_CLAIMS = ::T.let(nil, ::T.untyped) +end + +module JWT::DefaultOptions + DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) +end + +class JWT::Encode + ALG_KEY = ::T.let(nil, ::T.untyped) + ALG_NONE = ::T.let(nil, ::T.untyped) +end + +class JWT::JWK::EC + BINARY = ::T.let(nil, ::T.untyped) + KTY = ::T.let(nil, ::T.untyped) + KTYS = ::T.let(nil, ::T.untyped) +end + +class JWT::JWK::HMAC + KTY = ::T.let(nil, ::T.untyped) + KTYS = ::T.let(nil, ::T.untyped) +end + +class JWT::JWK::RSA + BINARY = ::T.let(nil, ::T.untyped) + KTY = ::T.let(nil, ::T.untyped) + KTYS = ::T.let(nil, ::T.untyped) + RSA_KEY_ELEMENTS = ::T.let(nil, ::T.untyped) +end + +class JWT::Verify + DEFAULTS = ::T.let(nil, ::T.untyped) +end + +module Kernel + def pretty_inspect(); end +end + +module Kernel + def self.at_exit(); end +end + +class Logger + SEV_LABEL = ::T.let(nil, ::T.untyped) +end + +class Logger::Formatter + Format = ::T.let(nil, ::T.untyped) +end + +class Logger::LogDevice + include ::MonitorMixin + def ansicolor=(ansicolor); end + + def ansicolor?(); end +end + +module Logger::Period + SiD = ::T.let(nil, ::T.untyped) +end + +module MethodSource + VERSION = ::T.let(nil, ::T.untyped) +end + +module MethodSource::CodeHelpers::IncompleteExpression + GENERIC_REGEXPS = ::T.let(nil, ::T.untyped) + RBX_ONLY_REGEXPS = ::T.let(nil, ::T.untyped) +end + +class Monitor + def enter(); end + + def exit(); end + + def try_enter(); end +end + +module MonitorMixin + def initialize(*args); end + EXCEPTION_IMMEDIATE = ::T.let(nil, ::T.untyped) + EXCEPTION_NEVER = ::T.let(nil, ::T.untyped) +end + +class MonitorMixin::ConditionVariable + def initialize(monitor); end +end + +module Multipart +end + +module Multipart::Post +end + +class Multipart::Post::CompositeReadIO + def initialize(*ios); end + + def read(length=T.unsafe(nil), outbuf=T.unsafe(nil)); end + + def rewind(); end +end + +class Multipart::Post::CompositeReadIO +end + +module Multipart::Post::Multipartable + def boundary(); end + + def initialize(path, params, headers=T.unsafe(nil), boundary=T.unsafe(nil)); end +end + +module Multipart::Post::Multipartable + def self.secure_boundary(); end +end + +module Multipart::Post::Parts +end + +class Multipart::Post::Parts::EpiloguePart + include ::Multipart::Post::Parts::Part + def initialize(boundary); end +end + +class Multipart::Post::Parts::EpiloguePart +end + +class Multipart::Post::Parts::FilePart + include ::Multipart::Post::Parts::Part + def build_head(boundary, name, filename, type, content_len, opts=T.unsafe(nil)); end + + def initialize(boundary, name, io, headers=T.unsafe(nil)); end +end + +class Multipart::Post::Parts::FilePart +end + +class Multipart::Post::Parts::ParamPart + include ::Multipart::Post::Parts::Part + def build_part(boundary, name, value, headers=T.unsafe(nil)); end + + def initialize(boundary, name, value, headers=T.unsafe(nil)); end +end + +class Multipart::Post::Parts::ParamPart +end + +module Multipart::Post::Parts::Part + def length(); end + + def to_io(); end +end + +module Multipart::Post::Parts::Part + def self.file?(value); end + + def self.new(boundary, name, value, headers=T.unsafe(nil)); end +end + +module Multipart::Post::Parts +end + +class Multipart::Post::UploadIO + def content_type(); end + + def initialize(filename_or_io, content_type, filename=T.unsafe(nil), opts=T.unsafe(nil)); end + + def io(); end + + def local_path(); end + + def method_missing(*args); end + + def opts(); end + + def original_filename(); end + + def respond_to?(meth, include_all=T.unsafe(nil)); end +end + +class Multipart::Post::UploadIO + def self.convert!(io, content_type, original_filename, local_path); end +end + +module Multipart::Post +end + +module Multipart +end + +Multipartable = Multipart::Post::Multipartable + +class Net::HTTP + def max_retries(); end + + def max_retries=(retries); end + + def max_version(); end + + def max_version=(max_version); end + + def min_version(); end + + def min_version=(min_version); end + ENVIRONMENT_VARIABLE_IS_MULTIUSER_SAFE = ::T.let(nil, ::T.untyped) +end + +class Net::HTTP::Persistent + DEFAULT_POOL_SIZE = ::T.let(nil, ::T.untyped) + EPOCH = ::T.let(nil, ::T.untyped) + HAVE_OPENSSL = ::T.let(nil, ::T.untyped) + VERSION = ::T.let(nil, ::T.untyped) +end + +Net::HTTP::ProxyMod = Net::HTTP::ProxyDelta + +class Net::HTTPAlreadyReported + HAS_BODY = ::T.let(nil, ::T.untyped) +end + +class Net::HTTPAlreadyReported +end + +Net::HTTPClientError::EXCEPTION_TYPE = Net::HTTPServerException + +Net::HTTPClientErrorCode = Net::HTTPClientError + +Net::HTTPFatalErrorCode = Net::HTTPClientError + +Net::HTTPInformationCode = Net::HTTPInformation + +class Net::HTTPLoopDetected + HAS_BODY = ::T.let(nil, ::T.untyped) +end + +class Net::HTTPLoopDetected +end + +class Net::HTTPMisdirectedRequest + HAS_BODY = ::T.let(nil, ::T.untyped) +end + +class Net::HTTPMisdirectedRequest +end + +Net::HTTPMovedTemporarily = Net::HTTPFound + +Net::HTTPMultipleChoice = Net::HTTPMultipleChoices + +class Net::HTTPNotExtended + HAS_BODY = ::T.let(nil, ::T.untyped) +end + +class Net::HTTPNotExtended +end + +class Net::HTTPProcessing + HAS_BODY = ::T.let(nil, ::T.untyped) +end + +class Net::HTTPProcessing +end + +Net::HTTPRedirection::EXCEPTION_TYPE = Net::HTTPRetriableError + +Net::HTTPRedirectionCode = Net::HTTPRedirection + +Net::HTTPRequestURITooLarge = Net::HTTPRequestURITooLong + +Net::HTTPResponceReceiver = Net::HTTPResponse + +Net::HTTPRetriableCode = Net::HTTPRedirection + +Net::HTTPServerError::EXCEPTION_TYPE = Net::HTTPFatalError + +Net::HTTPServerErrorCode = Net::HTTPServerError + +Net::HTTPSession = Net::HTTP + +Net::HTTPSuccess::EXCEPTION_TYPE = Net::HTTPError + +Net::HTTPSuccessCode = Net::HTTPSuccess + +Net::HTTPUnknownResponse::EXCEPTION_TYPE = Net::HTTPError + +class Net::HTTPVariantAlsoNegotiates + HAS_BODY = ::T.let(nil, ::T.untyped) +end + +class Net::HTTPVariantAlsoNegotiates +end + +Net::NetPrivate::HTTPRequest = Net::HTTPRequest + +Net::NetPrivate::Socket = Net::InternetMessageIO + +Net::ProtocRetryError = Net::ProtoRetriableError + +class NilClass + include ::JSON::Ext::Generator::GeneratorMethods::NilClass +end + +class Object + include ::JSON::Ext::Generator::GeneratorMethods::Object + include ::PP::ObjectMixin + ARGF = ::T.let(nil, ::T.untyped) + ARGV = ::T.let(nil, ::T.untyped) + CROSS_COMPILING = ::T.let(nil, ::T.untyped) + ENV = ::T.let(nil, ::T.untyped) + RUBY18 = ::T.let(nil, ::T.untyped) + RUBY19 = ::T.let(nil, ::T.untyped) + RUBY_COPYRIGHT = ::T.let(nil, ::T.untyped) + RUBY_DESCRIPTION = ::T.let(nil, ::T.untyped) + RUBY_ENGINE = ::T.let(nil, ::T.untyped) + RUBY_ENGINE_VERSION = ::T.let(nil, ::T.untyped) + RUBY_PATCHLEVEL = ::T.let(nil, ::T.untyped) + RUBY_PLATFORM = ::T.let(nil, ::T.untyped) + RUBY_RELEASE_DATE = ::T.let(nil, ::T.untyped) + RUBY_REVISION = ::T.let(nil, ::T.untyped) + RUBY_VERSION = ::T.let(nil, ::T.untyped) + STDERR = ::T.let(nil, ::T.untyped) + STDIN = ::T.let(nil, ::T.untyped) + STDOUT = ::T.let(nil, ::T.untyped) + TOPLEVEL_BINDING = ::T.let(nil, ::T.untyped) +end + +class OpenSSL::ASN1::ASN1Data + def indefinite_length(); end + + def indefinite_length=(indefinite_length); end +end + +class OpenSSL::BN + def +@(); end + + def -@(); end + + def /(arg); end + + def negative?(); end +end + +module OpenSSL::KDF +end + +class OpenSSL::KDF::KDFError +end + +class OpenSSL::KDF::KDFError +end + +module OpenSSL::KDF + def self.hkdf(*arg); end + + def self.pbkdf2_hmac(*arg); end + + def self.scrypt(*arg); end +end + +class OpenSSL::OCSP::Request + def signed?(); end +end + +OpenSSL::PKCS7::Signer = OpenSSL::PKCS7::SignerInfo + +class OpenSSL::PKey::EC + EXPLICIT_CURVE = ::T.let(nil, ::T.untyped) +end + +class OpenSSL::PKey::EC::Point + def to_octet_string(arg); end +end + +module OpenSSL::SSL + OP_ALLOW_NO_DHE_KEX = ::T.let(nil, ::T.untyped) + OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION = ::T.let(nil, ::T.untyped) + OP_CRYPTOPRO_TLSEXT_BUG = ::T.let(nil, ::T.untyped) + OP_LEGACY_SERVER_CONNECT = ::T.let(nil, ::T.untyped) + OP_NO_ENCRYPT_THEN_MAC = ::T.let(nil, ::T.untyped) + OP_NO_RENEGOTIATION = ::T.let(nil, ::T.untyped) + OP_NO_TLSv1_3 = ::T.let(nil, ::T.untyped) + OP_SAFARI_ECDHE_ECDSA_BUG = ::T.let(nil, ::T.untyped) + OP_TLSEXT_PADDING = ::T.let(nil, ::T.untyped) + SSL2_VERSION = ::T.let(nil, ::T.untyped) + SSL3_VERSION = ::T.let(nil, ::T.untyped) + TLS1_1_VERSION = ::T.let(nil, ::T.untyped) + TLS1_2_VERSION = ::T.let(nil, ::T.untyped) + TLS1_3_VERSION = ::T.let(nil, ::T.untyped) + TLS1_VERSION = ::T.let(nil, ::T.untyped) +end + +class OpenSSL::SSL::SSLContext + def alpn_protocols(); end + + def alpn_protocols=(alpn_protocols); end + + def alpn_select_cb(); end + + def alpn_select_cb=(alpn_select_cb); end + + def enable_fallback_scsv(); end + + def max_version=(version); end + + def min_version=(version); end + DEFAULT_TMP_DH_CALLBACK = ::T.let(nil, ::T.untyped) +end + +class OpenSSL::SSL::SSLSocket + def alpn_protocol(); end + + def tmp_key(); end +end + +module OpenSSL::X509 + V_FLAG_NO_CHECK_TIME = ::T.let(nil, ::T.untyped) + V_FLAG_TRUSTED_FIRST = ::T.let(nil, ::T.untyped) +end + +class OpenSSL::X509::Attribute + def ==(other); end +end + +class OpenSSL::X509::CRL + def ==(other); end +end + +class OpenSSL::X509::Extension + def ==(other); end +end + +class OpenSSL::X509::Name + def to_utf8(); end +end + +class OpenSSL::X509::Request + def ==(other); end +end + +class OpenSSL::X509::Revoked + def ==(other); end + + def to_der(); end +end + +module OpenSSL + def self.fips_mode(); end +end + +class OpenURI::Buffer + def <<(str); end + + def io(); end + + def size(); end + StringMax = ::T.let(nil, ::T.untyped) +end + +class OpenURI::Buffer +end + +class OpenURI::HTTPError + def initialize(message, io); end +end + +class OpenURI::HTTPRedirect + def initialize(message, io, uri); end +end + +module OpenURI::Meta + def content_type_parse(); end + + def meta_add_field(name, value); end + + def meta_add_field2(name, values); end + + def meta_setup_encoding(); end + RE_LWS = ::T.let(nil, ::T.untyped) + RE_PARAMETERS = ::T.let(nil, ::T.untyped) + RE_QUOTED_STRING = ::T.let(nil, ::T.untyped) + RE_TOKEN = ::T.let(nil, ::T.untyped) +end + +module OpenURI::Meta + def self.init(obj, src=T.unsafe(nil)); end +end + +module OpenURI + def self.check_options(options); end + + def self.open_http(buf, target, proxy, options); end + + def self.open_loop(uri, options); end + + def self.open_uri(name, *rest); end + + def self.redirectable?(uri1, uri2); end + + def self.scan_open_optional_arguments(*rest); end +end + +class Proc + def clone(); end +end + +class Pry + BINDING_METHOD_IMPL = ::T.let(nil, ::T.untyped) + Commands = ::T.let(nil, ::T.untyped) + EMPTY_COMPLETIONS = ::T.let(nil, ::T.untyped) + HAS_SAFE_LEVEL = ::T.let(nil, ::T.untyped) + LOCAL_RC_FILE = ::T.let(nil, ::T.untyped) + VERSION = ::T.let(nil, ::T.untyped) +end + +class Pry::BasicObject + ENV = ::T.let(nil, ::T.untyped) +end + +Pry::BasicObject::Dir = Dir + +Pry::BasicObject::File = File + +Pry::BasicObject::Kernel = Kernel + +Pry::BasicObject::LoadError = LoadError + +Pry::BasicObject::Pry = Pry + +class Pry::CInternals::ETagParser::CFile + ALTERNATIVE_SEPARATOR = ::T.let(nil, ::T.untyped) + SYMBOL_SEPARATOR = ::T.let(nil, ::T.untyped) +end + +class Pry::Code + extend ::MethodSource::CodeHelpers +end + +class Pry::CodeFile + DEFAULT_EXT = ::T.let(nil, ::T.untyped) + EXTENSIONS = ::T.let(nil, ::T.untyped) + FILES = ::T.let(nil, ::T.untyped) + INITIAL_PWD = ::T.let(nil, ::T.untyped) +end + +class Pry::Command + VOID_VALUE = ::T.let(nil, ::T.untyped) +end + +class Pry::Command::Ls + DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) +end + +class Pry::Command::Ls::Constants + DEPRECATED_CONSTANTS = ::T.let(nil, ::T.untyped) +end + +class Pry::Command::Ls::Globals + BUILTIN_GLOBALS = ::T.let(nil, ::T.untyped) + PSEUDO_GLOBALS = ::T.let(nil, ::T.untyped) +end + +class Pry::Command::Wtf + RUBY_FRAME_PATTERN = ::T.let(nil, ::T.untyped) +end + +module Pry::Helpers::DocumentationHelpers + YARD_TAGS = ::T.let(nil, ::T.untyped) +end + +module Pry::Helpers::Text + COLORS = ::T.let(nil, ::T.untyped) +end + +class Pry::Indent + IGNORE_TOKENS = ::T.let(nil, ::T.untyped) + MIDWAY_TOKENS = ::T.let(nil, ::T.untyped) + OPEN_TOKENS = ::T.let(nil, ::T.untyped) + OPTIONAL_DO_TOKENS = ::T.let(nil, ::T.untyped) + SINGLELINE_TOKENS = ::T.let(nil, ::T.untyped) + SPACES = ::T.let(nil, ::T.untyped) + STATEMENT_END_TOKENS = ::T.let(nil, ::T.untyped) +end + +class Pry::InputCompleter + ARRAY_REGEXP = ::T.let(nil, ::T.untyped) + CONSTANT_OR_METHOD_REGEXP = ::T.let(nil, ::T.untyped) + CONSTANT_REGEXP = ::T.let(nil, ::T.untyped) + GLOBALVARIABLE_REGEXP = ::T.let(nil, ::T.untyped) + HEX_REGEXP = ::T.let(nil, ::T.untyped) + NUMERIC_REGEXP = ::T.let(nil, ::T.untyped) + PROC_OR_HASH_REGEXP = ::T.let(nil, ::T.untyped) + REGEX_REGEXP = ::T.let(nil, ::T.untyped) + RESERVED_WORDS = ::T.let(nil, ::T.untyped) + SYMBOL_METHOD_CALL_REGEXP = ::T.let(nil, ::T.untyped) + SYMBOL_REGEXP = ::T.let(nil, ::T.untyped) + TOPLEVEL_LOOKUP_REGEXP = ::T.let(nil, ::T.untyped) + VARIABLE_REGEXP = ::T.let(nil, ::T.untyped) + WORD_ESCAPE_STR = ::T.let(nil, ::T.untyped) +end + +class Pry::Inspector + MAP = ::T.let(nil, ::T.untyped) +end + +module Pry::MethodInfo + METHOD_INSPECT_PATTERN = ::T.let(nil, ::T.untyped) +end + +class Pry::ObjectPath + SPECIAL_TERMS = ::T.let(nil, ::T.untyped) +end + +class Pry::Output + DEFAULT_SIZE = ::T.let(nil, ::T.untyped) +end + +class Pry::Slop + DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) + VERSION = ::T.let(nil, ::T.untyped) +end + +class Pry::Slop::Option + DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) +end + +module PryDoc + VERSION = ::T.let(nil, ::T.untyped) +end + +module RSpec + MODULES_TO_AUTOLOAD = ::T.let(nil, ::T.untyped) +end + +class RSpec::CallerFilter + ADDITIONAL_TOP_LEVEL_FILES = ::T.let(nil, ::T.untyped) + IGNORE_REGEX = ::T.let(nil, ::T.untyped) + LIB_REGEX = ::T.let(nil, ::T.untyped) + RSPEC_LIBS = ::T.let(nil, ::T.untyped) +end + +class RSpec::Core::Bisect::Channel + MARSHAL_DUMP_ENCODING = ::T.let(nil, ::T.untyped) +end + +class RSpec::Core::Configuration + DEFAULT_FORMATTER = ::T.let(nil, ::T.untyped) + FAILED_STATUS = ::T.let(nil, ::T.untyped) + MOCKING_ADAPTERS = ::T.let(nil, ::T.untyped) + PASSED_STATUS = ::T.let(nil, ::T.untyped) + PENDING_STATUS = ::T.let(nil, ::T.untyped) + RAISE_ERROR_WARNING_NOTIFIER = ::T.let(nil, ::T.untyped) + UNKNOWN_STATUS = ::T.let(nil, ::T.untyped) + VALID_STATUSES = ::T.let(nil, ::T.untyped) +end + +class RSpec::Core::ConfigurationOptions + OPTIONS_ORDER = ::T.let(nil, ::T.untyped) + UNFORCED_OPTIONS = ::T.let(nil, ::T.untyped) + UNPROCESSABLE_OPTIONS = ::T.let(nil, ::T.untyped) +end + +RSpec::Core::Example::AllExceptionsExcludingDangerousOnesOnRubiesThatAllowIt = RSpec::Support::AllExceptionsExceptOnesWeMustNotRescue + +class RSpec::Core::ExampleGroup + INSTANCE_VARIABLE_TO_IGNORE = ::T.let(nil, ::T.untyped) +end + +RSpec::Core::ExclusionRules = RSpec::Core::FilterRules + +class RSpec::Core::FilterRules + PROC_HEX_NUMBER = ::T.let(nil, ::T.untyped) + PROJECT_DIR = ::T.let(nil, ::T.untyped) +end + +module RSpec::Core::Formatters::ConsoleCodes + VT100_CODES = ::T.let(nil, ::T.untyped) + VT100_CODE_VALUES = ::T.let(nil, ::T.untyped) +end + +class RSpec::Core::Formatters::DeprecationFormatter + DEPRECATION_STREAM_NOTICE = ::T.let(nil, ::T.untyped) + RAISE_ERROR_CONFIG_NOTICE = ::T.let(nil, ::T.untyped) + TOO_MANY_WARNINGS_NOTICE = ::T.let(nil, ::T.untyped) +end + +class RSpec::Core::Formatters::DeprecationFormatter::DelayedPrinter + TOO_MANY_USES_LIMIT = ::T.let(nil, ::T.untyped) +end + +class RSpec::Core::Formatters::ExceptionPresenter + PENDING_DETAIL_FORMATTER = ::T.let(nil, ::T.untyped) +end + +module RSpec::Core::Formatters::Helpers + DEFAULT_PRECISION = ::T.let(nil, ::T.untyped) + SUB_SECOND_PRECISION = ::T.let(nil, ::T.untyped) +end + +class RSpec::Core::Formatters::HtmlPrinter + GLOBAL_SCRIPTS = ::T.let(nil, ::T.untyped) + GLOBAL_STYLES = ::T.let(nil, ::T.untyped) + HTML_HEADER = ::T.let(nil, ::T.untyped) + REPORT_HEADER = ::T.let(nil, ::T.untyped) +end + +module RSpec::Core::Formatters::SyntaxHighlighter::CodeRayImplementation + RESET_CODE = ::T.let(nil, ::T.untyped) +end + +RSpec::Core::Formatters::SyntaxHighlighter::WindowsImplementation = RSpec::Core::Formatters::SyntaxHighlighter::NoSyntaxHighlightingImplementation + +class RSpec::Core::Hooks::HookCollections + EMPTY_HOOK_ARRAY = ::T.let(nil, ::T.untyped) + HOOK_TYPES = ::T.let(nil, ::T.untyped) + SCOPES = ::T.let(nil, ::T.untyped) + SCOPE_ALIASES = ::T.let(nil, ::T.untyped) +end + +module RSpec::Core::Metadata + RESERVED_KEYS = ::T.let(nil, ::T.untyped) +end + +class RSpec::Core::Ordering::Random + MAX_32_BIT = ::T.let(nil, ::T.untyped) +end + +class RSpec::Core::Ordering::RecentlyModified + def order(list); end +end + +class RSpec::Core::Ordering::RecentlyModified +end + +module RSpec::Core::Pending + NOT_YET_IMPLEMENTED = ::T.let(nil, ::T.untyped) + NO_REASON_GIVEN = ::T.let(nil, ::T.untyped) +end + +class RSpec::Core::Profiler + NOTIFICATIONS = ::T.let(nil, ::T.untyped) +end + +class RSpec::Core::Reporter + RSPEC_NOTIFICATIONS = ::T.let(nil, ::T.untyped) +end + +module RSpec::Core::ShellEscape + SHELLS_ALLOWING_UNQUOTED_IDS = ::T.let(nil, ::T.untyped) +end + +module RSpec::Core::Version + STRING = ::T.let(nil, ::T.untyped) +end + +class RSpec::Core::World + def rspec_is_quitting(); end + + def rspec_is_quitting=(rspec_is_quitting); end +end + +class RSpec::Expectations::Configuration + FALSE_POSITIVE_BEHAVIOURS = ::T.let(nil, ::T.untyped) +end + +RSpec::Expectations::LegacyMacherAdapter = RSpec::Expectations::LegacyMatcherAdapter + +class RSpec::Expectations::ValueExpectationTarget +end + +class RSpec::Expectations::ValueExpectationTarget +end + +module RSpec::Expectations::Version + STRING = ::T.let(nil, ::T.untyped) +end + +module RSpec::Matchers + BE_PREDICATE_REGEX = ::T.let(nil, ::T.untyped) + DYNAMIC_MATCHER_REGEX = ::T.let(nil, ::T.untyped) + HAS_REGEX = ::T.let(nil, ::T.untyped) +end + +RSpec::Matchers::AliasedNegatedMatcher::DefaultFailureMessages = RSpec::Matchers::BuiltIn::BaseMatcher::DefaultFailureMessages + +class RSpec::Matchers::BuiltIn::BaseMatcher + def supports_value_expectations?(); end + UNDEFINED = ::T.let(nil, ::T.untyped) +end + +class RSpec::Matchers::BuiltIn::BePredicate + REGEX = ::T.let(nil, ::T.untyped) +end + +module RSpec::Matchers::BuiltIn::ChangeDetails::UNDEFINED +end + +module RSpec::Matchers::BuiltIn::ChangeDetails::UNDEFINED +end + +class RSpec::Matchers::BuiltIn::Equal + LITERAL_SINGLETONS = ::T.let(nil, ::T.untyped) +end + +class RSpec::Matchers::BuiltIn::Has + REGEX = ::T.let(nil, ::T.untyped) +end + +class RSpec::Matchers::BuiltIn::RaiseError + def supports_value_expectations?(); end + UndefinedValue = ::T.let(nil, ::T.untyped) +end + +RSpec::Matchers::BuiltIn::SpecificValuesChange::MATCH_ANYTHING = BasicObject + +RSpec::Matchers::BuiltIn::StartAndEndWith = RSpec::Matchers::BuiltIn::StartOrEndWith + +class RSpec::Matchers::BuiltIn::ThrowSymbol + def supports_value_expectations?(); end +end + +module RSpec::Matchers::DSL::DefaultImplementations + def supports_value_expectations?(); end +end + +module RSpec::Matchers::DSL::Macros + RAISE_NOTIFIER = ::T.let(nil, ::T.untyped) +end + +class RSpec::Matchers::ExpectedsForMultipleDiffs + DEFAULT_DIFF_LABEL = ::T.let(nil, ::T.untyped) + DESCRIPTION_MAX_LENGTH = ::T.let(nil, ::T.untyped) +end + +module RSpec::Mocks + DEFAULT_CALLBACK_INVOCATION_STRATEGY = ::T.let(nil, ::T.untyped) + IGNORED_BACKTRACE_LINE = ::T.let(nil, ::T.untyped) +end + +class RSpec::Mocks::AndInvokeImplementation + def call(*args, &block); end + + def initialize(procs_to_invoke); end +end + +class RSpec::Mocks::AndInvokeImplementation +end + +class RSpec::Mocks::AnyInstance::PositiveExpectationChain + ExpectationInvocationOrder = ::T.let(nil, ::T.untyped) +end + +class RSpec::Mocks::AnyInstance::Recorder + include ::T::CompatibilityPatches::RSpecCompatibility::RecorderExtensions +end + +class RSpec::Mocks::AnyInstance::StubChain + EmptyInvocationOrder = ::T.let(nil, ::T.untyped) + InvocationOrder = ::T.let(nil, ::T.untyped) +end + +class RSpec::Mocks::ArgumentListMatcher + MATCH_ALL = ::T.let(nil, ::T.untyped) +end + +class RSpec::Mocks::ArgumentMatchers::AnyArgMatcher + INSTANCE = ::T.let(nil, ::T.untyped) +end + +class RSpec::Mocks::ArgumentMatchers::AnyArgsMatcher + INSTANCE = ::T.let(nil, ::T.untyped) +end + +class RSpec::Mocks::ArgumentMatchers::BooleanMatcher + INSTANCE = ::T.let(nil, ::T.untyped) +end + +class RSpec::Mocks::ArgumentMatchers::NoArgsMatcher + INSTANCE = ::T.let(nil, ::T.untyped) +end + +class RSpec::Mocks::Matchers::HaveReceived + ARGS_CONSTRAINTS = ::T.let(nil, ::T.untyped) + CONSTRAINTS = ::T.let(nil, ::T.untyped) + COUNT_CONSTRAINTS = ::T.let(nil, ::T.untyped) +end + +class RSpec::Mocks::Matchers::Receive + def and_invoke(*args, &block); end +end + +class RSpec::Mocks::Matchers::ReceiveMessageChain + def and_invoke(*args, &block); end +end + +class RSpec::Mocks::MessageExpectation + def and_invoke(first_proc, *procs); end +end + +class RSpec::Mocks::MethodDouble + include ::T::CompatibilityPatches::RSpecCompatibility::MethodDoubleExtensions +end + +class RSpec::Mocks::ObjectReference + MODULE_NAME_METHOD = ::T.let(nil, ::T.untyped) +end + +class RSpec::Mocks::Proxy + DEFAULT_MESSAGE_EXPECTATION_OPTS = ::T.let(nil, ::T.untyped) +end + +module RSpec::Mocks::Version + STRING = ::T.let(nil, ::T.untyped) +end + +RSpec::SharedContext = RSpec::Core::SharedContext + +module RSpec::Support + DEFAULT_FAILURE_NOTIFIER = ::T.let(nil, ::T.untyped) + DEFAULT_WARNING_NOTIFIER = ::T.let(nil, ::T.untyped) + KERNEL_METHOD_METHOD = ::T.let(nil, ::T.untyped) +end + +module RSpec::Support::AllExceptionsExceptOnesWeMustNotRescue + AVOID_RESCUING = ::T.let(nil, ::T.untyped) +end + +class RSpec::Support::Differ + def color?(); end + + def diff(actual, expected); end + + def diff_as_object(actual, expected); end + + def diff_as_string(actual, expected); end + + def initialize(opts=T.unsafe(nil)); end +end + +class RSpec::Support::Differ +end + +class RSpec::Support::EncodedString + REPLACE = ::T.let(nil, ::T.untyped) + US_ASCII = ::T.let(nil, ::T.untyped) + UTF_8 = ::T.let(nil, ::T.untyped) +end + +class RSpec::Support::MethodSignature + INFINITY = ::T.let(nil, ::T.untyped) +end + +class RSpec::Support::Mutex + NEW_MUTEX_METHOD = ::T.let(nil, ::T.untyped) +end + +class RSpec::Support::ObjectFormatter + ELLIPSIS = ::T.let(nil, ::T.untyped) + INSPECTOR_CLASSES = ::T.let(nil, ::T.untyped) +end + +class RSpec::Support::ObjectFormatter::DateTimeInspector + FORMAT = ::T.let(nil, ::T.untyped) +end + +class RSpec::Support::ObjectFormatter::TimeInspector + FORMAT = ::T.let(nil, ::T.untyped) +end + +class RSpec::Support::ObjectFormatter::UninspectableObjectInspector + OBJECT_ID_FORMAT = ::T.let(nil, ::T.untyped) +end + +RSpec::Support::StrictSignatureVerifier = RSpec::Support::MethodSignatureVerifier + +module RSpec::Support::Version + STRING = ::T.let(nil, ::T.untyped) +end + +module RSpec::Version + STRING = ::T.let(nil, ::T.untyped) +end + +module RSpec + def self.current_scope(); end + + def self.current_scope=(scope); end +end + +module Rack + CACHE_CONTROL = ::T.let(nil, ::T.untyped) + CONTENT_LENGTH = ::T.let(nil, ::T.untyped) + CONTENT_TYPE = ::T.let(nil, ::T.untyped) + DELETE = ::T.let(nil, ::T.untyped) + ETAG = ::T.let(nil, ::T.untyped) + EXPIRES = ::T.let(nil, ::T.untyped) + GET = ::T.let(nil, ::T.untyped) + HEAD = ::T.let(nil, ::T.untyped) + HTTPS = ::T.let(nil, ::T.untyped) + HTTP_COOKIE = ::T.let(nil, ::T.untyped) + HTTP_HOST = ::T.let(nil, ::T.untyped) + HTTP_PORT = ::T.let(nil, ::T.untyped) + HTTP_VERSION = ::T.let(nil, ::T.untyped) + LINK = ::T.let(nil, ::T.untyped) + OPTIONS = ::T.let(nil, ::T.untyped) + PATCH = ::T.let(nil, ::T.untyped) + PATH_INFO = ::T.let(nil, ::T.untyped) + POST = ::T.let(nil, ::T.untyped) + PUT = ::T.let(nil, ::T.untyped) + QUERY_STRING = ::T.let(nil, ::T.untyped) + RACK_ERRORS = ::T.let(nil, ::T.untyped) + RACK_HIJACK = ::T.let(nil, ::T.untyped) + RACK_HIJACK_IO = ::T.let(nil, ::T.untyped) + RACK_INPUT = ::T.let(nil, ::T.untyped) + RACK_IS_HIJACK = ::T.let(nil, ::T.untyped) + RACK_LOGGER = ::T.let(nil, ::T.untyped) + RACK_METHODOVERRIDE_ORIGINAL_METHOD = ::T.let(nil, ::T.untyped) + RACK_MULTIPART_BUFFER_SIZE = ::T.let(nil, ::T.untyped) + RACK_MULTIPART_TEMPFILE_FACTORY = ::T.let(nil, ::T.untyped) + RACK_MULTIPROCESS = ::T.let(nil, ::T.untyped) + RACK_MULTITHREAD = ::T.let(nil, ::T.untyped) + RACK_RECURSIVE_INCLUDE = ::T.let(nil, ::T.untyped) + RACK_REQUEST_COOKIE_HASH = ::T.let(nil, ::T.untyped) + RACK_REQUEST_COOKIE_STRING = ::T.let(nil, ::T.untyped) + RACK_REQUEST_FORM_HASH = ::T.let(nil, ::T.untyped) + RACK_REQUEST_FORM_INPUT = ::T.let(nil, ::T.untyped) + RACK_REQUEST_FORM_VARS = ::T.let(nil, ::T.untyped) + RACK_REQUEST_QUERY_HASH = ::T.let(nil, ::T.untyped) + RACK_REQUEST_QUERY_STRING = ::T.let(nil, ::T.untyped) + RACK_RUNONCE = ::T.let(nil, ::T.untyped) + RACK_SESSION = ::T.let(nil, ::T.untyped) + RACK_SESSION_OPTIONS = ::T.let(nil, ::T.untyped) + RACK_SESSION_UNPACKED_COOKIE_DATA = ::T.let(nil, ::T.untyped) + RACK_SHOWSTATUS_DETAIL = ::T.let(nil, ::T.untyped) + RACK_TEMPFILES = ::T.let(nil, ::T.untyped) + RACK_URL_SCHEME = ::T.let(nil, ::T.untyped) + RACK_VERSION = ::T.let(nil, ::T.untyped) + RELEASE = ::T.let(nil, ::T.untyped) + REQUEST_METHOD = ::T.let(nil, ::T.untyped) + REQUEST_PATH = ::T.let(nil, ::T.untyped) + SCRIPT_NAME = ::T.let(nil, ::T.untyped) + SERVER_NAME = ::T.let(nil, ::T.untyped) + SERVER_PORT = ::T.let(nil, ::T.untyped) + SERVER_PROTOCOL = ::T.let(nil, ::T.untyped) + SET_COOKIE = ::T.let(nil, ::T.untyped) + TRACE = ::T.let(nil, ::T.untyped) + TRANSFER_ENCODING = ::T.let(nil, ::T.untyped) + UNLINK = ::T.let(nil, ::T.untyped) + VERSION = ::T.let(nil, ::T.untyped) +end + +module Rack::Auth +end + +class Rack::Auth::AbstractHandler + def initialize(app, realm=T.unsafe(nil), &authenticator); end + + def realm(); end + + def realm=(realm); end +end + +class Rack::Auth::AbstractHandler +end + +class Rack::Auth::AbstractRequest + def initialize(env); end + + def params(); end + + def parts(); end + + def provided?(); end + + def request(); end + + def scheme(); end + + def valid?(); end + AUTHORIZATION_KEYS = ::T.let(nil, ::T.untyped) +end + +class Rack::Auth::AbstractRequest +end + +class Rack::Auth::Basic + def call(env); end +end + +class Rack::Auth::Basic::Request + def basic?(); end + + def credentials(); end + + def username(); end +end + +class Rack::Auth::Basic::Request +end + +class Rack::Auth::Basic +end + +module Rack::Auth::Digest +end + +class Rack::Auth::Digest::MD5 + def call(env); end + + def initialize(app, realm=T.unsafe(nil), opaque=T.unsafe(nil), &authenticator); end + + def opaque(); end + + def opaque=(opaque); end + + def passwords_hashed=(passwords_hashed); end + + def passwords_hashed?(); end + QOP = ::T.let(nil, ::T.untyped) +end + +class Rack::Auth::Digest::MD5 +end + +class Rack::Auth::Digest::Nonce + def digest(); end + + def fresh?(); end + + def initialize(timestamp=T.unsafe(nil), given_digest=T.unsafe(nil)); end + + def stale?(); end + + def valid?(); end +end + +class Rack::Auth::Digest::Nonce + def self.parse(string); end + + def self.private_key(); end + + def self.private_key=(private_key); end + + def self.time_limit(); end + + def self.time_limit=(time_limit); end +end + +class Rack::Auth::Digest::Params + def [](k); end + + def []=(k, v); end + + def initialize(); end + + def quote(str); end + UNQUOTED = ::T.let(nil, ::T.untyped) +end + +class Rack::Auth::Digest::Params + def self.dequote(str); end + + def self.parse(str); end + + def self.split_header_value(str); end +end + +class Rack::Auth::Digest::Request + def correct_uri?(); end + + def digest?(); end + + def method(); end + + def method_missing(sym, *args); end + + def nonce(); end + + def respond_to?(sym, *arg); end +end + +class Rack::Auth::Digest::Request +end + +module Rack::Auth::Digest +end + +module Rack::Auth +end + +class Rack::BodyProxy + def close(); end + + def closed?(); end + + def initialize(body, &block); end + + def method_missing(method_name, *args, &block); end +end + +class Rack::BodyProxy +end + +class Rack::Builder + def call(env); end + + def freeze_app(); end + + def initialize(default_app=T.unsafe(nil), &block); end + + def map(path, &block); end + + def run(app); end + + def to_app(); end + + def use(middleware, *args, &block); end + + def warmup(prc=T.unsafe(nil), &block); end + UTF_8_BOM = ::T.let(nil, ::T.untyped) +end + +class Rack::Builder + def self.app(default_app=T.unsafe(nil), &block); end + + def self.load_file(path, opts=T.unsafe(nil)); end + + def self.new_from_string(builder_script, file=T.unsafe(nil)); end + + def self.parse_file(config, opts=T.unsafe(nil)); end +end + +class Rack::Cascade + def <<(app); end + + def add(app); end + + def apps(); end + + def call(env); end + + def include?(app); end + + def initialize(apps, cascade_for=T.unsafe(nil)); end + NotFound = ::T.let(nil, ::T.untyped) +end + +class Rack::Cascade +end + +class Rack::Chunked + include ::Rack::Utils + def call(env); end + + def chunkable_version?(ver); end + + def initialize(app); end +end + +class Rack::Chunked::Body + def close(); end + + def each(&block); end + + def initialize(body); end + TAIL = ::T.let(nil, ::T.untyped) + TERM = ::T.let(nil, ::T.untyped) +end + +class Rack::Chunked::Body +end + +class Rack::Chunked::TrailerBody +end + +class Rack::Chunked::TrailerBody +end + +class Rack::Chunked +end + +class Rack::CommonLogger + def call(env); end + + def initialize(app, logger=T.unsafe(nil)); end + FORMAT = ::T.let(nil, ::T.untyped) +end + +class Rack::CommonLogger +end + +class Rack::ConditionalGet + def call(env); end + + def initialize(app); end +end + +class Rack::ConditionalGet +end + +class Rack::Config + def call(env); end + + def initialize(app, &block); end +end + +class Rack::Config +end + +class Rack::ContentLength + include ::Rack::Utils + def call(env); end + + def initialize(app); end +end + +class Rack::ContentLength +end + +class Rack::ContentType + include ::Rack::Utils + def call(env); end + + def initialize(app, content_type=T.unsafe(nil)); end +end + +class Rack::ContentType +end + +class Rack::Deflater + def call(env); end + + def initialize(app, options=T.unsafe(nil)); end +end + +class Rack::Deflater::GzipStream + def close(); end + + def each(&block); end + + def initialize(body, mtime, sync); end + + def write(data); end +end + +class Rack::Deflater::GzipStream +end + +class Rack::Deflater +end + +class Rack::Directory + def call(env); end + + def check_bad_request(path_info); end + + def check_forbidden(path_info); end + + def entity_not_found(path_info); end + + def filesize_format(int); end + + def get(env); end + + def initialize(root, app=T.unsafe(nil)); end + + def list_directory(path_info, path, script_name); end + + def list_path(env, path, path_info, script_name); end + + def root(); end + + def stat(path); end + DIR_FILE = ::T.let(nil, ::T.untyped) + DIR_PAGE_FOOTER = ::T.let(nil, ::T.untyped) + DIR_PAGE_HEADER = ::T.let(nil, ::T.untyped) + FILESIZE_FORMAT = ::T.let(nil, ::T.untyped) +end + +class Rack::Directory::DirectoryBody +end + +class Rack::Directory::DirectoryBody +end + +class Rack::Directory +end + +class Rack::ETag + def call(env); end + + def initialize(app, no_cache_control=T.unsafe(nil), cache_control=T.unsafe(nil)); end + DEFAULT_CACHE_CONTROL = ::T.let(nil, ::T.untyped) + ETAG_STRING = ::T.let(nil, ::T.untyped) +end + +class Rack::ETag +end + +class Rack::Events + def call(env); end + + def initialize(app, handlers); end +end + +module Rack::Events::Abstract + def on_commit(req, res); end + + def on_error(req, res, e); end + + def on_finish(req, res); end + + def on_send(req, res); end + + def on_start(req, res); end +end + +module Rack::Events::Abstract +end + +class Rack::Events::BufferedResponse + def body(); end + + def initialize(status, headers, body); end + + def to_a(); end +end + +class Rack::Events::BufferedResponse +end + +class Rack::Events::EventedBodyProxy + def each(&blk); end + + def initialize(body, request, response, handlers, &block); end + + def request(); end + + def response(); end +end + +class Rack::Events::EventedBodyProxy +end + +class Rack::Events +end + +Rack::File = Rack::Files + +class Rack::Files + def call(env); end + + def get(env); end + + def initialize(root, headers=T.unsafe(nil), default_mime=T.unsafe(nil)); end + + def root(); end + + def serving(request, path); end + ALLOWED_VERBS = ::T.let(nil, ::T.untyped) + ALLOW_HEADER = ::T.let(nil, ::T.untyped) + MULTIPART_BOUNDARY = ::T.let(nil, ::T.untyped) +end + +class Rack::Files::BaseIterator + def bytesize(); end + + def close(); end + + def each(&blk); end + + def initialize(path, ranges, options); end + + def options(); end + + def path(); end + + def ranges(); end +end + +class Rack::Files::BaseIterator +end + +class Rack::Files::Iterator + def to_path(); end +end + +class Rack::Files::Iterator +end + +class Rack::Files + def self.method_added(name); end +end + +class Rack::ForwardRequest + def env(); end + + def initialize(url, env=T.unsafe(nil)); end + + def url(); end +end + +class Rack::ForwardRequest +end + +module Rack::Handler +end + +class Rack::Handler::CGI +end + +class Rack::Handler::CGI + def self.run(app, **options); end + + def self.send_body(body); end + + def self.send_headers(status, headers); end + + def self.serve(app); end +end + +class Rack::Handler::WEBrick + def initialize(server, app); end +end + +class Rack::Handler::WEBrick + def self.run(app, **options); end + + def self.shutdown(); end + + def self.valid_options(); end +end + +module Rack::Handler + def self.default(); end + + def self.get(server); end + + def self.pick(server_names); end + + def self.register(server, klass); end + + def self.try_require(prefix, const_name); end +end + +class Rack::Head + def call(env); end + + def initialize(app); end +end + +class Rack::Head +end + +class Rack::Lint + include ::Rack::Lint::Assertion + def _call(env); end + + def call(env=T.unsafe(nil)); end + + def check_content_length(status, headers); end + + def check_content_type(status, headers); end + + def check_env(env); end + + def check_error(error); end + + def check_headers(header); end + + def check_hijack(env); end + + def check_hijack_response(headers, env); end + + def check_input(input); end + + def check_status(status); end + + def close(); end + + def each(&blk); end + + def initialize(app); end + + def verify_content_length(bytes); end +end + +module Rack::Lint::Assertion + def assert(message); end +end + +module Rack::Lint::Assertion +end + +class Rack::Lint::ErrorWrapper + include ::Rack::Lint::Assertion + def close(*args); end + + def flush(); end + + def initialize(error); end + + def puts(str); end + + def write(str); end +end + +class Rack::Lint::ErrorWrapper +end + +class Rack::Lint::HijackWrapper + include ::Rack::Lint::Assertion + def close(*args, &block); end + + def close_read(*args, &block); end + + def close_write(*args, &block); end + + def closed?(*args, &block); end + + def flush(*args, &block); end + + def initialize(io); end + + def read(*args, &block); end + + def read_nonblock(*args, &block); end + + def write(*args, &block); end + + def write_nonblock(*args, &block); end + REQUIRED_METHODS = ::T.let(nil, ::T.untyped) +end + +class Rack::Lint::HijackWrapper + extend ::Forwardable +end + +class Rack::Lint::InputWrapper + include ::Rack::Lint::Assertion + def close(*args); end + + def each(*args, &blk); end + + def gets(*args); end + + def initialize(input); end + + def read(*args); end + + def rewind(*args); end +end + +class Rack::Lint::InputWrapper +end + +class Rack::Lint::LintError +end + +class Rack::Lint::LintError +end + +class Rack::Lint +end + +class Rack::Lock + def call(env); end + + def initialize(app, mutex=T.unsafe(nil)); end +end + +class Rack::Lock +end + +class Rack::Logger + def call(env); end + + def initialize(app, level=T.unsafe(nil)); end +end + +class Rack::Logger +end + +class Rack::MediaType + SPLIT_PATTERN = ::T.let(nil, ::T.untyped) +end + +class Rack::MediaType + def self.params(content_type); end + + def self.type(content_type); end +end + +class Rack::MethodOverride + def call(env); end + + def initialize(app); end + + def method_override(env); end + ALLOWED_METHODS = ::T.let(nil, ::T.untyped) + HTTP_METHODS = ::T.let(nil, ::T.untyped) + HTTP_METHOD_OVERRIDE_HEADER = ::T.let(nil, ::T.untyped) + METHOD_OVERRIDE_PARAM_KEY = ::T.let(nil, ::T.untyped) +end + +class Rack::MethodOverride +end + +module Rack::Mime + MIME_TYPES = ::T.let(nil, ::T.untyped) +end + +module Rack::Mime + def self.match?(value, matcher); end + + def self.mime_type(ext, fallback=T.unsafe(nil)); end +end + +class Rack::MockRequest + def delete(uri, opts=T.unsafe(nil)); end + + def get(uri, opts=T.unsafe(nil)); end + + def head(uri, opts=T.unsafe(nil)); end + + def initialize(app); end + + def options(uri, opts=T.unsafe(nil)); end + + def patch(uri, opts=T.unsafe(nil)); end + + def post(uri, opts=T.unsafe(nil)); end + + def put(uri, opts=T.unsafe(nil)); end + + def request(method=T.unsafe(nil), uri=T.unsafe(nil), opts=T.unsafe(nil)); end + DEFAULT_ENV = ::T.let(nil, ::T.untyped) +end + +class Rack::MockRequest::FatalWarner + def flush(); end + + def puts(warning); end + + def string(); end + + def write(warning); end +end + +class Rack::MockRequest::FatalWarner +end + +class Rack::MockRequest::FatalWarning +end + +class Rack::MockRequest::FatalWarning +end + +class Rack::MockRequest + def self.env_for(uri=T.unsafe(nil), opts=T.unsafe(nil)); end + + def self.parse_uri_rfc2396(uri); end +end + +class Rack::MockResponse + def =~(other); end + + def cookie(name); end + + def cookies(); end + + def errors(); end + + def errors=(errors); end + + def initialize(status, headers, body, errors=T.unsafe(nil)); end + + def match(other); end + + def original_headers(); end +end + +class Rack::MockResponse + def self.[](*arg); end +end + +module Rack::Multipart + ATTRIBUTE = ::T.let(nil, ::T.untyped) + ATTRIBUTE_CHAR = ::T.let(nil, ::T.untyped) + BROKEN_QUOTED = ::T.let(nil, ::T.untyped) + BROKEN_UNQUOTED = ::T.let(nil, ::T.untyped) + CONDISP = ::T.let(nil, ::T.untyped) + DISPPARM = ::T.let(nil, ::T.untyped) + EOL = ::T.let(nil, ::T.untyped) + EXTENDED_INITIAL_NAME = ::T.let(nil, ::T.untyped) + EXTENDED_INITIAL_PARAMETER = ::T.let(nil, ::T.untyped) + EXTENDED_INITIAL_VALUE = ::T.let(nil, ::T.untyped) + EXTENDED_OTHER_NAME = ::T.let(nil, ::T.untyped) + EXTENDED_OTHER_PARAMETER = ::T.let(nil, ::T.untyped) + EXTENDED_OTHER_VALUE = ::T.let(nil, ::T.untyped) + EXTENDED_PARAMETER = ::T.let(nil, ::T.untyped) + MULTIPART = ::T.let(nil, ::T.untyped) + MULTIPART_BOUNDARY = ::T.let(nil, ::T.untyped) + MULTIPART_CONTENT_DISPOSITION = ::T.let(nil, ::T.untyped) + MULTIPART_CONTENT_ID = ::T.let(nil, ::T.untyped) + MULTIPART_CONTENT_TYPE = ::T.let(nil, ::T.untyped) + REGULAR_PARAMETER = ::T.let(nil, ::T.untyped) + REGULAR_PARAMETER_NAME = ::T.let(nil, ::T.untyped) + RFC2183 = ::T.let(nil, ::T.untyped) + SECTION = ::T.let(nil, ::T.untyped) + TOKEN = ::T.let(nil, ::T.untyped) + VALUE = ::T.let(nil, ::T.untyped) +end + +class Rack::Multipart::Generator + def dump(); end + + def initialize(params, first=T.unsafe(nil)); end +end + +class Rack::Multipart::Generator +end + +class Rack::Multipart::MultipartPartLimitError +end + +class Rack::Multipart::MultipartPartLimitError +end + +class Rack::Multipart::Parser + def initialize(boundary, tempfile, bufsize, query_parser); end + + def on_read(content); end + + def result(); end + + def state(); end + BOUNDARY_REGEX = ::T.let(nil, ::T.untyped) + BUFSIZE = ::T.let(nil, ::T.untyped) + CHARSET = ::T.let(nil, ::T.untyped) + EMPTY = ::T.let(nil, ::T.untyped) + TEMPFILE_FACTORY = ::T.let(nil, ::T.untyped) + TEXT_PLAIN = ::T.let(nil, ::T.untyped) +end + +class Rack::Multipart::Parser::BoundedIO + def initialize(io, content_length); end + + def read(size, outbuf=T.unsafe(nil)); end + + def rewind(); end +end + +class Rack::Multipart::Parser::BoundedIO +end + +class Rack::Multipart::Parser::Collector + include ::Enumerable + def each(&blk); end + + def initialize(tempfile); end + + def on_mime_body(mime_index, content); end + + def on_mime_finish(mime_index); end + + def on_mime_head(mime_index, head, filename, content_type, name); end +end + +class Rack::Multipart::Parser::Collector::BufferPart + def close(); end + + def file?(); end +end + +class Rack::Multipart::Parser::Collector::BufferPart +end + +class Rack::Multipart::Parser::Collector::MimePart + def get_data(); end +end + +class Rack::Multipart::Parser::Collector::MimePart +end + +class Rack::Multipart::Parser::Collector::TempfilePart + def close(); end + + def file?(); end +end + +class Rack::Multipart::Parser::Collector::TempfilePart +end + +class Rack::Multipart::Parser::Collector +end + +class Rack::Multipart::Parser::MultipartInfo + def params(); end + + def params=(_); end + + def tmp_files(); end + + def tmp_files=(_); end +end + +class Rack::Multipart::Parser::MultipartInfo + def self.[](*arg); end + + def self.members(); end +end + +class Rack::Multipart::Parser + def self.parse(io, content_length, content_type, tmpfile, bufsize, qp); end + + def self.parse_boundary(content_type); end +end + +class Rack::Multipart::UploadedFile + def content_type(); end + + def content_type=(content_type); end + + def initialize(filepath=T.unsafe(nil), ct=T.unsafe(nil), bin=T.unsafe(nil), path: T.unsafe(nil), content_type: T.unsafe(nil), binary: T.unsafe(nil), filename: T.unsafe(nil), io: T.unsafe(nil)); end + + def local_path(); end + + def method_missing(method_name, *args, &block); end + + def original_filename(); end + + def path(); end + + def respond_to?(*args); end +end + +class Rack::Multipart::UploadedFile +end + +module Rack::Multipart + def self.build_multipart(params, first=T.unsafe(nil)); end + + def self.extract_multipart(req, params=T.unsafe(nil)); end + + def self.parse_multipart(env, params=T.unsafe(nil)); end +end + +class Rack::NullLogger + def <<(msg); end + + def add(severity, message=T.unsafe(nil), progname=T.unsafe(nil), &block); end + + def call(env); end + + def close(); end + + def datetime_format(); end + + def datetime_format=(datetime_format); end + + def debug(progname=T.unsafe(nil), &block); end + + def debug?(); end + + def error(progname=T.unsafe(nil), &block); end + + def error?(); end + + def fatal(progname=T.unsafe(nil), &block); end + + def fatal?(); end + + def formatter(); end + + def formatter=(formatter); end + + def info(progname=T.unsafe(nil), &block); end + + def info?(); end + + def initialize(app); end + + def level(); end + + def level=(level); end + + def progname(); end + + def progname=(progname); end + + def sev_threshold(); end + + def sev_threshold=(sev_threshold); end + + def unknown(progname=T.unsafe(nil), &block); end + + def warn(progname=T.unsafe(nil), &block); end + + def warn?(); end +end + +class Rack::NullLogger +end + +class Rack::QueryParser + def initialize(params_class, key_space_limit, param_depth_limit); end + + def key_space_limit(); end + + def make_params(); end + + def new_depth_limit(param_depth_limit); end + + def new_space_limit(key_space_limit); end + + def normalize_params(params, name, v, depth); end + + def param_depth_limit(); end + + def parse_nested_query(qs, d=T.unsafe(nil)); end + + def parse_query(qs, d=T.unsafe(nil), &unescaper); end + COMMON_SEP = ::T.let(nil, ::T.untyped) + DEFAULT_SEP = ::T.let(nil, ::T.untyped) +end + +class Rack::QueryParser::Params + def [](key); end + + def []=(key, value); end + + def initialize(limit); end + + def key?(key); end + + def to_h(); end + + def to_params_hash(); end +end + +class Rack::QueryParser + def self.make_default(key_space_limit, param_depth_limit); end +end + +class Rack::Recursive + def _call(env); end + + def call(env); end + + def include(env, path); end + + def initialize(app); end +end + +class Rack::Recursive +end + +class Rack::Reloader + def call(env); end + + def initialize(app, cooldown=T.unsafe(nil), backend=T.unsafe(nil)); end + + def reload!(stderr=T.unsafe(nil)); end + + def safe_load(file, mtime, stderr=T.unsafe(nil)); end +end + +module Rack::Reloader::Stat + def figure_path(file, paths); end + + def rotation(); end + + def safe_stat(file); end +end + +module Rack::Reloader::Stat +end + +class Rack::Reloader +end + +class Rack::Request + include ::Rack::Request::Env + include ::Rack::Request::Helpers + def query(); end + + def version_supplied(); end + + def version_supplied=(version_supplied); end + ALLOWED_SCHEMES = ::T.let(nil, ::T.untyped) + SCHEME_WHITELIST = ::T.let(nil, ::T.untyped) +end + +module Rack::Request::Env + def add_header(key, v); end + + def delete_header(name); end + + def each_header(&block); end + + def env(); end + + def fetch_header(name, &block); end + + def get_header(name); end + + def has_header?(name); end + + def initialize(env); end + + def set_header(name, v); end +end + +module Rack::Request::Env +end + +module Rack::Request::Helpers + def GET(); end + + def POST(); end + + def [](key); end + + def []=(key, value); end + + def accept_encoding(); end + + def accept_language(); end + + def authority(); end + + def base_url(); end + + def body(); end + + def content_charset(); end + + def content_length(); end + + def content_type(); end + + def cookies(); end + + def delete?(); end + + def delete_param(k); end + + def form_data?(); end + + def forwarded_authority(); end + + def forwarded_for(); end + + def forwarded_port(); end + + def fullpath(); end + + def get?(); end + + def head?(); end + + def host(); end + + def host_authority(); end + + def host_with_port(authority=T.unsafe(nil)); end + + def hostname(); end + + def ip(); end + + def link?(); end + + def logger(); end + + def media_type(); end + + def media_type_params(); end + + def multithread?(); end + + def options?(); end + + def params(); end + + def parseable_data?(); end + + def patch?(); end + + def path(); end + + def path_info(); end + + def path_info=(s); end + + def port(); end + + def post?(); end + + def put?(); end + + def query_string(); end + + def referer(); end + + def referrer(); end + + def request_method(); end + + def scheme(); end + + def script_name(); end + + def script_name=(s); end + + def server_authority(); end + + def server_name(); end + + def server_port(); end + + def session(); end + + def session_options(); end + + def ssl?(); end + + def trace?(); end + + def trusted_proxy?(ip); end + + def unlink?(); end + + def update_param(k, v); end + + def url(); end + + def user_agent(); end + + def values_at(*keys); end + + def xhr?(); end + DEFAULT_PORTS = ::T.let(nil, ::T.untyped) + FORM_DATA_MEDIA_TYPES = ::T.let(nil, ::T.untyped) + HTTP_X_FORWARDED_FOR = ::T.let(nil, ::T.untyped) + HTTP_X_FORWARDED_HOST = ::T.let(nil, ::T.untyped) + HTTP_X_FORWARDED_PORT = ::T.let(nil, ::T.untyped) + HTTP_X_FORWARDED_PROTO = ::T.let(nil, ::T.untyped) + HTTP_X_FORWARDED_SCHEME = ::T.let(nil, ::T.untyped) + HTTP_X_FORWARDED_SSL = ::T.let(nil, ::T.untyped) + PARSEABLE_DATA_MEDIA_TYPES = ::T.let(nil, ::T.untyped) +end + +module Rack::Request::Helpers +end + +class Rack::Request + def self.ip_filter(); end + + def self.ip_filter=(ip_filter); end +end + +class Rack::Response + include ::Rack::Response::Helpers + def [](key); end + + def []=(key, v); end + + def body(); end + + def body=(body); end + + def chunked?(); end + + def close(); end + + def delete_header(key); end + + def each(&callback); end + + def empty?(); end + + def finish(&block); end + + def get_header(key); end + + def has_header?(key); end + + def header(); end + + def headers(); end + + def initialize(body=T.unsafe(nil), status=T.unsafe(nil), headers=T.unsafe(nil)); end -module Pry::MethodInfo - METHOD_INSPECT_PATTERN = ::T.let(nil, ::T.untyped) -end + def length(); end -class Pry::ObjectPath - SPECIAL_TERMS = ::T.let(nil, ::T.untyped) -end + def length=(length); end -class Pry::Output - DEFAULT_SIZE = ::T.let(nil, ::T.untyped) -end + def redirect(target, status=T.unsafe(nil)); end -class Pry::Slop - DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) - VERSION = ::T.let(nil, ::T.untyped) -end + def set_header(key, v); end -class Pry::Slop::Option - DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) -end + def status(); end -module PryDoc - VERSION = ::T.let(nil, ::T.untyped) -end + def status=(status); end -module RDoc::Text - def language(); end + def to_a(&block); end - def language=(language); end + def write(chunk); end + CHUNKED = ::T.let(nil, ::T.untyped) + STATUS_WITH_NO_ENTITY_BODY = ::T.let(nil, ::T.untyped) end -module RSpec - MODULES_TO_AUTOLOAD = ::T.let(nil, ::T.untyped) -end +module Rack::Response::Helpers + def accepted?(); end -class RSpec::CallerFilter - ADDITIONAL_TOP_LEVEL_FILES = ::T.let(nil, ::T.untyped) - IGNORE_REGEX = ::T.let(nil, ::T.untyped) - LIB_REGEX = ::T.let(nil, ::T.untyped) - RSPEC_LIBS = ::T.let(nil, ::T.untyped) -end + def add_header(key, v); end -class RSpec::Core::Configuration - DEFAULT_FORMATTER = ::T.let(nil, ::T.untyped) - FAILED_STATUS = ::T.let(nil, ::T.untyped) - MOCKING_ADAPTERS = ::T.let(nil, ::T.untyped) - PASSED_STATUS = ::T.let(nil, ::T.untyped) - PENDING_STATUS = ::T.let(nil, ::T.untyped) - RAISE_ERROR_WARNING_NOTIFIER = ::T.let(nil, ::T.untyped) - UNKNOWN_STATUS = ::T.let(nil, ::T.untyped) - VALID_STATUSES = ::T.let(nil, ::T.untyped) -end + def append(chunk); end -class RSpec::Core::ConfigurationOptions - OPTIONS_ORDER = ::T.let(nil, ::T.untyped) - UNFORCED_OPTIONS = ::T.let(nil, ::T.untyped) - UNPROCESSABLE_OPTIONS = ::T.let(nil, ::T.untyped) -end + def bad_request?(); end -RSpec::Core::Example::AllExceptionsExcludingDangerousOnesOnRubiesThatAllowIt = RSpec::Support::AllExceptionsExceptOnesWeMustNotRescue + def buffered_body!(); end -class RSpec::Core::ExampleGroup - INSTANCE_VARIABLE_TO_IGNORE = ::T.let(nil, ::T.untyped) -end + def cache!(duration=T.unsafe(nil), directive: T.unsafe(nil)); end -RSpec::Core::ExclusionRules = RSpec::Core::FilterRules + def cache_control(); end -class RSpec::Core::FilterRules - PROC_HEX_NUMBER = ::T.let(nil, ::T.untyped) - PROJECT_DIR = ::T.let(nil, ::T.untyped) -end + def cache_control=(v); end -module RSpec::Core::Formatters::ConsoleCodes - VT100_CODES = ::T.let(nil, ::T.untyped) - VT100_CODE_VALUES = ::T.let(nil, ::T.untyped) -end + def client_error?(); end -class RSpec::Core::Formatters::DeprecationFormatter - DEPRECATION_STREAM_NOTICE = ::T.let(nil, ::T.untyped) - RAISE_ERROR_CONFIG_NOTICE = ::T.let(nil, ::T.untyped) - TOO_MANY_WARNINGS_NOTICE = ::T.let(nil, ::T.untyped) -end + def content_length(); end -class RSpec::Core::Formatters::DeprecationFormatter::DelayedPrinter - TOO_MANY_USES_LIMIT = ::T.let(nil, ::T.untyped) -end + def content_type(); end -class RSpec::Core::Formatters::ExceptionPresenter - PENDING_DETAIL_FORMATTER = ::T.let(nil, ::T.untyped) -end + def content_type=(content_type); end -module RSpec::Core::Formatters::Helpers - DEFAULT_PRECISION = ::T.let(nil, ::T.untyped) - SUB_SECOND_PRECISION = ::T.let(nil, ::T.untyped) -end + def created?(); end -class RSpec::Core::Formatters::HtmlPrinter - GLOBAL_SCRIPTS = ::T.let(nil, ::T.untyped) - GLOBAL_STYLES = ::T.let(nil, ::T.untyped) - HTML_HEADER = ::T.let(nil, ::T.untyped) - REPORT_HEADER = ::T.let(nil, ::T.untyped) -end + def delete_cookie(key, value=T.unsafe(nil)); end -module RSpec::Core::Formatters::SyntaxHighlighter::CodeRayImplementation - RESET_CODE = ::T.let(nil, ::T.untyped) -end + def do_not_cache!(); end -RSpec::Core::Formatters::SyntaxHighlighter::WindowsImplementation = RSpec::Core::Formatters::SyntaxHighlighter::NoSyntaxHighlightingImplementation + def etag(); end -class RSpec::Core::Hooks::HookCollections - EMPTY_HOOK_ARRAY = ::T.let(nil, ::T.untyped) - HOOK_TYPES = ::T.let(nil, ::T.untyped) - SCOPES = ::T.let(nil, ::T.untyped) - SCOPE_ALIASES = ::T.let(nil, ::T.untyped) -end + def etag=(v); end -module RSpec::Core::Metadata - RESERVED_KEYS = ::T.let(nil, ::T.untyped) -end + def forbidden?(); end -class RSpec::Core::Ordering::Random - MAX_32_BIT = ::T.let(nil, ::T.untyped) -end + def include?(header); end -module RSpec::Core::Pending - NOT_YET_IMPLEMENTED = ::T.let(nil, ::T.untyped) - NO_REASON_GIVEN = ::T.let(nil, ::T.untyped) -end + def informational?(); end -class RSpec::Core::Profiler - NOTIFICATIONS = ::T.let(nil, ::T.untyped) -end + def invalid?(); end -class RSpec::Core::Reporter - RSPEC_NOTIFICATIONS = ::T.let(nil, ::T.untyped) -end + def location(); end -module RSpec::Core::ShellEscape - SHELLS_ALLOWING_UNQUOTED_IDS = ::T.let(nil, ::T.untyped) -end + def location=(location); end -module RSpec::Core::Version - STRING = ::T.let(nil, ::T.untyped) -end + def media_type(); end -class RSpec::Expectations::Configuration - FALSE_POSITIVE_BEHAVIOURS = ::T.let(nil, ::T.untyped) -end + def media_type_params(); end -RSpec::Expectations::LegacyMacherAdapter = RSpec::Expectations::LegacyMatcherAdapter + def method_not_allowed?(); end -module RSpec::Expectations::Version - STRING = ::T.let(nil, ::T.untyped) -end + def moved_permanently?(); end -module RSpec::Matchers - BE_PREDICATE_REGEX = ::T.let(nil, ::T.untyped) - DYNAMIC_MATCHER_REGEX = ::T.let(nil, ::T.untyped) - HAS_REGEX = ::T.let(nil, ::T.untyped) -end + def no_content?(); end -RSpec::Matchers::AliasedNegatedMatcher::DefaultFailureMessages = RSpec::Matchers::BuiltIn::BaseMatcher::DefaultFailureMessages + def not_found?(); end -class RSpec::Matchers::BuiltIn::BaseMatcher - UNDEFINED = ::T.let(nil, ::T.untyped) -end + def ok?(); end -class RSpec::Matchers::BuiltIn::BePredicate - REGEX = ::T.let(nil, ::T.untyped) -end + def precondition_failed?(); end -class RSpec::Matchers::BuiltIn::Equal - LITERAL_SINGLETONS = ::T.let(nil, ::T.untyped) -end + def redirect?(); end -class RSpec::Matchers::BuiltIn::Has - REGEX = ::T.let(nil, ::T.untyped) -end + def redirection?(); end -class RSpec::Matchers::BuiltIn::RaiseError - UndefinedValue = ::T.let(nil, ::T.untyped) -end + def server_error?(); end -RSpec::Matchers::BuiltIn::SpecificValuesChange::MATCH_ANYTHING = BasicObject + def set_cookie(key, value); end -RSpec::Matchers::BuiltIn::StartAndEndWith = RSpec::Matchers::BuiltIn::StartOrEndWith + def set_cookie_header(); end -module RSpec::Matchers::DSL::Macros - RAISE_NOTIFIER = ::T.let(nil, ::T.untyped) -end + def set_cookie_header=(v); end -class RSpec::Matchers::ExpectedsForMultipleDiffs - DEFAULT_DIFF_LABEL = ::T.let(nil, ::T.untyped) - DESCRIPTION_MAX_LENGTH = ::T.let(nil, ::T.untyped) -end + def successful?(); end -module RSpec::Mocks - DEFAULT_CALLBACK_INVOCATION_STRATEGY = ::T.let(nil, ::T.untyped) - IGNORED_BACKTRACE_LINE = ::T.let(nil, ::T.untyped) -end + def unauthorized?(); end -class RSpec::Mocks::AnyInstance::PositiveExpectationChain - ExpectationInvocationOrder = ::T.let(nil, ::T.untyped) + def unprocessable?(); end end -class RSpec::Mocks::AnyInstance::Recorder - include ::T::CompatibilityPatches::RSpecCompatibility::RecorderExtensions +module Rack::Response::Helpers end -class RSpec::Mocks::AnyInstance::StubChain - EmptyInvocationOrder = ::T.let(nil, ::T.untyped) - InvocationOrder = ::T.let(nil, ::T.untyped) -end +class Rack::Response::Raw + include ::Rack::Response::Helpers + def delete_header(key); end -class RSpec::Mocks::ArgumentListMatcher - MATCH_ALL = ::T.let(nil, ::T.untyped) -end + def get_header(key); end -class RSpec::Mocks::ArgumentMatchers::AnyArgMatcher - INSTANCE = ::T.let(nil, ::T.untyped) -end + def has_header?(key); end -class RSpec::Mocks::ArgumentMatchers::AnyArgsMatcher - INSTANCE = ::T.let(nil, ::T.untyped) -end + def headers(); end -class RSpec::Mocks::ArgumentMatchers::BooleanMatcher - INSTANCE = ::T.let(nil, ::T.untyped) + def initialize(status, headers); end + + def set_header(key, v); end + + def status(); end + + def status=(status); end end -class RSpec::Mocks::ArgumentMatchers::NoArgsMatcher - INSTANCE = ::T.let(nil, ::T.untyped) +class Rack::Response::Raw end -class RSpec::Mocks::Matchers::HaveReceived - ARGS_CONSTRAINTS = ::T.let(nil, ::T.untyped) - CONSTRAINTS = ::T.let(nil, ::T.untyped) - COUNT_CONSTRAINTS = ::T.let(nil, ::T.untyped) +class Rack::Response + def self.[](status, headers, body); end end -class RSpec::Mocks::MethodDouble - include ::T::CompatibilityPatches::RSpecCompatibility::MethodDoubleExtensions +class Rack::RewindableInput + def close(); end + + def each(&block); end + + def gets(); end + + def initialize(io); end + + def read(*args); end + + def rewind(); end end -class RSpec::Mocks::ObjectReference - MODULE_NAME_METHOD = ::T.let(nil, ::T.untyped) +class Rack::RewindableInput end -class RSpec::Mocks::Proxy - DEFAULT_MESSAGE_EXPECTATION_OPTS = ::T.let(nil, ::T.untyped) +class Rack::Runtime + def call(env); end + + def initialize(app, name=T.unsafe(nil)); end + FORMAT_STRING = ::T.let(nil, ::T.untyped) + HEADER_NAME = ::T.let(nil, ::T.untyped) end -module RSpec::Mocks::Version - STRING = ::T.let(nil, ::T.untyped) +class Rack::Runtime end -RSpec::SharedContext = RSpec::Core::SharedContext +class Rack::Sendfile + def call(env); end -module RSpec::Support - DEFAULT_FAILURE_NOTIFIER = ::T.let(nil, ::T.untyped) - DEFAULT_WARNING_NOTIFIER = ::T.let(nil, ::T.untyped) - KERNEL_METHOD_METHOD = ::T.let(nil, ::T.untyped) + def initialize(app, variation=T.unsafe(nil), mappings=T.unsafe(nil)); end end -module RSpec::Support::AllExceptionsExceptOnesWeMustNotRescue - AVOID_RESCUING = ::T.let(nil, ::T.untyped) +class Rack::Sendfile end -class RSpec::Support::Differ - def color?(); end +class Rack::Server + def app(); end - def diff(actual, expected); end + def default_options(); end - def diff_as_object(actual, expected); end + def initialize(options=T.unsafe(nil)); end - def diff_as_string(actual, expected); end + def middleware(); end - def initialize(opts=T.unsafe(nil)); end -end + def options(); end -class RSpec::Support::Differ -end + def options=(options); end -class RSpec::Support::EncodedString - REPLACE = ::T.let(nil, ::T.untyped) - US_ASCII = ::T.let(nil, ::T.untyped) - UTF_8 = ::T.let(nil, ::T.untyped) + def server(); end + + def start(&block); end end -class RSpec::Support::MethodSignature - INFINITY = ::T.let(nil, ::T.untyped) +class Rack::Server::Options + def handler_opts(options); end + + def parse!(args); end end -class RSpec::Support::Mutex - NEW_MUTEX_METHOD = ::T.let(nil, ::T.untyped) +class Rack::Server::Options end -class RSpec::Support::ObjectFormatter - ELLIPSIS = ::T.let(nil, ::T.untyped) - INSPECTOR_CLASSES = ::T.let(nil, ::T.untyped) +class Rack::Server + def self.default_middleware_by_environment(); end + + def self.logging_middleware(); end + + def self.middleware(); end + + def self.start(options=T.unsafe(nil)); end +end + +module Rack::Session end -class RSpec::Support::ObjectFormatter::DateTimeInspector - FORMAT = ::T.let(nil, ::T.untyped) +module Rack::Session::Abstract end -class RSpec::Support::ObjectFormatter::TimeInspector - FORMAT = ::T.let(nil, ::T.untyped) +class Rack::Session::Abstract::ID + def find_session(req, sid); end end -class RSpec::Support::ObjectFormatter::UninspectableObjectInspector - OBJECT_ID_FORMAT = ::T.let(nil, ::T.untyped) +class Rack::Session::Abstract::ID + def self.inherited(klass); end end -RSpec::Support::StrictSignatureVerifier = RSpec::Support::MethodSignatureVerifier +class Rack::Session::Abstract::Persisted + def call(env); end -module RSpec::Support::Version - STRING = ::T.let(nil, ::T.untyped) + def commit_session(req, res); end + + def context(env, app=T.unsafe(nil)); end + + def default_options(); end + + def initialize(app, options=T.unsafe(nil)); end + + def key(); end + + def sid_secure(); end + DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) end -module RSpec::Version - STRING = ::T.let(nil, ::T.untyped) +class Rack::Session::Abstract::Persisted end -module Rack - CACHE_CONTROL = ::T.let(nil, ::T.untyped) - CONTENT_LENGTH = ::T.let(nil, ::T.untyped) - CONTENT_TYPE = ::T.let(nil, ::T.untyped) - DELETE = ::T.let(nil, ::T.untyped) - ETAG = ::T.let(nil, ::T.untyped) - EXPIRES = ::T.let(nil, ::T.untyped) - GET = ::T.let(nil, ::T.untyped) - HEAD = ::T.let(nil, ::T.untyped) - HTTPS = ::T.let(nil, ::T.untyped) - HTTP_COOKIE = ::T.let(nil, ::T.untyped) - HTTP_HOST = ::T.let(nil, ::T.untyped) - HTTP_PORT = ::T.let(nil, ::T.untyped) - HTTP_VERSION = ::T.let(nil, ::T.untyped) - LINK = ::T.let(nil, ::T.untyped) - OPTIONS = ::T.let(nil, ::T.untyped) - PATCH = ::T.let(nil, ::T.untyped) - PATH_INFO = ::T.let(nil, ::T.untyped) - POST = ::T.let(nil, ::T.untyped) - PUT = ::T.let(nil, ::T.untyped) - QUERY_STRING = ::T.let(nil, ::T.untyped) - RACK_ERRORS = ::T.let(nil, ::T.untyped) - RACK_HIJACK = ::T.let(nil, ::T.untyped) - RACK_HIJACK_IO = ::T.let(nil, ::T.untyped) - RACK_INPUT = ::T.let(nil, ::T.untyped) - RACK_IS_HIJACK = ::T.let(nil, ::T.untyped) - RACK_LOGGER = ::T.let(nil, ::T.untyped) - RACK_METHODOVERRIDE_ORIGINAL_METHOD = ::T.let(nil, ::T.untyped) - RACK_MULTIPART_BUFFER_SIZE = ::T.let(nil, ::T.untyped) - RACK_MULTIPART_TEMPFILE_FACTORY = ::T.let(nil, ::T.untyped) - RACK_MULTIPROCESS = ::T.let(nil, ::T.untyped) - RACK_MULTITHREAD = ::T.let(nil, ::T.untyped) - RACK_RECURSIVE_INCLUDE = ::T.let(nil, ::T.untyped) - RACK_REQUEST_COOKIE_HASH = ::T.let(nil, ::T.untyped) - RACK_REQUEST_COOKIE_STRING = ::T.let(nil, ::T.untyped) - RACK_REQUEST_FORM_HASH = ::T.let(nil, ::T.untyped) - RACK_REQUEST_FORM_INPUT = ::T.let(nil, ::T.untyped) - RACK_REQUEST_FORM_VARS = ::T.let(nil, ::T.untyped) - RACK_REQUEST_QUERY_HASH = ::T.let(nil, ::T.untyped) - RACK_REQUEST_QUERY_STRING = ::T.let(nil, ::T.untyped) - RACK_RUNONCE = ::T.let(nil, ::T.untyped) - RACK_SESSION = ::T.let(nil, ::T.untyped) - RACK_SESSION_OPTIONS = ::T.let(nil, ::T.untyped) - RACK_SESSION_UNPACKED_COOKIE_DATA = ::T.let(nil, ::T.untyped) - RACK_SHOWSTATUS_DETAIL = ::T.let(nil, ::T.untyped) - RACK_TEMPFILES = ::T.let(nil, ::T.untyped) - RACK_URL_SCHEME = ::T.let(nil, ::T.untyped) - RACK_VERSION = ::T.let(nil, ::T.untyped) - RELEASE = ::T.let(nil, ::T.untyped) - REQUEST_METHOD = ::T.let(nil, ::T.untyped) - REQUEST_PATH = ::T.let(nil, ::T.untyped) - SCRIPT_NAME = ::T.let(nil, ::T.untyped) - SERVER_NAME = ::T.let(nil, ::T.untyped) - SERVER_PORT = ::T.let(nil, ::T.untyped) - SERVER_PROTOCOL = ::T.let(nil, ::T.untyped) - SET_COOKIE = ::T.let(nil, ::T.untyped) - TRACE = ::T.let(nil, ::T.untyped) - TRANSFER_ENCODING = ::T.let(nil, ::T.untyped) - UNLINK = ::T.let(nil, ::T.untyped) - VERSION = ::T.let(nil, ::T.untyped) +class Rack::Session::Abstract::PersistedSecure + def extract_session_id(*arg); end + + def generate_sid(*arg); end end -class Rack::Auth::AbstractRequest - AUTHORIZATION_KEYS = ::T.let(nil, ::T.untyped) +class Rack::Session::Abstract::PersistedSecure::SecureSessionHash end -class Rack::Auth::Digest::MD5 - QOP = ::T.let(nil, ::T.untyped) +class Rack::Session::Abstract::PersistedSecure::SecureSessionHash end -class Rack::Auth::Digest::Params - UNQUOTED = ::T.let(nil, ::T.untyped) +class Rack::Session::Abstract::PersistedSecure end -class Rack::Builder - def call(env); end +class Rack::Session::Abstract::SessionHash + include ::Enumerable + def [](key); end - def freeze_app(); end + def []=(key, value); end - def initialize(default_app=T.unsafe(nil), &block); end + def clear(); end - def map(path, &block); end + def delete(key); end - def run(app); end + def destroy(); end - def to_app(); end + def dig(key, *keys); end - def use(middleware, *args, &block); end + def each(&block); end - def warmup(prc=T.unsafe(nil), &block); end - UTF_8_BOM = ::T.let(nil, ::T.untyped) -end + def empty?(); end -class Rack::Builder - def self.app(default_app=T.unsafe(nil), &block); end + def exists?(); end - def self.load_file(path, opts=T.unsafe(nil)); end + def fetch(key, default=T.unsafe(nil), &block); end - def self.new_from_string(builder_script, file=T.unsafe(nil)); end + def has_key?(key); end - def self.parse_file(config, opts=T.unsafe(nil)); end -end + def id(); end -class Rack::Cascade - NotFound = ::T.let(nil, ::T.untyped) -end + def id=(id); end -class Rack::Chunked::Body - TAIL = ::T.let(nil, ::T.untyped) - TERM = ::T.let(nil, ::T.untyped) -end + def include?(key); end -class Rack::CommonLogger - FORMAT = ::T.let(nil, ::T.untyped) -end + def initialize(store, req); end -class Rack::Directory - DIR_FILE = ::T.let(nil, ::T.untyped) - DIR_PAGE_FOOTER = ::T.let(nil, ::T.untyped) - DIR_PAGE_HEADER = ::T.let(nil, ::T.untyped) - FILESIZE_FORMAT = ::T.let(nil, ::T.untyped) -end + def key?(key); end -class Rack::ETag - DEFAULT_CACHE_CONTROL = ::T.let(nil, ::T.untyped) - ETAG_STRING = ::T.let(nil, ::T.untyped) -end + def keys(); end -Rack::File = Rack::Files + def loaded?(); end -class Rack::Files - ALLOWED_VERBS = ::T.let(nil, ::T.untyped) - ALLOW_HEADER = ::T.let(nil, ::T.untyped) - MULTIPART_BOUNDARY = ::T.let(nil, ::T.untyped) -end + def merge!(hash); end -class Rack::Handler::CGI + def options(); end + + def replace(hash); end + + def store(key, value); end + + def to_hash(); end + + def update(hash); end + + def values(); end + Unspecified = ::T.let(nil, ::T.untyped) end -class Rack::Handler::CGI - def self.run(app, **options); end +class Rack::Session::Abstract::SessionHash + def self.find(req); end - def self.send_body(body); end + def self.set(req, session); end - def self.send_headers(status, headers); end + def self.set_options(req, options); end +end - def self.serve(app); end +module Rack::Session::Abstract end -class Rack::Handler::WEBrick - def initialize(server, app); end +class Rack::Session::Cookie + def coder(); end end -class Rack::Handler::WEBrick - def self.run(app, **options); end +class Rack::Session::Cookie::Base64 + def decode(str); end - def self.shutdown(); end + def encode(str); end +end - def self.valid_options(); end +class Rack::Session::Cookie::Base64::JSON + def encode(obj); end end -class Rack::Lint::HijackWrapper - REQUIRED_METHODS = ::T.let(nil, ::T.untyped) +class Rack::Session::Cookie::Base64::JSON end -class Rack::MediaType - SPLIT_PATTERN = ::T.let(nil, ::T.untyped) +class Rack::Session::Cookie::Base64::Marshal end -class Rack::MethodOverride - ALLOWED_METHODS = ::T.let(nil, ::T.untyped) - HTTP_METHODS = ::T.let(nil, ::T.untyped) - HTTP_METHOD_OVERRIDE_HEADER = ::T.let(nil, ::T.untyped) - METHOD_OVERRIDE_PARAM_KEY = ::T.let(nil, ::T.untyped) +class Rack::Session::Cookie::Base64::Marshal end -module Rack::Mime - MIME_TYPES = ::T.let(nil, ::T.untyped) +class Rack::Session::Cookie::Base64::ZipJSON + def encode(obj); end end -class Rack::MockRequest - DEFAULT_ENV = ::T.let(nil, ::T.untyped) +class Rack::Session::Cookie::Base64::ZipJSON end -module Rack::Multipart - ATTRIBUTE = ::T.let(nil, ::T.untyped) - ATTRIBUTE_CHAR = ::T.let(nil, ::T.untyped) - BROKEN_QUOTED = ::T.let(nil, ::T.untyped) - BROKEN_UNQUOTED = ::T.let(nil, ::T.untyped) - CONDISP = ::T.let(nil, ::T.untyped) - DISPPARM = ::T.let(nil, ::T.untyped) - EOL = ::T.let(nil, ::T.untyped) - EXTENDED_INITIAL_NAME = ::T.let(nil, ::T.untyped) - EXTENDED_INITIAL_PARAMETER = ::T.let(nil, ::T.untyped) - EXTENDED_INITIAL_VALUE = ::T.let(nil, ::T.untyped) - EXTENDED_OTHER_NAME = ::T.let(nil, ::T.untyped) - EXTENDED_OTHER_PARAMETER = ::T.let(nil, ::T.untyped) - EXTENDED_OTHER_VALUE = ::T.let(nil, ::T.untyped) - EXTENDED_PARAMETER = ::T.let(nil, ::T.untyped) - MULTIPART = ::T.let(nil, ::T.untyped) - MULTIPART_BOUNDARY = ::T.let(nil, ::T.untyped) - MULTIPART_CONTENT_DISPOSITION = ::T.let(nil, ::T.untyped) - MULTIPART_CONTENT_ID = ::T.let(nil, ::T.untyped) - MULTIPART_CONTENT_TYPE = ::T.let(nil, ::T.untyped) - REGULAR_PARAMETER = ::T.let(nil, ::T.untyped) - REGULAR_PARAMETER_NAME = ::T.let(nil, ::T.untyped) - RFC2183 = ::T.let(nil, ::T.untyped) - SECTION = ::T.let(nil, ::T.untyped) - TOKEN = ::T.let(nil, ::T.untyped) - VALUE = ::T.let(nil, ::T.untyped) +class Rack::Session::Cookie::Base64 end -class Rack::Multipart::Generator - def dump(); end +class Rack::Session::Cookie::Identity + def decode(str); end - def initialize(params, first=T.unsafe(nil)); end + def encode(str); end end -class Rack::Multipart::Generator +class Rack::Session::Cookie::Identity end -class Rack::Multipart::Parser - BOUNDARY_REGEX = ::T.let(nil, ::T.untyped) - BUFSIZE = ::T.let(nil, ::T.untyped) - CHARSET = ::T.let(nil, ::T.untyped) - EMPTY = ::T.let(nil, ::T.untyped) - TEMPFILE_FACTORY = ::T.let(nil, ::T.untyped) - TEXT_PLAIN = ::T.let(nil, ::T.untyped) +class Rack::Session::Cookie::SessionId + def cookie_value(); end + + def initialize(session_id, cookie_value); end + RUBYGEMS_ACTIVATION_MONITOR = ::T.let(nil, ::T.untyped) end -class Rack::Multipart::UploadedFile - def content_type(); end +class Rack::Session::Cookie::SessionId +end - def content_type=(content_type); end +class Rack::Session::Cookie +end - def initialize(filepath=T.unsafe(nil), ct=T.unsafe(nil), bin=T.unsafe(nil), path: T.unsafe(nil), content_type: T.unsafe(nil), binary: T.unsafe(nil), filename: T.unsafe(nil), io: T.unsafe(nil)); end +class Rack::Session::Pool + def delete_session(req, session_id, options); end - def local_path(); end + def find_session(req, sid); end - def method_missing(method_name, *args, &block); end + def generate_sid(); end - def original_filename(); end + def mutex(); end - def path(); end + def pool(); end - def respond_to?(*args); end -end + def with_lock(req); end -class Rack::Multipart::UploadedFile + def write_session(req, session_id, new_session, options); end + DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) end -class Rack::QueryParser - COMMON_SEP = ::T.let(nil, ::T.untyped) - DEFAULT_SEP = ::T.let(nil, ::T.untyped) +class Rack::Session::Pool end -class Rack::Request - include ::Rack::Request::Env - include ::Rack::Request::Helpers - def query(); end +class Rack::Session::SessionId + def cookie_value(); end - def version_supplied(); end + def empty?(); end - def version_supplied=(version_supplied); end - ALLOWED_SCHEMES = ::T.let(nil, ::T.untyped) - SCHEME_WHITELIST = ::T.let(nil, ::T.untyped) + def initialize(public_id); end + + def private_id(); end + + def public_id(); end + ID_VERSION = ::T.let(nil, ::T.untyped) end -module Rack::Request::Env - def add_header(key, v); end +class Rack::Session::SessionId +end - def delete_header(name); end +module Rack::Session +end - def each_header(&block); end +class Rack::ShowExceptions + def call(env); end - def env(); end + def dump_exception(exception); end - def fetch_header(name, &block); end + def h(obj); end - def get_header(name); end + def initialize(app); end - def has_header?(name); end + def prefers_plaintext?(env); end - def initialize(env); end + def pretty(env, exception); end - def set_header(name, v); end + def template(); end + CONTEXT = ::T.let(nil, ::T.untyped) + TEMPLATE = ::T.let(nil, ::T.untyped) end -module Rack::Request::Env +class Rack::ShowExceptions end -module Rack::Request::Helpers - def GET(); end +class Rack::ShowStatus + def call(env); end - def POST(); end + def h(obj); end - def [](key); end + def initialize(app); end + TEMPLATE = ::T.let(nil, ::T.untyped) +end - def []=(key, value); end +class Rack::ShowStatus +end - def accept_encoding(); end +class Rack::Static + def add_index_root?(path); end - def accept_language(); end + def applicable_rules(path); end - def authority(); end + def call(env); end - def base_url(); end + def can_serve(path); end - def body(); end + def initialize(app, options=T.unsafe(nil)); end - def content_charset(); end + def overwrite_file_path(path); end - def content_length(); end + def route_file(path); end +end - def content_type(); end +class Rack::Static +end - def cookies(); end +class Rack::TempfileReaper + def call(env); end - def delete?(); end + def initialize(app); end +end - def delete_param(k); end +class Rack::TempfileReaper +end - def form_data?(); end +class Rack::URLMap + def call(env); end - def forwarded_authority(); end + def initialize(map=T.unsafe(nil)); end - def forwarded_for(); end + def remap(map); end +end - def forwarded_port(); end +class Rack::URLMap +end - def fullpath(); end +module Rack::Utils + COMMON_SEP = ::T.let(nil, ::T.untyped) + DEFAULT_SEP = ::T.let(nil, ::T.untyped) + ESCAPE_HTML = ::T.let(nil, ::T.untyped) + ESCAPE_HTML_PATTERN = ::T.let(nil, ::T.untyped) + HTTP_STATUS_CODES = ::T.let(nil, ::T.untyped) + NULL_BYTE = ::T.let(nil, ::T.untyped) + PATH_SEPS = ::T.let(nil, ::T.untyped) + STATUS_WITH_NO_ENTITY_BODY = ::T.let(nil, ::T.untyped) + SYMBOL_TO_STATUS_CODE = ::T.let(nil, ::T.untyped) +end - def get?(); end +class Rack::Utils::Context + def app(); end - def head?(); end + def call(env); end - def host(); end + def context(env, app=T.unsafe(nil)); end - def host_authority(); end + def for(); end - def host_with_port(authority=T.unsafe(nil)); end + def initialize(app_f, app_r); end - def hostname(); end + def recontext(app); end +end - def ip(); end +class Rack::Utils::Context +end - def link?(); end +class Rack::Utils::HeaderHash + def [](k); end - def logger(); end + def []=(k, v); end - def media_type(); end + def delete(k); end - def media_type_params(); end + def has_key?(k); end - def multithread?(); end + def include?(k); end - def options?(); end + def initialize(hash=T.unsafe(nil)); end - def params(); end + def key?(k); end - def parseable_data?(); end + def member?(k); end - def patch?(); end + def merge(other); end - def path(); end + def merge!(other); end - def path_info(); end + def names(); end - def path_info=(s); end + def replace(other); end +end - def port(); end +class Rack::Utils::HeaderHash + def self.[](headers); end +end - def post?(); end +Rack::Utils::InvalidParameterError = Rack::QueryParser::InvalidParameterError - def put?(); end +Rack::Utils::KeySpaceConstrainedParams = Rack::QueryParser::Params - def query_string(); end +Rack::Utils::ParameterTypeError = Rack::QueryParser::ParameterTypeError - def referer(); end +module Rack::Utils + def self.add_cookie_to_header(header, key, value); end - def referrer(); end + def self.add_remove_cookie_to_header(header, key, value=T.unsafe(nil)); end - def request_method(); end + def self.best_q_match(q_value_header, available_mimes); end - def scheme(); end + def self.build_nested_query(value, prefix=T.unsafe(nil)); end - def script_name(); end + def self.build_query(params); end - def script_name=(s); end + def self.byte_ranges(env, size); end - def server_authority(); end + def self.clean_path_info(path_info); end - def server_name(); end + def self.clock_time(); end - def server_port(); end + def self.default_query_parser(); end - def session(); end + def self.default_query_parser=(default_query_parser); end - def session_options(); end + def self.delete_cookie_header!(header, key, value=T.unsafe(nil)); end - def ssl?(); end + def self.escape(s); end - def trace?(); end + def self.escape_html(string); end - def trusted_proxy?(ip); end + def self.escape_path(s); end - def unlink?(); end + def self.get_byte_ranges(http_range, size); end - def update_param(k, v); end + def self.key_space_limit(); end - def url(); end + def self.key_space_limit=(v); end - def user_agent(); end + def self.make_delete_cookie_header(header, key, value); end - def values_at(*keys); end + def self.multipart_part_limit(); end - def xhr?(); end - DEFAULT_PORTS = ::T.let(nil, ::T.untyped) - FORM_DATA_MEDIA_TYPES = ::T.let(nil, ::T.untyped) - HTTP_X_FORWARDED_FOR = ::T.let(nil, ::T.untyped) - HTTP_X_FORWARDED_HOST = ::T.let(nil, ::T.untyped) - HTTP_X_FORWARDED_PORT = ::T.let(nil, ::T.untyped) - HTTP_X_FORWARDED_PROTO = ::T.let(nil, ::T.untyped) - HTTP_X_FORWARDED_SCHEME = ::T.let(nil, ::T.untyped) - HTTP_X_FORWARDED_SSL = ::T.let(nil, ::T.untyped) - PARSEABLE_DATA_MEDIA_TYPES = ::T.let(nil, ::T.untyped) -end + def self.multipart_part_limit=(multipart_part_limit); end -module Rack::Request::Helpers -end + def self.param_depth_limit(); end -class Rack::Request - def self.ip_filter(); end + def self.param_depth_limit=(v); end - def self.ip_filter=(ip_filter); end -end + def self.parse_cookies(env); end -class Rack::Response - CHUNKED = ::T.let(nil, ::T.untyped) - STATUS_WITH_NO_ENTITY_BODY = ::T.let(nil, ::T.untyped) -end + def self.parse_cookies_header(header); end -class Rack::Runtime - FORMAT_STRING = ::T.let(nil, ::T.untyped) - HEADER_NAME = ::T.let(nil, ::T.untyped) -end + def self.parse_nested_query(qs, d=T.unsafe(nil)); end -class Rack::Session::Abstract::Persisted - DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) -end + def self.parse_query(qs, d=T.unsafe(nil), &unescaper); end -class Rack::Session::Abstract::SessionHash - Unspecified = ::T.let(nil, ::T.untyped) -end + def self.q_values(q_value_header); end -class Rack::Session::Cookie::SessionId - RUBYGEMS_ACTIVATION_MONITOR = ::T.let(nil, ::T.untyped) -end + def self.rfc2109(time); end -class Rack::Session::Pool - DEFAULT_OPTIONS = ::T.let(nil, ::T.untyped) -end + def self.rfc2822(time); end -class Rack::Session::SessionId - ID_VERSION = ::T.let(nil, ::T.untyped) -end + def self.secure_compare(a, b); end -class Rack::ShowExceptions - CONTEXT = ::T.let(nil, ::T.untyped) - TEMPLATE = ::T.let(nil, ::T.untyped) -end + def self.select_best_encoding(available_encodings, accept_encoding); end -class Rack::ShowStatus - TEMPLATE = ::T.let(nil, ::T.untyped) -end + def self.set_cookie_header!(header, key, value); end -module Rack::Utils - COMMON_SEP = ::T.let(nil, ::T.untyped) - DEFAULT_SEP = ::T.let(nil, ::T.untyped) - ESCAPE_HTML = ::T.let(nil, ::T.untyped) - ESCAPE_HTML_PATTERN = ::T.let(nil, ::T.untyped) - HTTP_STATUS_CODES = ::T.let(nil, ::T.untyped) - NULL_BYTE = ::T.let(nil, ::T.untyped) - PATH_SEPS = ::T.let(nil, ::T.untyped) - STATUS_WITH_NO_ENTITY_BODY = ::T.let(nil, ::T.untyped) - SYMBOL_TO_STATUS_CODE = ::T.let(nil, ::T.untyped) -end + def self.status_code(status); end -Rack::Utils::InvalidParameterError = Rack::QueryParser::InvalidParameterError + def self.unescape(s, encoding=T.unsafe(nil)); end -Rack::Utils::KeySpaceConstrainedParams = Rack::QueryParser::Params + def self.unescape_path(s); end -Rack::Utils::ParameterTypeError = Rack::QueryParser::ParameterTypeError + def self.valid_path?(path); end +end + +module Rack + def self.release(); end + + def self.version(); end +end module Rake EARLY = ::T.let(nil, ::T.untyped) @@ -5755,33 +7802,15 @@ end RakeFileUtils = Rake::FileUtilsExt -class Random - def self.bytes(arg); end -end - -class Range - def %(arg); end - - def entries(); end - - def to_a(); end -end - module RbConfig def self.expand(val, config=T.unsafe(nil)); end - def self.fire_update!(key, val, mkconf=T.unsafe(nil), conf=T.unsafe(nil)); end - def self.ruby(); end end class Ripper def column(); end - def debug_output(); end - - def debug_output=(debug_output); end - def encoding(); end def end_seen?(); end @@ -5798,8 +7827,6 @@ class Ripper def state(); end - def token(); end - def yydebug(); end def yydebug=(yydebug); end @@ -5819,7 +7846,6 @@ class Ripper EXPR_LABEL = ::T.let(nil, ::T.untyped) EXPR_LABELED = ::T.let(nil, ::T.untyped) EXPR_MID = ::T.let(nil, ::T.untyped) - EXPR_NONE = ::T.let(nil, ::T.untyped) EXPR_VALUE = ::T.let(nil, ::T.untyped) PARSER_EVENT_TABLE = ::T.let(nil, ::T.untyped) SCANNER_EVENT_TABLE = ::T.let(nil, ::T.untyped) @@ -5831,12 +7857,8 @@ class Ripper::Filter end class Ripper::Lexer - def errors(); end - def lex(); end - def scan(); end - def tokenize(); end end @@ -5845,11 +7867,7 @@ class Ripper::Lexer::Elem def event=(_); end - def initialize(pos, event, tok, state, message=T.unsafe(nil)); end - - def message(); end - - def message=(_); end + def initialize(pos, event, tok, state); end def pos(); end @@ -5930,14 +7948,10 @@ class Ripper::SexpBuilder def on_args_add_star(*args); end - def on_args_forward(*args); end - def on_args_new(*args); end def on_array(*args); end - def on_aryptn(*args); end - def on_assign(*args); end def on_assign_error(*args); end @@ -6044,8 +8058,6 @@ class Ripper::SexpBuilder def on_heredoc_end(tok); end - def on_hshptn(*args); end - def on_ident(tok); end def on_if(*args); end @@ -6060,8 +8072,6 @@ class Ripper::SexpBuilder def on_imaginary(tok); end - def on_in(*args); end - def on_int(tok); end def on_ivar(tok); end @@ -6114,8 +8124,6 @@ class Ripper::SexpBuilder def on_nl(tok); end - def on_nokw_param(*args); end - def on_op(tok); end def on_opassign(*args); end @@ -6329,21 +8337,6 @@ class Ripper def self.token_match(src, pattern); end end -class RubyVM::AbstractSyntaxTree::Node - def pretty_print_children(q, names=T.unsafe(nil)); end -end - -module RubyVM::MJIT -end - -module RubyVM::MJIT - def self.enabled?(); end - - def self.pause(*arg); end - - def self.resume(); end -end - ScanError = StringScanner::Error class Set @@ -6365,24 +8358,80 @@ class Set InspectKey = ::T.let(nil, ::T.untyped) end -module SimpleCov - VERSION = ::T.let(nil, ::T.untyped) -end +module SimpleCov + VERSION = ::T.let(nil, ::T.untyped) +end + +module SimpleCov::Configuration + DEFAULT_COVERAGE_CRITERION = ::T.let(nil, ::T.untyped) + SUPPORTED_COVERAGE_CRITERIA = ::T.let(nil, ::T.untyped) +end + +module SimpleCov::ExitCodes + EXCEPTION = ::T.let(nil, ::T.untyped) + MAXIMUM_COVERAGE_DROP = ::T.let(nil, ::T.untyped) + MINIMUM_COVERAGE = ::T.let(nil, ::T.untyped) + SUCCESS = ::T.let(nil, ::T.untyped) +end + +class SimpleCov::ExitCodes::MaximumCoverageDropCheck + MAX_DROP_ACCURACY = ::T.let(nil, ::T.untyped) +end + +class SimpleCov::Formatter::Console + def branches_missed(missed_branches); end + + def colorize(s); end + + def format(result); end + + def include_output_style(); end + + def missed(missed_lines); end + + def pct(number); end + + def show_branch_coverage?(result); end + + def trunc(str); end + + def use_colors?(); end + ATTRIBUTES = ::T.let(nil, ::T.untyped) + VERSION = ::T.let(nil, ::T.untyped) +end + +class SimpleCov::Formatter::Console + def self.max_lines(); end + + def self.max_lines=(max_lines); end + + def self.max_rows(); end + + def self.max_rows=(max_rows); end + + def self.missing_len(); end + + def self.missing_len=(missing_len); end + + def self.output_style(); end + + def self.output_style=(output_style); end + + def self.show_covered(); end + + def self.show_covered=(show_covered); end + + def self.sort(); end + + def self.sort=(sort); end + + def self.table_options(); end -module SimpleCov::Configuration - DEFAULT_COVERAGE_CRITERION = ::T.let(nil, ::T.untyped) - SUPPORTED_COVERAGE_CRITERIA = ::T.let(nil, ::T.untyped) -end + def self.table_options=(table_options); end -module SimpleCov::ExitCodes - EXCEPTION = ::T.let(nil, ::T.untyped) - MAXIMUM_COVERAGE_DROP = ::T.let(nil, ::T.untyped) - MINIMUM_COVERAGE = ::T.let(nil, ::T.untyped) - SUCCESS = ::T.let(nil, ::T.untyped) -end + def self.use_colors(); end -class SimpleCov::ExitCodes::MaximumCoverageDropCheck - MAX_DROP_ACCURACY = ::T.let(nil, ::T.untyped) + def self.use_colors=(use_colors); end end class SimpleCov::Formatter::HTMLFormatter @@ -6612,30 +8661,11 @@ module Socket::Constants TCP_NOPUSH = ::T.let(nil, ::T.untyped) end -class SortedSet - def initialize(*args, &block); end -end - -class SortedSet - def self.setup(); end -end - -module StreamChat - DEFAULT_BLOCKLIST = ::T.let(nil, ::T.untyped) - HARD_DELETE = ::T.let(nil, ::T.untyped) - SOFT_DELETE = ::T.let(nil, ::T.untyped) -end - class StreamChat::Channel extend ::T::Private::Methods::MethodHooks extend ::T::Private::Methods::SingletonMethodHooks end -class StreamChat::Client - DEFAULT_BASE_URL = ::T.let(nil, ::T.untyped) - DEFAULT_TIMEOUT = ::T.let(nil, ::T.untyped) -end - class StreamChat::Client extend ::T::Private::Methods::MethodHooks extend ::T::Private::Methods::SingletonMethodHooks @@ -6663,34 +8693,27 @@ end class String include ::JSON::Ext::Generator::GeneratorMethods::String + def ansi(*codes); end + + def ansi!(*codes); end + def shellescape(); end def shellsplit(); end -end -class StringIO - def set_encoding_by_bom(); end - VERSION = ::T.let(nil, ::T.untyped) + def unansi(); end + + def unansi!(); end end class StringScanner def bol?(); end - def fixed_anchor?(); end - def initialize(*arg); end Id = ::T.let(nil, ::T.untyped) Version = ::T.let(nil, ::T.untyped) end -class Struct - def deconstruct(); end - - def deconstruct_keys(arg); end - - def filter(*arg); end -end - Struct::Group = Etc::Group Struct::Passwd = Etc::Passwd @@ -6711,16 +8734,304 @@ end class Tempfile::Remover end -class TracePoint - def eval_script(); end +module Terminal +end + +class Terminal::Table + def <<(array); end + + def ==(other); end + + def add_row(array); end + + def add_separator(border_type: T.unsafe(nil)); end + + def align_column(n, alignment); end + + def cell_padding(); end + + def cell_spacing(); end + + def column(n, method=T.unsafe(nil), array=T.unsafe(nil)); end + + def column_width(n); end + + def column_with_headings(n, method=T.unsafe(nil)); end + + def columns(); end + + def elaborate_rows(); end + + def headings(); end + + def headings=(arrays); end + + def initialize(options=T.unsafe(nil), &block); end + + def length_of_column(n); end + + def number_of_columns(); end + + def render(); end + + def rows(); end + + def rows=(array); end + + def style(); end + + def style=(options); end + + def title(); end + + def title=(title); end + VERSION = ::T.let(nil, ::T.untyped) +end + +class Terminal::Table::AsciiBorder + def horizontal(_type); end + + def vertical(); end + HORIZONTALS = ::T.let(nil, ::T.untyped) + INTERSECTIONS = ::T.let(nil, ::T.untyped) + VERTICALS = ::T.let(nil, ::T.untyped) +end + +class Terminal::Table::AsciiBorder +end + +class Terminal::Table::Border + def [](key); end + + def []=(key, val); end + + def bottom(); end + + def bottom=(bottom); end + + def data(); end + + def data=(data); end + + def left(); end + + def left=(left); end + + def maybeleft(key); end + + def mayberight(key); end + + def remove_horizontals(); end + + def remove_verticals(); end + + def right(); end + + def right=(right); end + + def top(); end + + def top=(top); end +end + +class Terminal::Table::Border +end + +class Terminal::Table::Cell + def align(val, position, length); end + + def alignment(); end + + def alignment=(val); end + + def alignment?(); end + + def colspan(); end + + def initialize(options=T.unsafe(nil)); end + + def lines(); end + + def render(line=T.unsafe(nil)); end + + def to_s(line=T.unsafe(nil)); end + + def value(); end + + def value_for_column_width_recalc(); end + + def width(); end +end + +class Terminal::Table::Cell +end + +class Terminal::Table::MarkdownBorder +end + +class Terminal::Table::MarkdownBorder +end + +class Terminal::Table::Row + def <<(item); end + + def [](index); end + + def add_cell(item); end + + def cells(); end + + def crossings(); end + + def height(); end + + def initialize(table, array=T.unsafe(nil), **_kwargs); end + + def number_of_columns(); end + + def render(); end + + def table(); end +end + +class Terminal::Table::Row +end + +class Terminal::Table::Separator + def border_type(); end + + def border_type=(border_type); end + + def implicit(); end + + def initialize(*args, border_type: T.unsafe(nil), implicit: T.unsafe(nil)); end + + def save_adjacent_rows(prevrow, nextrow); end +end + +class Terminal::Table::Separator +end + +class Terminal::Table::Style + def alignment(); end + + def alignment=(alignment); end + + def all_separators(); end + + def all_separators=(all_separators); end + + def apply(options); end + + def border(); end + + def border=(val); end + + def border_bottom(); end + + def border_bottom=(val); end + + def border_i=(val); end + + def border_left(); end + + def border_left=(val); end + + def border_right(); end + + def border_right=(val); end + + def border_top(); end + + def border_top=(val); end + + def border_x=(val); end + + def border_y(); end + + def border_y=(val); end + + def border_y_width(); end + + def horizontal(*args, &block); end + + def initialize(options=T.unsafe(nil)); end + + def margin_left(); end + + def margin_left=(margin_left); end + + def on_change(attr); end + + def padding_left(); end + + def padding_left=(padding_left); end + + def padding_right(); end + + def padding_right=(padding_right); end + + def remove_horizontals(*args, &block); end + + def remove_verticals(*args, &block); end + + def vertical(*args, &block); end + + def width(); end + + def width=(width); end +end + +class Terminal::Table::Style + extend ::Forwardable + def self.defaults(); end + + def self.defaults=(options); end +end + +module Terminal::Table::TableHelper + def table(headings=T.unsafe(nil), *rows, &block); end +end + +module Terminal::Table::TableHelper +end + +class Terminal::Table::UnicodeBorder + def horizontal(type); end + + def vertical(); end + ALLOWED_SEPARATOR_BORDER_STYLES = ::T.let(nil, ::T.untyped) + HORIZONTALS = ::T.let(nil, ::T.untyped) + INTERSECTIONS = ::T.let(nil, ::T.untyped) + VERTICALS = ::T.let(nil, ::T.untyped) +end + +class Terminal::Table::UnicodeBorder +end + +class Terminal::Table::UnicodeRoundBorder +end + +class Terminal::Table::UnicodeRoundBorder +end + +class Terminal::Table::UnicodeThickEdgeBorder +end + +class Terminal::Table::UnicodeThickEdgeBorder +end + +module Terminal::Table::Util +end - def instruction_sequence(); end +module Terminal::Table::Util + def self.ansi_escape(line); end +end - def parameters(); end +class Terminal::Table end -class TracePoint - def self.new(*events); end +module Terminal end class TrueClass @@ -6739,21 +9050,6 @@ class URI::FTP def self.new2(user, password, host, port, path, typecode=T.unsafe(nil), arg_check=T.unsafe(nil)); end end -class URI::File - def check_password(user); end - - def check_user(user); end - - def check_userinfo(user); end - - def set_userinfo(v); end - COMPONENT = ::T.let(nil, ::T.untyped) - DEFAULT_PORT = ::T.let(nil, ::T.untyped) -end - -class URI::File -end - class URI::HTTP def buffer_open(buf, proxy, options); end end @@ -6822,8 +9118,32 @@ end module URI extend ::URI::Escape def self.get_encoding(label); end +end + +module Unicode +end + +class Unicode::DisplayWidth + def get_config(**kwargs); end + + def initialize(ambiguous: T.unsafe(nil), overwrite: T.unsafe(nil), emoji: T.unsafe(nil)); end + + def of(string, **kwargs); end + DATA_DIRECTORY = ::T.let(nil, ::T.untyped) + DEPTHS = ::T.let(nil, ::T.untyped) + INDEX = ::T.let(nil, ::T.untyped) + INDEX_FILENAME = ::T.let(nil, ::T.untyped) + UNICODE_VERSION = ::T.let(nil, ::T.untyped) + VERSION = ::T.let(nil, ::T.untyped) +end + +class Unicode::DisplayWidth + def self.emoji_extra_width_of(string, ambiguous=T.unsafe(nil), overwrite=T.unsafe(nil), _=T.unsafe(nil)); end + + def self.of(string, ambiguous=T.unsafe(nil), overwrite=T.unsafe(nil), options=T.unsafe(nil)); end +end - def self.open(name, *rest, &block); end +module Unicode end module UnicodeNormalize @@ -8591,7 +10911,7 @@ end class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP def add_html(tag, name); end - def add_regexp_handling(pattern, name); end + def add_special(pattern, name); end def add_word_pair(start, stop, name); end @@ -8632,7 +10952,7 @@ end class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::AttributeManager def add_html(tag, name); end - def add_regexp_handling(pattern, name); end + def add_special(pattern, name); end def add_word_pair(start, stop, name); end @@ -8648,7 +10968,7 @@ class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::AttributeManager def convert_html(str, attrs); end - def convert_regexp_handlings(str, attrs); end + def convert_specials(str, attrs); end def copy_string(start_pos, end_pos); end @@ -8664,7 +10984,7 @@ class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::AttributeManager def protectable(); end - def regexp_handlings(); end + def special(); end def split_into_flow(); end @@ -8686,7 +11006,7 @@ class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::Attributes def each_name_of(bitmap); end - def regexp_handling(); end + def special(); end end class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::Attributes @@ -8747,9 +11067,9 @@ end class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::Formatter def accept_document(document); end - def add_regexp_handling_RDOCLINK(); end + def add_special_RDOCLINK(); end - def add_regexp_handling_TIDYLINK(); end + def add_special_TIDYLINK(); end def add_tag(name, start, stop); end @@ -8759,7 +11079,7 @@ class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::Formatter def convert_flow(flow); end - def convert_regexp_handling(target); end + def convert_special(special); end def convert_string(string); end @@ -8931,6 +11251,8 @@ class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::Parser def build_verbatim(margin); end + def char_pos(byte_offset); end + def debug(); end def debug=(debug); end @@ -8947,6 +11269,8 @@ class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::Parser def skip(token_type, error=T.unsafe(nil)); end + def token_pos(byte_offset); end + def tokenize(input); end def tokens(); end @@ -8961,27 +11285,6 @@ end class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::Parser::Error end -class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::Parser::MyStringScanner - def [](i); end - - def eos?(); end - - def initialize(input); end - - def matched(); end - - def newline!(); end - - def pos(); end - - def scan(re); end - - def unscan(s); end -end - -class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::Parser::MyStringScanner -end - class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::Parser::ParseError end @@ -9043,7 +11346,14 @@ end class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::Raw end -class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::RegexpHandling +class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::Rule + def accept(visitor); end +end + +class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::Rule +end + +class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::Special def ==(o); end def initialize(type, text); end @@ -9055,14 +11365,7 @@ class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::RegexpHandling def type(); end end -class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::RegexpHandling -end - -class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::Rule - def accept(visitor); end -end - -class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::Rule +class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::Special end class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::ToAnsi @@ -9117,13 +11420,13 @@ class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::ToHtml def handle_RDOCLINK(url); end - def handle_regexp_HARD_BREAK(target); end + def handle_special_HARD_BREAK(special); end - def handle_regexp_HYPERLINK(target); end + def handle_special_HYPERLINK(special); end - def handle_regexp_RDOCLINK(target); end + def handle_special_RDOCLINK(special); end - def handle_regexp_TIDYLINK(target); end + def handle_special_TIDYLINK(special); end def html_list_name(list_type, open_tag); end @@ -9155,13 +11458,13 @@ class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::ToHtmlCrossref def context=(context); end - def cross_reference(name, text=T.unsafe(nil), code=T.unsafe(nil)); end + def cross_reference(name, text=T.unsafe(nil)); end - def handle_regexp_CROSSREF(target); end + def handle_special_CROSSREF(special); end def initialize(options, from_path, context, markup=T.unsafe(nil)); end - def link(name, text, code=T.unsafe(nil)); end + def link(name, text); end def show_hash(); end @@ -9186,7 +11489,7 @@ class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::ToHtmlSnippet def characters(); end - def handle_regexp_CROSSREF(target); end + def handle_special_CROSSREF(special); end def initialize(options, characters=T.unsafe(nil), paragraphs=T.unsafe(nil), markup=T.unsafe(nil)); end @@ -9260,11 +11563,11 @@ class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::ToLabel def end_accepting(*node); end - def handle_regexp_CROSSREF(target); end + def handle_special_CROSSREF(special); end - def handle_regexp_HARD_BREAK(*node); end + def handle_special_HARD_BREAK(*node); end - def handle_regexp_TIDYLINK(target); end + def handle_special_TIDYLINK(special); end def initialize(markup=T.unsafe(nil)); end @@ -9281,9 +11584,9 @@ class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::ToMarkdown def handle_rdoc_link(url); end - def handle_regexp_RDOCLINK(target); end + def handle_special_RDOCLINK(special); end - def handle_regexp_TIDYLINK(target); end + def handle_special_TIDYLINK(special); end end class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::ToMarkdown @@ -9318,9 +11621,9 @@ class YARD::Templates::Helpers::Markup::RDocMarkup::MARKUP::ToRdoc def end_accepting(); end - def handle_regexp_HARD_BREAK(target); end + def handle_special_HARD_BREAK(special); end - def handle_regexp_SUPPRESSED_CROSSREF(target); end + def handle_special_SUPPRESSED_CROSSREF(special); end def indent(); end @@ -9702,6 +12005,10 @@ end class YARD::Verifier end +module YARD + def self.ruby31?(); end +end + class Zlib::Deflate def initialize(*arg); end end diff --git a/sorbet/rbi/todo.rbi b/sorbet/rbi/todo.rbi index f8fec03..ad1daaf 100644 --- a/sorbet/rbi/todo.rbi +++ b/sorbet/rbi/todo.rbi @@ -4,7 +4,6 @@ # typed: strong module Rack::QueryParser::InvalidParameterError; end module Rack::QueryParser::ParameterTypeError; end -module Rack::QueryParser::Params; end module T::CompatibilityPatches::RSpecCompatibility::MethodDoubleExtensions; end module T::CompatibilityPatches::RSpecCompatibility::RecorderExtensions; end module T::Private::Methods::MethodHooks; end diff --git a/spec/channel_spec.rb b/spec/channel_spec.rb index d61f52e..a1a6c3a 100644 --- a/spec/channel_spec.rb +++ b/spec/channel_spec.rb @@ -20,27 +20,39 @@ def loop_times(times) before(:all) do @client = StreamChat::Client.from_env + @created_users = [] end before(:each) do @random_users = [{ id: SecureRandom.uuid, name: 'b' }, { id: SecureRandom.uuid, name: 'a' }] - @client.upsert_users(@random_users) - @random_user = { id: SecureRandom.uuid } - response = @client.upsert_user(@random_user) - expect(response).to include 'users' - expect(response['users']).to include @random_user[:id] + + users_to_insert = [@random_users[0], @random_users[1], @random_user] + + @created_users.push(*users_to_insert.map { |u| u[:id] }) + @client.upsert_users(users_to_insert) @channel = @client.channel('messaging', channel_id: SecureRandom.uuid, data: { 'test' => true, 'language' => 'ruby' }) @channel.create(@random_user[:id]) end after(:each) do - @client.delete_users(@random_users.map { |u| u[:id] } + [@random_user[:id]], user: StreamChat::HARD_DELETE, messages: StreamChat::HARD_DELETE) - begin - @channel.delete - rescue StreamChat::StreamAPIException - # if the channel is already deleted by the test, we can ignore the error + @channel.delete + rescue StreamChat::StreamAPIException + # if the channel is already deleted by the test, we can ignore the error + end + + after(:all) do + curr_idx = 0 + batch_size = 25 + + slice = @created_users.slice(0, batch_size) + + while !slice.nil? && !slice.empty? + @client.delete_users(slice, user: StreamChat::HARD_DELETE, messages: StreamChat::HARD_DELETE) + + curr_idx += batch_size + slice = @created_users.slice(curr_idx, batch_size) end end diff --git a/spec/client_spec.rb b/spec/client_spec.rb index 9f42fef..bf2942f 100644 --- a/spec/client_spec.rb +++ b/spec/client_spec.rb @@ -23,6 +23,8 @@ def loop_times(times) before(:all) do @client = StreamChat::Client.from_env + @created_users = [] + @fellowship_of_the_ring = [ { id: 'frodo-baggins', name: 'Frodo Baggins', race: 'Hobbit', age: 50 }, { id: 'sam-gamgee', name: 'Samwise Gamgee', race: 'Hobbit', age: 38 }, @@ -38,14 +40,25 @@ def loop_times(times) before(:each) do @random_users = [{ id: SecureRandom.uuid }, { id: SecureRandom.uuid }] @random_user = { id: SecureRandom.uuid } - response = @client.upsert_user(@random_user) - expect(response).to include 'users' - expect(response['users']).to include @random_user[:id] - @client.upsert_users(@random_users) + users_to_insert = [@random_users[0], @random_users[1], @random_user] + + @created_users.push(*users_to_insert.map { |u| u[:id] }) + + @client.upsert_users(users_to_insert) end - after(:each) do - @client.delete_users(@random_users.map { |u| u[:id] } + [@random_user[:id]], user: StreamChat::HARD_DELETE, messages: StreamChat::HARD_DELETE) + after(:all) do + curr_idx = 0 + batch_size = 25 + + slice = @created_users.slice(0, batch_size) + + while !slice.nil? && !slice.empty? + @client.delete_users(slice, user: StreamChat::HARD_DELETE, messages: StreamChat::HARD_DELETE) + + curr_idx += batch_size + slice = @created_users.slice(curr_idx, batch_size) + end end it 'properly sets up a new client' do @@ -403,6 +416,7 @@ def loop_times(times) text = SecureRandom.uuid @channel.send_message({ text: text }, 'legolas') resp = @client.search({ members: { '$in' => ['legolas'] } }, text) + p resp expect(resp['results'].length).to eq(1) end diff --git a/stream-chat.gemspec b/stream-chat.gemspec index f29c4ea..77f1825 100644 --- a/stream-chat.gemspec +++ b/stream-chat.gemspec @@ -26,14 +26,14 @@ Gem::Specification.new do |gem| 'source_code_uri' => 'https://github.com/GetStream/stream-chat-ruby' } - gem.add_dependency 'faraday' - gem.add_dependency 'faraday-multipart' - gem.add_dependency 'faraday-net_http_persistent' - gem.add_dependency 'jwt' - gem.add_dependency 'net-http-persistent' - gem.add_dependency 'sorbet-runtime' - gem.add_development_dependency 'rake' - gem.add_development_dependency 'rspec' - gem.add_development_dependency 'simplecov' - gem.add_development_dependency 'simplecov-console' + gem.add_dependency 'faraday', '= 1.10.0' + gem.add_dependency 'faraday-multipart', '= 1.0.3' + gem.add_dependency 'faraday-net_http_persistent', '= 1.2.0' + gem.add_dependency 'jwt', '= 2.3.0' + gem.add_dependency 'net-http-persistent', '= 4.0.1' + gem.add_dependency 'sorbet-runtime', '= 0.5.10354' + gem.add_development_dependency 'rake', '= 13.0.6' + gem.add_development_dependency 'rspec', '= 3.11.0' + gem.add_development_dependency 'simplecov', '= 0.21.2' + gem.add_development_dependency 'simplecov-console', '= 0.9.1' end