From eb3eb209d9ea8853bb8588fe197a58c7774730ea Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Sun, 7 Jun 2020 20:35:55 +0100 Subject: [PATCH 01/82] os/mac/xcode: support Xcode 11.5 --- Library/Homebrew/os/mac/xcode.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Library/Homebrew/os/mac/xcode.rb b/Library/Homebrew/os/mac/xcode.rb index 15ba578256..0c27175abe 100644 --- a/Library/Homebrew/os/mac/xcode.rb +++ b/Library/Homebrew/os/mac/xcode.rb @@ -13,9 +13,9 @@ module OS # CI systems have been updated. # This may be a beta version for a beta macOS. def latest_version - latest = "11.4.1" + latest = "11.5" case MacOS.version - when "10.15" then "11.4.1" + when "10.15" then latest when "10.14" then "11.3.1" when "10.13" then "10.1" when "10.12" then "9.2" @@ -173,7 +173,7 @@ module OS # installed CLT version. This is useful as they are packaged # simultaneously so workarounds need to apply to both based on their # comparable version. - latest = "11.4.1" + latest = "11.5" case (DevelopmentTools.clang_version.to_f * 10).to_i when 110 then latest when 100 then "10.3" From 3b0359706f2d08719b826c71f88c6232a84bc007 Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Mon, 8 Jun 2020 17:48:28 +0200 Subject: [PATCH 02/82] bintray: automatically run brew mirror if needed --- Library/Homebrew/bintray.rb | 32 +++++++++++++++++++++++++++++ Library/Homebrew/dev-cmd/mirror.rb | 31 +++------------------------- Library/Homebrew/dev-cmd/pr-pull.rb | 30 +++++++++++++++++++++++---- 3 files changed, 61 insertions(+), 32 deletions(-) diff --git a/Library/Homebrew/bintray.rb b/Library/Homebrew/bintray.rb index 8d4a0ea154..c9efcd47ca 100644 --- a/Library/Homebrew/bintray.rb +++ b/Library/Homebrew/bintray.rb @@ -56,6 +56,38 @@ class Bintray %w[homebrew linuxbrew].include? org end + def stable_mirrored?(url) + headers, = curl_output("--connect-timeout", "15", "--location", "--head", url) + status_code = headers.scan(%r{^HTTP/.* (\d+)}).last.first + status_code.start_with?("2") + end + + def mirror_formula(formula, repo: "mirror") + package = Utils::Bottles::Bintray.package formula.name + + create_package(repo: repo, package: package) unless package_exists?(repo: repo, package: package) + + formula.downloader.fetch + + version = ERB::Util.url_encode(formula.pkg_version) + filename = ERB::Util.url_encode(formula.downloader.basename) + destination_url = "https://dl.bintray.com/#{@bintray_org}/#{repo}/#{filename}" + + odebug "Uploading to #{destination_url}" + + upload( + formula.downloader.cached_location, + repo: repo, + package: package, + version: version, + sha256: formula.stable.checksum, + remote_file: filename, + ) + publish(repo: repo, package: package, version: version) + + destination_url + end + def create_package(repo:, package:, **extra_data_args) url = "#{API_URL}/packages/#{@bintray_org}/#{repo}" data = { name: package, public_download_numbers: true } diff --git a/Library/Homebrew/dev-cmd/mirror.rb b/Library/Homebrew/dev-cmd/mirror.rb index 9abb83302b..6ef150f922 100644 --- a/Library/Homebrew/dev-cmd/mirror.rb +++ b/Library/Homebrew/dev-cmd/mirror.rb @@ -26,37 +26,12 @@ module Homebrew mirror_args.parse bintray_org = args.bintray_org || "homebrew" - bintray_repo = "mirror" bintray = Bintray.new(org: bintray_org) - args.formulae.each do |f| - bintray_package = Utils::Bottles::Bintray.package f.name - - unless bintray.package_exists?(repo: bintray_repo, package: bintray_package) - bintray.create_package repo: bintray_repo, package: bintray_package - end - - downloader = f.downloader - - downloader.fetch - - filename = ERB::Util.url_encode(downloader.basename) - - destination_url = "https://dl.bintray.com/#{bintray_org}/#{bintray_repo}/#{filename}" - ohai "Uploading to #{destination_url}" - - version = ERB::Util.url_encode(f.pkg_version) - bintray.upload( - downloader.cached_location, - repo: bintray_repo, - package: bintray_package, - version: version, - sha256: f.stable.checksum, - remote_file: filename, - ) - bintray.publish(repo: bintray_repo, package: bintray_package, version: version) - ohai "Mirrored #{filename}!" + args.formulae.each do |formula| + mirror_url = bintray.mirror_formula(formula) + ohai "Mirrored #{formula.full_name} to #{mirror_url}!" end end end diff --git a/Library/Homebrew/dev-cmd/pr-pull.rb b/Library/Homebrew/dev-cmd/pr-pull.rb index 48495a2b5d..06b190dc56 100644 --- a/Library/Homebrew/dev-cmd/pr-pull.rb +++ b/Library/Homebrew/dev-cmd/pr-pull.rb @@ -204,18 +204,40 @@ module Homebrew url = GitHub.get_artifact_url(user, repo, pr, workflow_id: workflow, artifact_name: artifact) download_artifact(url, dir, pr) + json_files = Dir["*.json"] + if Homebrew.args.dry_run? - puts "brew bottle --merge --write #{Dir["*.json"].join " "}" + puts "brew bottle --merge --write #{json_files.join " "}" else - quiet_system "#{HOMEBREW_PREFIX}/bin/brew", "bottle", "--merge", "--write", *Dir["*.json"] + quiet_system "#{HOMEBREW_PREFIX}/bin/brew", "bottle", "--merge", "--write", *json_files end next if args.no_upload? if Homebrew.args.dry_run? - puts "Upload bottles described by these JSON files to Bintray:\n #{Dir["*.json"].join("\n ")}" + puts "Upload bottles described by these JSON files to Bintray:\n #{json_files.join("\n ")}" else - bintray.upload_bottle_json Dir["*.json"], publish_package: !args.no_publish? + bintray.upload_bottle_json json_files, publish_package: !args.no_publish? + end + + bottles_hash = json_files.reduce({}) do |hash, json_file| + hash.deep_merge(JSON.parse(IO.read(json_file))) + end + + bottles_hash.each do |formula_name, _| + formula = Formula[formula_name] + stable_urls = [formula.stable.url] + formula.stable.mirrors + stable_urls.grep(%r{^https://dl.bintray.com/homebrew/mirror/}) do |mirror_url| + if Homebrew.args.dry_run? + puts "Mirror formulae sources described by these JSON files to Bintray:\n #{json_files.join("\n ")}" + next + end + + next if bintray.stable_mirrored?(mirror_url) + + mirror_url = bintray.mirror_formula(formula) + ohai "Mirrored #{formula.full_name} to #{mirror_url}!" + end end end end From b5584fc03516189befad312aead01c2c3dc002eb Mon Sep 17 00:00:00 2001 From: Shaun Jackman Date: Tue, 16 Jun 2020 21:55:37 -0700 Subject: [PATCH 03/82] update: Update the symbolic ref origin/HEAD --- Library/Homebrew/cmd/update-reset.sh | 1 + Library/Homebrew/cmd/update.sh | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/Library/Homebrew/cmd/update-reset.sh b/Library/Homebrew/cmd/update-reset.sh index 2b8de794a8..70b1977774 100644 --- a/Library/Homebrew/cmd/update-reset.sh +++ b/Library/Homebrew/cmd/update-reset.sh @@ -38,6 +38,7 @@ homebrew-update-reset() { cd "$DIR" || continue ohai "Fetching $DIR..." git fetch --force --tags origin + git remote set-head origin --auto >/dev/null echo ohai "Resetting $DIR..." diff --git a/Library/Homebrew/cmd/update.sh b/Library/Homebrew/cmd/update.sh index 19ece3f2d0..e44e852c40 100644 --- a/Library/Homebrew/cmd/update.sh +++ b/Library/Homebrew/cmd/update.sh @@ -38,6 +38,7 @@ git_init_if_necessary() { git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*" latest_tag="$(git ls-remote --tags --refs -q origin | tail -n1 | cut -f2)" git fetch --force origin --shallow-since="$latest_tag" + git remote set-head origin --auto >/dev/null git reset --hard origin/master SKIP_FETCH_BREW_REPOSITORY=1 set +e @@ -59,6 +60,7 @@ git_init_if_necessary() { git config remote.origin.url "$HOMEBREW_CORE_GIT_REMOTE" git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*" git fetch --force --depth=1 origin refs/heads/master:refs/remotes/origin/master + git remote set-head origin --auto >/dev/null git reset --hard origin/master SKIP_FETCH_CORE_REPOSITORY=1 set +e @@ -84,6 +86,11 @@ upstream_branch() { local upstream_branch upstream_branch="$(git symbolic-ref refs/remotes/origin/HEAD 2>/dev/null)" + if [[ -z "$upstream_branch" ]] + then + git remote set-head origin --auto >/dev/null + upstream_branch="$(git symbolic-ref refs/remotes/origin/HEAD 2>/dev/null)" + fi upstream_branch="${upstream_branch#refs/remotes/origin/}" [[ -z "$upstream_branch" ]] && upstream_branch="master" echo "$upstream_branch" From 4a5262441cf5c49990951c9dd943fc25166dd9a9 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Wed, 17 Jun 2020 07:43:02 +0000 Subject: [PATCH 04/82] build(deps): bump parallel from 1.19.1 to 1.19.2 in /docs Bumps [parallel](https://github.com/grosser/parallel) from 1.19.1 to 1.19.2. - [Release notes](https://github.com/grosser/parallel/releases) - [Commits](https://github.com/grosser/parallel/compare/v1.19.1...v1.19.2) Signed-off-by: dependabot-preview[bot] --- docs/Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Gemfile.lock b/docs/Gemfile.lock index 25cac331db..1b7c0ffb1f 100644 --- a/docs/Gemfile.lock +++ b/docs/Gemfile.lock @@ -219,7 +219,7 @@ GEM octokit (4.18.0) faraday (>= 0.9) sawyer (~> 0.8.0, >= 0.5.3) - parallel (1.19.1) + parallel (1.19.2) pathutil (0.16.2) forwardable-extended (~> 2.6) public_suffix (3.1.1) From b81816dd912a47fd6262877746a43ae138759883 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Wed, 17 Jun 2020 14:57:17 +0000 Subject: [PATCH 05/82] build(deps): bump activesupport from 6.0.3.1 to 6.0.3.2 in /docs Bumps [activesupport](https://github.com/rails/rails) from 6.0.3.1 to 6.0.3.2. - [Release notes](https://github.com/rails/rails/releases) - [Changelog](https://github.com/rails/rails/blob/v6.0.3.2/activesupport/CHANGELOG.md) - [Commits](https://github.com/rails/rails/compare/v6.0.3.1...v6.0.3.2) Signed-off-by: dependabot-preview[bot] --- docs/Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Gemfile.lock b/docs/Gemfile.lock index 25cac331db..4f98f819e5 100644 --- a/docs/Gemfile.lock +++ b/docs/Gemfile.lock @@ -1,7 +1,7 @@ GEM remote: https://rubygems.org/ specs: - activesupport (6.0.3.1) + activesupport (6.0.3.2) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 0.7, < 2) minitest (~> 5.1) From 39c47463e8c0947e7102584c21f895961b96ad9e Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Wed, 17 Jun 2020 16:15:24 +0000 Subject: [PATCH 06/82] build(deps): bump activesupport in /Library/Homebrew Bumps [activesupport](https://github.com/rails/rails) from 6.0.3.1 to 6.0.3.2. - [Release notes](https://github.com/rails/rails/releases) - [Changelog](https://github.com/rails/rails/blob/v6.0.3.2/activesupport/CHANGELOG.md) - [Commits](https://github.com/rails/rails/compare/v6.0.3.1...v6.0.3.2) Signed-off-by: dependabot-preview[bot] --- Library/Homebrew/Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/Gemfile.lock b/Library/Homebrew/Gemfile.lock index 6c51d2f77e..cf3b08c65d 100644 --- a/Library/Homebrew/Gemfile.lock +++ b/Library/Homebrew/Gemfile.lock @@ -1,7 +1,7 @@ GEM remote: https://rubygems.org/ specs: - activesupport (6.0.3.1) + activesupport (6.0.3.2) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 0.7, < 2) minitest (~> 5.1) From 6b42f279280726c5c8eb63fc8ce4cb6ae1d0ebb5 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 17 Jun 2020 17:32:24 +0100 Subject: [PATCH 07/82] brew vendor-gems: commit updates. --- Library/Homebrew/vendor/bundle/bundler/setup.rb | 4 ++-- .../lib/active_support/actionable_error.rb | 0 .../lib/active_support/array_inquirer.rb | 0 .../lib/active_support/backtrace_cleaner.rb | 0 .../lib/active_support/benchmarkable.rb | 0 .../lib/active_support/builder.rb | 0 .../lib/active_support/callbacks.rb | 0 .../lib/active_support/concern.rb | 0 .../lib/active_support/configurable.rb | 0 .../lib/active_support/core_ext.rb | 0 .../lib/active_support/core_ext/array.rb | 0 .../lib/active_support/core_ext/array/access.rb | 0 .../lib/active_support/core_ext/array/conversions.rb | 0 .../lib/active_support/core_ext/array/extract.rb | 0 .../lib/active_support/core_ext/array/extract_options.rb | 0 .../lib/active_support/core_ext/array/grouping.rb | 0 .../lib/active_support/core_ext/array/inquiry.rb | 0 .../lib/active_support/core_ext/array/prepend_and_append.rb | 0 .../lib/active_support/core_ext/array/wrap.rb | 0 .../lib/active_support/core_ext/benchmark.rb | 0 .../lib/active_support/core_ext/big_decimal.rb | 0 .../lib/active_support/core_ext/big_decimal/conversions.rb | 0 .../lib/active_support/core_ext/class.rb | 0 .../lib/active_support/core_ext/class/attribute.rb | 0 .../lib/active_support/core_ext/class/attribute_accessors.rb | 0 .../lib/active_support/core_ext/class/subclasses.rb | 0 .../lib/active_support/core_ext/date.rb | 0 .../lib/active_support/core_ext/date/acts_like.rb | 0 .../lib/active_support/core_ext/date/blank.rb | 0 .../lib/active_support/core_ext/date/calculations.rb | 0 .../lib/active_support/core_ext/date/conversions.rb | 0 .../lib/active_support/core_ext/date/zones.rb | 0 .../lib/active_support/core_ext/date_and_time/calculations.rb | 0 .../active_support/core_ext/date_and_time/compatibility.rb | 0 .../lib/active_support/core_ext/date_and_time/zones.rb | 0 .../lib/active_support/core_ext/date_time.rb | 0 .../lib/active_support/core_ext/date_time/acts_like.rb | 0 .../lib/active_support/core_ext/date_time/blank.rb | 0 .../lib/active_support/core_ext/date_time/calculations.rb | 0 .../lib/active_support/core_ext/date_time/compatibility.rb | 0 .../lib/active_support/core_ext/date_time/conversions.rb | 0 .../lib/active_support/core_ext/digest.rb | 0 .../lib/active_support/core_ext/digest/uuid.rb | 0 .../lib/active_support/core_ext/enumerable.rb | 0 .../lib/active_support/core_ext/file.rb | 0 .../lib/active_support/core_ext/file/atomic.rb | 0 .../lib/active_support/core_ext/hash.rb | 0 .../lib/active_support/core_ext/hash/compact.rb | 0 .../lib/active_support/core_ext/hash/conversions.rb | 0 .../lib/active_support/core_ext/hash/deep_merge.rb | 0 .../lib/active_support/core_ext/hash/deep_transform_values.rb | 0 .../lib/active_support/core_ext/hash/except.rb | 0 .../lib/active_support/core_ext/hash/indifferent_access.rb | 0 .../lib/active_support/core_ext/hash/keys.rb | 0 .../lib/active_support/core_ext/hash/reverse_merge.rb | 0 .../lib/active_support/core_ext/hash/slice.rb | 0 .../lib/active_support/core_ext/hash/transform_values.rb | 0 .../lib/active_support/core_ext/integer.rb | 0 .../lib/active_support/core_ext/integer/inflections.rb | 0 .../lib/active_support/core_ext/integer/multiple.rb | 0 .../lib/active_support/core_ext/integer/time.rb | 0 .../lib/active_support/core_ext/kernel.rb | 0 .../lib/active_support/core_ext/kernel/concern.rb | 0 .../lib/active_support/core_ext/kernel/reporting.rb | 0 .../lib/active_support/core_ext/kernel/singleton_class.rb | 0 .../lib/active_support/core_ext/load_error.rb | 0 .../lib/active_support/core_ext/marshal.rb | 0 .../lib/active_support/core_ext/module.rb | 0 .../lib/active_support/core_ext/module/aliasing.rb | 0 .../lib/active_support/core_ext/module/anonymous.rb | 0 .../lib/active_support/core_ext/module/attr_internal.rb | 0 .../lib/active_support/core_ext/module/attribute_accessors.rb | 0 .../core_ext/module/attribute_accessors_per_thread.rb | 0 .../lib/active_support/core_ext/module/concerning.rb | 0 .../lib/active_support/core_ext/module/delegation.rb | 0 .../lib/active_support/core_ext/module/deprecation.rb | 0 .../lib/active_support/core_ext/module/introspection.rb | 0 .../lib/active_support/core_ext/module/reachable.rb | 0 .../lib/active_support/core_ext/module/redefine_method.rb | 0 .../lib/active_support/core_ext/module/remove_method.rb | 0 .../lib/active_support/core_ext/name_error.rb | 0 .../lib/active_support/core_ext/numeric.rb | 0 .../lib/active_support/core_ext/numeric/bytes.rb | 0 .../lib/active_support/core_ext/numeric/conversions.rb | 0 .../lib/active_support/core_ext/numeric/inquiry.rb | 0 .../lib/active_support/core_ext/numeric/time.rb | 0 .../lib/active_support/core_ext/object.rb | 0 .../lib/active_support/core_ext/object/acts_like.rb | 0 .../lib/active_support/core_ext/object/blank.rb | 0 .../lib/active_support/core_ext/object/conversions.rb | 0 .../lib/active_support/core_ext/object/deep_dup.rb | 0 .../lib/active_support/core_ext/object/duplicable.rb | 0 .../lib/active_support/core_ext/object/inclusion.rb | 0 .../lib/active_support/core_ext/object/instance_variables.rb | 0 .../lib/active_support/core_ext/object/json.rb | 0 .../lib/active_support/core_ext/object/to_param.rb | 0 .../lib/active_support/core_ext/object/to_query.rb | 0 .../lib/active_support/core_ext/object/try.rb | 0 .../lib/active_support/core_ext/object/with_options.rb | 0 .../lib/active_support/core_ext/range.rb | 0 .../lib/active_support/core_ext/range/compare_range.rb | 0 .../lib/active_support/core_ext/range/conversions.rb | 0 .../lib/active_support/core_ext/range/each.rb | 0 .../lib/active_support/core_ext/range/include_range.rb | 0 .../active_support/core_ext/range/include_time_with_zone.rb | 0 .../lib/active_support/core_ext/range/overlaps.rb | 0 .../lib/active_support/core_ext/regexp.rb | 0 .../lib/active_support/core_ext/securerandom.rb | 0 .../lib/active_support/core_ext/string.rb | 0 .../lib/active_support/core_ext/string/access.rb | 0 .../lib/active_support/core_ext/string/behavior.rb | 0 .../lib/active_support/core_ext/string/conversions.rb | 0 .../lib/active_support/core_ext/string/exclude.rb | 0 .../lib/active_support/core_ext/string/filters.rb | 0 .../lib/active_support/core_ext/string/indent.rb | 0 .../lib/active_support/core_ext/string/inflections.rb | 0 .../lib/active_support/core_ext/string/inquiry.rb | 0 .../lib/active_support/core_ext/string/multibyte.rb | 0 .../lib/active_support/core_ext/string/output_safety.rb | 0 .../lib/active_support/core_ext/string/starts_ends_with.rb | 0 .../lib/active_support/core_ext/string/strip.rb | 0 .../lib/active_support/core_ext/string/zones.rb | 0 .../lib/active_support/core_ext/time.rb | 0 .../lib/active_support/core_ext/time/acts_like.rb | 0 .../lib/active_support/core_ext/time/calculations.rb | 0 .../lib/active_support/core_ext/time/compatibility.rb | 0 .../lib/active_support/core_ext/time/conversions.rb | 0 .../lib/active_support/core_ext/time/zones.rb | 0 .../lib/active_support/core_ext/uri.rb | 0 .../lib/active_support/current_attributes.rb | 0 .../lib/active_support/deprecation.rb | 0 .../lib/active_support/deprecation/behaviors.rb | 0 .../lib/active_support/deprecation/constant_accessor.rb | 0 .../lib/active_support/deprecation/instance_delegator.rb | 0 .../lib/active_support/deprecation/method_wrappers.rb | 0 .../lib/active_support/deprecation/proxy_wrappers.rb | 0 .../lib/active_support/deprecation/reporting.rb | 0 .../lib/active_support/descendants_tracker.rb | 0 .../lib/active_support/digest.rb | 0 .../lib/active_support/duration.rb | 0 .../lib/active_support/encrypted_configuration.rb | 0 .../lib/active_support/encrypted_file.rb | 0 .../lib/active_support/evented_file_update_checker.rb | 0 .../lib/active_support/execution_wrapper.rb | 0 .../lib/active_support/executor.rb | 0 .../lib/active_support/file_update_checker.rb | 0 .../lib/active_support/gem_version.rb | 2 +- .../lib/active_support/gzip.rb | 0 .../lib/active_support/hash_with_indifferent_access.rb | 0 .../lib/active_support/i18n.rb | 0 .../lib/active_support/i18n_railtie.rb | 0 .../lib/active_support/inflections.rb | 0 .../lib/active_support/inflector.rb | 0 .../lib/active_support/inflector/inflections.rb | 0 .../lib/active_support/inflector/methods.rb | 0 .../lib/active_support/inflector/transliterate.rb | 0 .../lib/active_support/key_generator.rb | 0 .../lib/active_support/lazy_load_hooks.rb | 0 .../lib/active_support/locale/en.rb | 0 .../lib/active_support/locale/en.yml | 0 .../lib/active_support/logger.rb | 0 .../lib/active_support/logger_silence.rb | 0 .../lib/active_support/logger_thread_safe_level.rb | 0 .../lib/active_support/message_encryptor.rb | 0 .../lib/active_support/message_verifier.rb | 0 .../lib/active_support/multibyte.rb | 0 .../lib/active_support/notifications.rb | 0 .../lib/active_support/notifications/fanout.rb | 0 .../lib/active_support/notifications/instrumenter.rb | 0 .../lib/active_support/option_merger.rb | 0 .../lib/active_support/ordered_hash.rb | 0 .../lib/active_support/ordered_options.rb | 0 .../lib/active_support/parameter_filter.rb | 0 .../lib/active_support/per_thread_registry.rb | 0 .../lib/active_support/proxy_object.rb | 0 .../lib/active_support/rails.rb | 0 .../lib/active_support/railtie.rb | 0 .../lib/active_support/reloader.rb | 0 .../lib/active_support/rescuable.rb | 0 .../lib/active_support/security_utils.rb | 0 .../lib/active_support/string_inquirer.rb | 0 .../lib/active_support/subscriber.rb | 0 .../lib/active_support/tagged_logging.rb | 0 .../lib/active_support/test_case.rb | 0 .../lib/active_support/time.rb | 0 .../lib/active_support/time_with_zone.rb | 0 .../lib/active_support/values/time_zone.rb | 0 .../lib/active_support/version.rb | 0 .../lib/active_support/xml_mini.rb | 0 .../lib/active_support/xml_mini/jdom.rb | 0 .../lib/active_support/xml_mini/libxml.rb | 0 .../lib/active_support/xml_mini/libxmlsax.rb | 0 .../lib/active_support/xml_mini/nokogiri.rb | 0 .../lib/active_support/xml_mini/nokogirisax.rb | 0 .../lib/active_support/xml_mini/rexml.rb | 0 195 files changed, 3 insertions(+), 3 deletions(-) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/actionable_error.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/array_inquirer.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/backtrace_cleaner.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/benchmarkable.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/builder.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/callbacks.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/concern.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/configurable.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/array.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/array/access.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/array/conversions.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/array/extract.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/array/extract_options.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/array/grouping.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/array/inquiry.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/array/prepend_and_append.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/array/wrap.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/benchmark.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/big_decimal.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/big_decimal/conversions.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/class.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/class/attribute.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/class/attribute_accessors.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/class/subclasses.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/date.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/date/acts_like.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/date/blank.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/date/calculations.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/date/conversions.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/date/zones.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/date_and_time/calculations.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/date_and_time/compatibility.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/date_and_time/zones.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/date_time.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/date_time/acts_like.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/date_time/blank.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/date_time/calculations.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/date_time/compatibility.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/date_time/conversions.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/digest.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/digest/uuid.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/enumerable.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/file.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/file/atomic.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/hash.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/hash/compact.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/hash/conversions.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/hash/deep_merge.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/hash/deep_transform_values.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/hash/except.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/hash/indifferent_access.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/hash/keys.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/hash/reverse_merge.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/hash/slice.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/hash/transform_values.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/integer.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/integer/inflections.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/integer/multiple.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/integer/time.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/kernel.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/kernel/concern.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/kernel/reporting.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/kernel/singleton_class.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/load_error.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/marshal.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/module.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/module/aliasing.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/module/anonymous.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/module/attr_internal.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/module/attribute_accessors.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/module/concerning.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/module/delegation.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/module/deprecation.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/module/introspection.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/module/reachable.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/module/redefine_method.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/module/remove_method.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/name_error.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/numeric.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/numeric/bytes.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/numeric/conversions.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/numeric/inquiry.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/numeric/time.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/object.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/object/acts_like.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/object/blank.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/object/conversions.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/object/deep_dup.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/object/duplicable.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/object/inclusion.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/object/instance_variables.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/object/json.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/object/to_param.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/object/to_query.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/object/try.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/object/with_options.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/range.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/range/compare_range.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/range/conversions.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/range/each.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/range/include_range.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/range/include_time_with_zone.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/range/overlaps.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/regexp.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/securerandom.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/string.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/string/access.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/string/behavior.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/string/conversions.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/string/exclude.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/string/filters.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/string/indent.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/string/inflections.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/string/inquiry.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/string/multibyte.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/string/output_safety.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/string/starts_ends_with.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/string/strip.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/string/zones.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/time.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/time/acts_like.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/time/calculations.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/time/compatibility.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/time/conversions.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/time/zones.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/core_ext/uri.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/current_attributes.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/deprecation.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/deprecation/behaviors.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/deprecation/constant_accessor.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/deprecation/instance_delegator.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/deprecation/method_wrappers.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/deprecation/proxy_wrappers.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/deprecation/reporting.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/descendants_tracker.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/digest.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/duration.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/encrypted_configuration.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/encrypted_file.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/evented_file_update_checker.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/execution_wrapper.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/executor.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/file_update_checker.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/gem_version.rb (95%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/gzip.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/hash_with_indifferent_access.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/i18n.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/i18n_railtie.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/inflections.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/inflector.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/inflector/inflections.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/inflector/methods.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/inflector/transliterate.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/key_generator.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/lazy_load_hooks.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/locale/en.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/locale/en.yml (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/logger.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/logger_silence.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/logger_thread_safe_level.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/message_encryptor.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/message_verifier.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/multibyte.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/notifications.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/notifications/fanout.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/notifications/instrumenter.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/option_merger.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/ordered_hash.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/ordered_options.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/parameter_filter.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/per_thread_registry.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/proxy_object.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/rails.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/railtie.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/reloader.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/rescuable.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/security_utils.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/string_inquirer.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/subscriber.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/tagged_logging.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/test_case.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/time.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/time_with_zone.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/values/time_zone.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/version.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/xml_mini.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/xml_mini/jdom.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/xml_mini/libxml.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/xml_mini/libxmlsax.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/xml_mini/nokogiri.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/xml_mini/nokogirisax.rb (100%) rename Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/{activesupport-6.0.3.1 => activesupport-6.0.3.2}/lib/active_support/xml_mini/rexml.rb (100%) diff --git a/Library/Homebrew/vendor/bundle/bundler/setup.rb b/Library/Homebrew/vendor/bundle/bundler/setup.rb index d027866a4d..c510046594 100644 --- a/Library/Homebrew/vendor/bundle/bundler/setup.rb +++ b/Library/Homebrew/vendor/bundle/bundler/setup.rb @@ -9,7 +9,7 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/minitest-5.14.1/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/thread_safe-0.3.6/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/tzinfo-1.2.7/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/zeitwerk-2.3.0/lib" -$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/activesupport-6.0.3.1/lib" +$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/activesupport-6.0.3.2/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ast-2.4.1/lib" $:.unshift "#{path}/" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/extensions/universal-darwin-19/2.6.0/byebug-11.1.3" @@ -44,7 +44,7 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ntlm-http-0.1.1/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/webrobots-0.1.2/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/mechanize-2.7.6/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/mustache-1.1.1/lib" -$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/parallel-1.19.1/lib" +$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/parallel-1.19.2/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/parallel_tests-3.0.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/parser-2.7.1.3/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/plist-3.5.0/lib" diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/actionable_error.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/actionable_error.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/actionable_error.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/actionable_error.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/array_inquirer.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/array_inquirer.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/array_inquirer.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/array_inquirer.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/backtrace_cleaner.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/backtrace_cleaner.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/backtrace_cleaner.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/backtrace_cleaner.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/benchmarkable.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/benchmarkable.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/benchmarkable.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/benchmarkable.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/builder.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/builder.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/builder.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/builder.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/callbacks.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/callbacks.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/callbacks.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/callbacks.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/concern.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/concern.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/concern.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/concern.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/configurable.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/configurable.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/configurable.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/configurable.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/array.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/array.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/array.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/array.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/array/access.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/array/access.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/array/access.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/array/access.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/array/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/array/conversions.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/array/conversions.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/array/conversions.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/array/extract.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/array/extract.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/array/extract.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/array/extract.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/array/extract_options.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/array/extract_options.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/array/extract_options.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/array/extract_options.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/array/grouping.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/array/grouping.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/array/grouping.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/array/grouping.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/array/inquiry.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/array/inquiry.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/array/inquiry.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/array/inquiry.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/array/prepend_and_append.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/array/prepend_and_append.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/array/prepend_and_append.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/array/prepend_and_append.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/array/wrap.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/array/wrap.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/array/wrap.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/array/wrap.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/benchmark.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/benchmark.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/benchmark.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/benchmark.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/big_decimal.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/big_decimal.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/big_decimal.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/big_decimal.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/big_decimal/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/big_decimal/conversions.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/big_decimal/conversions.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/big_decimal/conversions.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/class.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/class.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/class.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/class.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/class/attribute.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/class/attribute.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/class/attribute.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/class/attribute.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/class/attribute_accessors.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/class/attribute_accessors.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/class/attribute_accessors.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/class/attribute_accessors.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/class/subclasses.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/class/subclasses.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/class/subclasses.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/class/subclasses.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date/acts_like.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date/acts_like.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date/acts_like.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date/acts_like.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date/blank.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date/blank.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date/blank.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date/blank.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date/calculations.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date/calculations.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date/calculations.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date/calculations.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date/conversions.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date/conversions.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date/conversions.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date/zones.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date/zones.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date/zones.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date/zones.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date_and_time/calculations.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date_and_time/calculations.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date_and_time/calculations.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date_and_time/calculations.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date_and_time/compatibility.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date_and_time/compatibility.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date_and_time/compatibility.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date_and_time/compatibility.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date_and_time/zones.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date_and_time/zones.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date_and_time/zones.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date_and_time/zones.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date_time.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date_time.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date_time.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date_time.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date_time/acts_like.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date_time/acts_like.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date_time/acts_like.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date_time/acts_like.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date_time/blank.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date_time/blank.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date_time/blank.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date_time/blank.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date_time/calculations.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date_time/calculations.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date_time/calculations.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date_time/calculations.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date_time/compatibility.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date_time/compatibility.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date_time/compatibility.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date_time/compatibility.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date_time/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date_time/conversions.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/date_time/conversions.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/date_time/conversions.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/digest.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/digest.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/digest.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/digest.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/digest/uuid.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/digest/uuid.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/digest/uuid.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/digest/uuid.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/enumerable.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/enumerable.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/enumerable.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/enumerable.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/file.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/file.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/file.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/file.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/file/atomic.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/file/atomic.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/file/atomic.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/file/atomic.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/compact.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/compact.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/compact.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/compact.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/conversions.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/conversions.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/conversions.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/deep_merge.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/deep_merge.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/deep_merge.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/deep_merge.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/deep_transform_values.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/deep_transform_values.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/deep_transform_values.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/deep_transform_values.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/except.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/except.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/except.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/except.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/indifferent_access.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/indifferent_access.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/indifferent_access.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/indifferent_access.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/keys.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/keys.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/keys.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/keys.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/reverse_merge.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/reverse_merge.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/reverse_merge.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/reverse_merge.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/slice.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/slice.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/slice.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/slice.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/transform_values.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/transform_values.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/hash/transform_values.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/hash/transform_values.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/integer.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/integer.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/integer.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/integer.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/integer/inflections.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/integer/inflections.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/integer/inflections.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/integer/inflections.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/integer/multiple.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/integer/multiple.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/integer/multiple.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/integer/multiple.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/integer/time.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/integer/time.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/integer/time.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/integer/time.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/kernel.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/kernel.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/kernel.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/kernel.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/kernel/concern.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/kernel/concern.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/kernel/concern.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/kernel/concern.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/kernel/reporting.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/kernel/reporting.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/kernel/reporting.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/kernel/reporting.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/kernel/singleton_class.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/kernel/singleton_class.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/kernel/singleton_class.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/kernel/singleton_class.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/load_error.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/load_error.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/load_error.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/load_error.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/marshal.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/marshal.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/marshal.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/marshal.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/aliasing.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/aliasing.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/aliasing.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/aliasing.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/anonymous.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/anonymous.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/anonymous.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/anonymous.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/attr_internal.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/attr_internal.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/attr_internal.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/attr_internal.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/attribute_accessors.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/attribute_accessors.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/attribute_accessors.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/attribute_accessors.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/concerning.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/concerning.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/concerning.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/concerning.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/delegation.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/delegation.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/delegation.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/delegation.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/deprecation.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/deprecation.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/deprecation.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/deprecation.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/introspection.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/introspection.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/introspection.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/introspection.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/reachable.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/reachable.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/reachable.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/reachable.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/redefine_method.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/redefine_method.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/redefine_method.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/redefine_method.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/remove_method.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/remove_method.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/module/remove_method.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/module/remove_method.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/name_error.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/name_error.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/name_error.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/name_error.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/numeric.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/numeric.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/numeric.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/numeric.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/numeric/bytes.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/numeric/bytes.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/numeric/bytes.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/numeric/bytes.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/numeric/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/numeric/conversions.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/numeric/conversions.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/numeric/conversions.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/numeric/inquiry.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/numeric/inquiry.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/numeric/inquiry.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/numeric/inquiry.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/numeric/time.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/numeric/time.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/numeric/time.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/numeric/time.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/acts_like.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/acts_like.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/acts_like.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/acts_like.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/blank.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/blank.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/blank.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/blank.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/conversions.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/conversions.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/conversions.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/deep_dup.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/deep_dup.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/deep_dup.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/deep_dup.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/duplicable.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/duplicable.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/duplicable.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/duplicable.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/inclusion.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/inclusion.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/inclusion.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/inclusion.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/instance_variables.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/instance_variables.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/instance_variables.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/instance_variables.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/json.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/json.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/json.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/json.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/to_param.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/to_param.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/to_param.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/to_param.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/to_query.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/to_query.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/to_query.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/to_query.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/try.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/try.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/try.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/try.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/with_options.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/with_options.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/object/with_options.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/object/with_options.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/range.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/range.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/range.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/range.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/range/compare_range.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/range/compare_range.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/range/compare_range.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/range/compare_range.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/range/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/range/conversions.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/range/conversions.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/range/conversions.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/range/each.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/range/each.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/range/each.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/range/each.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/range/include_range.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/range/include_range.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/range/include_range.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/range/include_range.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/range/include_time_with_zone.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/range/include_time_with_zone.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/range/include_time_with_zone.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/range/include_time_with_zone.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/range/overlaps.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/range/overlaps.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/range/overlaps.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/range/overlaps.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/regexp.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/regexp.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/regexp.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/regexp.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/securerandom.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/securerandom.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/securerandom.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/securerandom.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/access.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/access.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/access.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/access.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/behavior.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/behavior.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/behavior.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/behavior.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/conversions.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/conversions.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/conversions.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/exclude.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/exclude.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/exclude.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/exclude.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/filters.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/filters.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/filters.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/filters.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/indent.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/indent.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/indent.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/indent.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/inflections.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/inflections.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/inflections.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/inflections.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/inquiry.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/inquiry.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/inquiry.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/inquiry.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/multibyte.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/multibyte.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/multibyte.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/multibyte.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/output_safety.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/output_safety.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/output_safety.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/output_safety.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/starts_ends_with.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/starts_ends_with.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/starts_ends_with.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/starts_ends_with.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/strip.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/strip.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/strip.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/strip.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/zones.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/zones.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/string/zones.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/string/zones.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/time.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/time.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/time.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/time.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/time/acts_like.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/time/acts_like.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/time/acts_like.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/time/acts_like.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/time/calculations.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/time/calculations.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/time/calculations.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/time/calculations.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/time/compatibility.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/time/compatibility.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/time/compatibility.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/time/compatibility.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/time/conversions.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/time/conversions.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/time/conversions.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/time/conversions.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/time/zones.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/time/zones.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/time/zones.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/time/zones.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/uri.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/uri.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/core_ext/uri.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/core_ext/uri.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/current_attributes.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/current_attributes.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/current_attributes.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/current_attributes.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/deprecation.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/deprecation.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/deprecation.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/deprecation.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/deprecation/behaviors.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/deprecation/behaviors.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/deprecation/behaviors.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/deprecation/behaviors.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/deprecation/constant_accessor.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/deprecation/constant_accessor.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/deprecation/constant_accessor.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/deprecation/constant_accessor.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/deprecation/instance_delegator.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/deprecation/instance_delegator.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/deprecation/instance_delegator.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/deprecation/instance_delegator.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/deprecation/method_wrappers.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/deprecation/method_wrappers.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/deprecation/method_wrappers.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/deprecation/method_wrappers.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/deprecation/proxy_wrappers.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/deprecation/proxy_wrappers.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/deprecation/proxy_wrappers.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/deprecation/proxy_wrappers.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/deprecation/reporting.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/deprecation/reporting.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/deprecation/reporting.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/deprecation/reporting.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/descendants_tracker.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/descendants_tracker.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/descendants_tracker.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/descendants_tracker.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/digest.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/digest.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/digest.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/digest.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/duration.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/duration.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/duration.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/duration.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/encrypted_configuration.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/encrypted_configuration.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/encrypted_configuration.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/encrypted_configuration.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/encrypted_file.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/encrypted_file.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/encrypted_file.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/encrypted_file.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/evented_file_update_checker.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/evented_file_update_checker.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/evented_file_update_checker.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/evented_file_update_checker.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/execution_wrapper.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/execution_wrapper.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/execution_wrapper.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/execution_wrapper.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/executor.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/executor.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/executor.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/executor.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/file_update_checker.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/file_update_checker.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/file_update_checker.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/file_update_checker.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/gem_version.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/gem_version.rb similarity index 95% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/gem_version.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/gem_version.rb index 50375f27af..5f3af4ddc9 100644 --- a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/gem_version.rb +++ b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/gem_version.rb @@ -10,7 +10,7 @@ module ActiveSupport MAJOR = 6 MINOR = 0 TINY = 3 - PRE = "1" + PRE = "2" STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/gzip.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/gzip.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/gzip.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/gzip.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/hash_with_indifferent_access.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/hash_with_indifferent_access.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/hash_with_indifferent_access.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/hash_with_indifferent_access.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/i18n.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/i18n.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/i18n.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/i18n.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/i18n_railtie.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/i18n_railtie.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/i18n_railtie.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/i18n_railtie.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/inflections.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/inflections.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/inflections.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/inflections.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/inflector.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/inflector.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/inflector.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/inflector.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/inflector/inflections.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/inflector/inflections.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/inflector/inflections.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/inflector/inflections.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/inflector/methods.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/inflector/methods.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/inflector/methods.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/inflector/methods.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/inflector/transliterate.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/inflector/transliterate.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/inflector/transliterate.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/inflector/transliterate.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/key_generator.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/key_generator.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/key_generator.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/key_generator.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/lazy_load_hooks.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/lazy_load_hooks.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/lazy_load_hooks.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/lazy_load_hooks.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/locale/en.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/locale/en.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/locale/en.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/locale/en.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/locale/en.yml b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/locale/en.yml similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/locale/en.yml rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/locale/en.yml diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/logger.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/logger.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/logger.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/logger.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/logger_silence.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/logger_silence.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/logger_silence.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/logger_silence.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/logger_thread_safe_level.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/logger_thread_safe_level.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/logger_thread_safe_level.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/logger_thread_safe_level.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/message_encryptor.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/message_encryptor.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/message_encryptor.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/message_encryptor.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/message_verifier.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/message_verifier.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/message_verifier.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/message_verifier.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/multibyte.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/multibyte.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/multibyte.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/multibyte.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/notifications.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/notifications.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/notifications.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/notifications.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/notifications/fanout.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/notifications/fanout.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/notifications/fanout.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/notifications/fanout.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/notifications/instrumenter.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/notifications/instrumenter.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/notifications/instrumenter.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/notifications/instrumenter.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/option_merger.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/option_merger.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/option_merger.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/option_merger.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/ordered_hash.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/ordered_hash.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/ordered_hash.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/ordered_hash.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/ordered_options.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/ordered_options.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/ordered_options.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/ordered_options.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/parameter_filter.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/parameter_filter.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/parameter_filter.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/parameter_filter.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/per_thread_registry.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/per_thread_registry.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/per_thread_registry.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/per_thread_registry.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/proxy_object.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/proxy_object.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/proxy_object.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/proxy_object.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/rails.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/rails.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/rails.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/rails.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/railtie.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/railtie.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/railtie.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/railtie.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/reloader.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/reloader.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/reloader.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/reloader.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/rescuable.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/rescuable.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/rescuable.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/rescuable.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/security_utils.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/security_utils.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/security_utils.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/security_utils.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/string_inquirer.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/string_inquirer.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/string_inquirer.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/string_inquirer.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/subscriber.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/subscriber.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/subscriber.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/subscriber.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/tagged_logging.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/tagged_logging.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/tagged_logging.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/tagged_logging.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/test_case.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/test_case.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/test_case.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/test_case.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/time.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/time.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/time.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/time.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/time_with_zone.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/time_with_zone.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/time_with_zone.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/time_with_zone.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/values/time_zone.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/values/time_zone.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/values/time_zone.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/values/time_zone.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/version.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/version.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/version.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/version.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/xml_mini.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/xml_mini.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/xml_mini.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/xml_mini.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/xml_mini/jdom.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/xml_mini/jdom.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/xml_mini/jdom.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/xml_mini/jdom.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/xml_mini/libxml.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/xml_mini/libxml.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/xml_mini/libxml.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/xml_mini/libxml.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/xml_mini/libxmlsax.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/xml_mini/libxmlsax.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/xml_mini/libxmlsax.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/xml_mini/libxmlsax.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/xml_mini/nokogiri.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/xml_mini/nokogiri.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/xml_mini/nokogiri.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/xml_mini/nokogiri.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/xml_mini/nokogirisax.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/xml_mini/nokogirisax.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/xml_mini/nokogirisax.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/xml_mini/nokogirisax.rb diff --git a/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/xml_mini/rexml.rb b/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/xml_mini/rexml.rb similarity index 100% rename from Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.1/lib/active_support/xml_mini/rexml.rb rename to Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.3.2/lib/active_support/xml_mini/rexml.rb From 4b8745f32b0220214084df67d6f67b3386724de4 Mon Sep 17 00:00:00 2001 From: vidusheeamoli Date: Wed, 17 Jun 2020 21:00:13 +0530 Subject: [PATCH 08/82] srb: resolve error 4010. 28 errors=> 25 errors Sorbet was reporting errors (error code: 4010) on the auto-generated tapioca RBI files. Since sorbet-typed has a good enough RBI for json hence we can exclude json from tapioca generation using the --exclude flag. --- .../Homebrew/sorbet/rbi/gems/json@2.3.0.rbi | 87 ------------------- .../sorbet/rbi/hidden-definitions/errors.txt | 3 +- .../sorbet/rbi/hidden-definitions/hidden.rbi | 8 ++ 3 files changed, 10 insertions(+), 88 deletions(-) delete mode 100644 Library/Homebrew/sorbet/rbi/gems/json@2.3.0.rbi diff --git a/Library/Homebrew/sorbet/rbi/gems/json@2.3.0.rbi b/Library/Homebrew/sorbet/rbi/gems/json@2.3.0.rbi deleted file mode 100644 index c230680172..0000000000 --- a/Library/Homebrew/sorbet/rbi/gems/json@2.3.0.rbi +++ /dev/null @@ -1,87 +0,0 @@ -# This file is autogenerated. Do not edit it by hand. Regenerate it with: -# tapioca sync - -# typed: true - -class Class < ::Module - def json_creatable?; end -end - -module JSON - - private - - def dump(obj, anIO = _, limit = _); end - def fast_generate(obj, opts = _); end - def fast_unparse(obj, opts = _); end - def generate(obj, opts = _); end - def load(source, proc = _, options = _); end - def parse(source, opts = _); end - def parse!(source, opts = _); end - def pretty_generate(obj, opts = _); end - def pretty_unparse(obj, opts = _); end - def recurse_proc(result, &proc); end - def restore(source, proc = _, options = _); end - def unparse(obj, opts = _); end - - def self.[](object, opts = _); end - def self.create_id; end - def self.create_id=(_); end - def self.deep_const_get(path); end - def self.dump(obj, anIO = _, limit = _); end - def self.dump_default_options; end - def self.dump_default_options=(_); end - def self.fast_generate(obj, opts = _); end - def self.fast_unparse(obj, opts = _); end - def self.generate(obj, opts = _); end - def self.generator; end - def self.generator=(generator); end - def self.iconv(to, from, string); end - def self.load(source, proc = _, options = _); end - def self.load_default_options; end - def self.load_default_options=(_); end - def self.parse(source, opts = _); end - def self.parse!(source, opts = _); end - def self.parser; end - def self.parser=(parser); end - def self.pretty_generate(obj, opts = _); end - def self.pretty_unparse(obj, opts = _); end - def self.recurse_proc(result, &proc); end - def self.restore(source, proc = _, options = _); end - def self.state; end - def self.state=(_); end - def self.unparse(obj, opts = _); end -end - -class JSON::GenericObject < ::OpenStruct - def as_json(*_); end - def to_hash; end - def to_json(*a); end - def |(other); end - - def self.dump(obj, *args); end - def self.from_hash(object); end - def self.json_creatable=(_); end - def self.json_creatable?; end - def self.json_create(data); end - def self.load(source, proc = _, opts = _); end -end - -class JSON::JSONError < ::StandardError - def self.wrap(exception); end -end - -JSON::Parser = JSON::Ext::Parser - -JSON::State = JSON::Ext::Generator::State - -JSON::UnparserError = JSON::GeneratorError - -module Kernel - - private - - def JSON(object, *args); end - def j(*objs); end - def jj(*objs); end -end diff --git a/Library/Homebrew/sorbet/rbi/hidden-definitions/errors.txt b/Library/Homebrew/sorbet/rbi/hidden-definitions/errors.txt index de7f604aae..a99d122b2a 100644 --- a/Library/Homebrew/sorbet/rbi/hidden-definitions/errors.txt +++ b/Library/Homebrew/sorbet/rbi/hidden-definitions/errors.txt @@ -3499,6 +3499,7 @@ # wrong constant name class_attribute4 # wrong constant name class_attribute5 # wrong constant name class_attribute +# wrong constant name json_creatable? # wrong constant name # wrong constant name # wrong constant name @@ -13075,7 +13076,7 @@ # wrong constant name # wrong constant name # wrong constant name -# undefined method `weighted_euclidean_distance_to1' for module `#' +# undefined method `weighted_euclidean_distance_to1' for module `#' # wrong constant name weighted_euclidean_distance_to1 # wrong constant name weighted_euclidean_distance_to # wrong constant name diff --git a/Library/Homebrew/sorbet/rbi/hidden-definitions/hidden.rbi b/Library/Homebrew/sorbet/rbi/hidden-definitions/hidden.rbi index 8cc6dd1179..98041997fe 100644 --- a/Library/Homebrew/sorbet/rbi/hidden-definitions/hidden.rbi +++ b/Library/Homebrew/sorbet/rbi/hidden-definitions/hidden.rbi @@ -5854,6 +5854,8 @@ class Class def any_instance(); end def class_attribute(*attrs, instance_accessor: T.unsafe(nil), instance_reader: T.unsafe(nil), instance_writer: T.unsafe(nil), instance_predicate: T.unsafe(nil), default: T.unsafe(nil)); end + + def json_creatable?(); end end module CodeRay @@ -10311,6 +10313,12 @@ class JSON::Ext::Parser def initialize(*_); end end +JSON::Parser = JSON::Ext::Parser + +JSON::State = JSON::Ext::Generator::State + +JSON::UnparserError = JSON::GeneratorError + class JavaRequirement::CaskSuggestion def self.[](*_); end From 5b877cdd96872f1f1169b5f19c3d3a13756b8d1a Mon Sep 17 00:00:00 2001 From: vidusheeamoli Date: Wed, 17 Jun 2020 21:02:10 +0530 Subject: [PATCH 09/82] gitignore: add sorbet/errors.txt --- .gitignore | 1 + .../sorbet/rbi/hidden-definitions/errors.txt | 14392 ---------------- 2 files changed, 1 insertion(+), 14392 deletions(-) delete mode 100644 Library/Homebrew/sorbet/rbi/hidden-definitions/errors.txt diff --git a/.gitignore b/.gitignore index 22f2f57361..f5fa53701f 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,7 @@ /Library/Taps /Library/PinnedTaps /Library/Homebrew/.byebug_history +/Library/Homebrew/sorbet/rbi/hidden-definitions/errors.txt # Ignore Bundler files **/.bundle/bin diff --git a/Library/Homebrew/sorbet/rbi/hidden-definitions/errors.txt b/Library/Homebrew/sorbet/rbi/hidden-definitions/errors.txt deleted file mode 100644 index a99d122b2a..0000000000 --- a/Library/Homebrew/sorbet/rbi/hidden-definitions/errors.txt +++ /dev/null @@ -1,14392 +0,0 @@ -# This file is autogenerated. Do not edit it by hand. Regenerate it with: -# srb rbi hidden-definitions - -# typed: autogenerated - -# 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 -# 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 -# 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 -# uninitialized constant Abbrev -# uninitialized constant Abbrev -# uninitialized constant AbstractDownloadStrategy::LOW_METHODS -# uninitialized constant AbstractDownloadStrategy::METHODS -# uninitialized constant AbstractDownloadStrategy::OPT_TABLE -# uninitialized constant AbstractDownloadStrategy::VERSION -# 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 -# 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 parse_json_times -# wrong constant name parse_json_times= -# wrong constant name test_order -# wrong constant name test_order= -# wrong constant name -# wrong constant name -# wrong constant name action -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name actions -# wrong constant name dispatch -# uninitialized constant ActiveSupport::ArrayInquirer::DEFAULT_INDENT -# uninitialized constant ActiveSupport::ArrayInquirer::Elem -# wrong constant name any? -# wrong constant name -# undefined method `autoload1' for module `ActiveSupport::Autoload' -# wrong constant name autoload1 -# wrong constant name autoload -# wrong constant name autoload_at -# wrong constant name autoload_under -# wrong constant name autoloads -# wrong constant name eager_autoload -# wrong constant name eager_load! -# wrong constant name -# wrong constant name extended -# undefined method `clean1' for class `ActiveSupport::BacktraceCleaner' -# undefined method `filter1' for class `ActiveSupport::BacktraceCleaner' -# wrong constant name add_filter -# wrong constant name add_silencer -# wrong constant name clean1 -# wrong constant name clean -# wrong constant name filter1 -# wrong constant name filter -# wrong constant name remove_filters! -# wrong constant name remove_silencers! -# wrong constant name -# undefined method `benchmark1' for module `ActiveSupport::Benchmarkable' -# undefined method `benchmark2' for module `ActiveSupport::Benchmarkable' -# wrong constant name benchmark1 -# wrong constant name benchmark2 -# wrong constant name benchmark -# wrong constant name -# undefined method `to_s1' for module `ActiveSupport::BigDecimalWithDefaultFormat' -# wrong constant name to_s1 -# wrong constant name to_s -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# undefined method `initialize1' for class `ActiveSupport::Cache::Entry' -# undefined method `initialize2' for class `ActiveSupport::Cache::Entry' -# undefined method `initialize3' for class `ActiveSupport::Cache::Entry' -# undefined method `initialize4' for class `ActiveSupport::Cache::Entry' -# wrong constant name dup_value! -# wrong constant name expired? -# wrong constant name expires_at -# wrong constant name expires_at= -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize3 -# wrong constant name initialize4 -# wrong constant name initialize -# wrong constant name mismatched? -# wrong constant name size -# wrong constant name value -# wrong constant name version -# wrong constant name -# undefined method `initialize1' for class `ActiveSupport::Cache::FileStore' -# wrong constant name cache_path -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name -# wrong constant name supports_cache_versioning? -# undefined method `prune1' for class `ActiveSupport::Cache::MemoryStore' -# wrong constant name prune1 -# wrong constant name prune -# wrong constant name pruning? -# wrong constant name synchronize -# wrong constant name -# wrong constant name supports_cache_versioning? -# wrong constant name -# wrong constant name supports_cache_versioning? -# undefined method `cleanup1' for class `ActiveSupport::Cache::Store' -# undefined method `clear1' for class `ActiveSupport::Cache::Store' -# undefined method `decrement1' for class `ActiveSupport::Cache::Store' -# undefined method `decrement2' for class `ActiveSupport::Cache::Store' -# undefined method `delete1' for class `ActiveSupport::Cache::Store' -# undefined method `delete_matched1' for class `ActiveSupport::Cache::Store' -# undefined method `exist?1' for class `ActiveSupport::Cache::Store' -# undefined method `fetch1' for class `ActiveSupport::Cache::Store' -# undefined method `increment1' for class `ActiveSupport::Cache::Store' -# undefined method `increment2' for class `ActiveSupport::Cache::Store' -# undefined method `initialize1' for class `ActiveSupport::Cache::Store' -# undefined method `read1' for class `ActiveSupport::Cache::Store' -# undefined method `write1' for class `ActiveSupport::Cache::Store' -# undefined method `write_multi1' for class `ActiveSupport::Cache::Store' -# wrong constant name cleanup1 -# wrong constant name cleanup -# wrong constant name clear1 -# wrong constant name clear -# wrong constant name decrement1 -# wrong constant name decrement2 -# wrong constant name decrement -# wrong constant name delete1 -# wrong constant name delete -# wrong constant name delete_matched1 -# wrong constant name delete_matched -# wrong constant name exist?1 -# wrong constant name exist? -# wrong constant name fetch1 -# wrong constant name fetch -# wrong constant name fetch_multi -# wrong constant name increment1 -# wrong constant name increment2 -# wrong constant name increment -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name logger -# wrong constant name logger= -# wrong constant name mute -# wrong constant name options -# wrong constant name read1 -# wrong constant name read -# wrong constant name read_multi -# wrong constant name silence -# wrong constant name silence! -# wrong constant name silence? -# wrong constant name write1 -# wrong constant name write -# wrong constant name write_multi1 -# wrong constant name write_multi -# wrong constant name -# wrong constant name logger -# wrong constant name logger= -# wrong constant name -# undefined method `decrement1' for module `ActiveSupport::Cache::Strategy::LocalCache' -# undefined method `increment1' for module `ActiveSupport::Cache::Strategy::LocalCache' -# wrong constant name cleanup -# wrong constant name clear -# wrong constant name decrement1 -# wrong constant name decrement -# wrong constant name increment1 -# wrong constant name increment -# wrong constant name middleware -# wrong constant name with_local_cache -# wrong constant name -# wrong constant name -# undefined singleton method `expand_cache_key1' for `ActiveSupport::Cache' -# undefined singleton method `lookup_store1' for `ActiveSupport::Cache' -# wrong constant name -# wrong constant name expand_cache_key1 -# wrong constant name expand_cache_key -# wrong constant name lookup_store1 -# wrong constant name lookup_store -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name run_callbacks -# wrong constant name expand -# wrong constant name initialize -# wrong constant name inverted_lambda -# wrong constant name make_lambda -# wrong constant name -# wrong constant name build -# wrong constant name apply -# wrong constant name chain_config -# wrong constant name current_scopes -# wrong constant name duplicates? -# wrong constant name filter -# wrong constant name initialize -# wrong constant name kind -# wrong constant name kind= -# wrong constant name matches? -# wrong constant name merge_conditional_options -# wrong constant name name -# wrong constant name name= -# wrong constant name raw_filter -# wrong constant name -# wrong constant name build -# uninitialized constant ActiveSupport::Callbacks::CallbackChain::Elem -# wrong constant name append -# wrong constant name chain -# wrong constant name clear -# wrong constant name compile -# wrong constant name config -# wrong constant name delete -# wrong constant name each -# wrong constant name empty? -# wrong constant name index -# wrong constant name initialize -# wrong constant name insert -# wrong constant name name -# wrong constant name prepend -# wrong constant name -# undefined method `initialize1' for class `ActiveSupport::Callbacks::CallbackSequence' -# undefined method `initialize2' for class `ActiveSupport::Callbacks::CallbackSequence' -# undefined method `initialize3' for class `ActiveSupport::Callbacks::CallbackSequence' -# wrong constant name after -# wrong constant name around -# wrong constant name before -# wrong constant name expand_call_template -# wrong constant name final? -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize3 -# wrong constant name initialize -# wrong constant name invoke_after -# wrong constant name invoke_before -# wrong constant name nested -# wrong constant name skip? -# wrong constant name -# wrong constant name __update_callbacks -# wrong constant name define_callbacks -# wrong constant name get_callbacks -# wrong constant name normalize_callback_params -# wrong constant name reset_callbacks -# wrong constant name set_callback -# wrong constant name set_callbacks -# wrong constant name skip_callback -# 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 -# wrong constant name -# wrong constant name build -# wrong constant name -# wrong constant name build -# uninitialized constant ActiveSupport::Callbacks::Filters::Environment::Elem -# wrong constant name halted -# wrong constant name halted= -# wrong constant name target -# wrong constant name target= -# wrong constant name value -# wrong constant name value= -# wrong constant name -# wrong constant name [] -# wrong constant name members -# wrong constant name -# wrong constant name -# undefined method `included1' for module `ActiveSupport::Concern' -# wrong constant name -# wrong constant name append_features -# wrong constant name class_methods -# wrong constant name included1 -# wrong constant name included -# wrong constant name initialize -# wrong constant name -# wrong constant name -# wrong constant name extended -# wrong constant name -# undefined method `exclusive1' for class `ActiveSupport::Concurrency::ShareLock' -# undefined method `exclusive2' for class `ActiveSupport::Concurrency::ShareLock' -# undefined method `exclusive3' for class `ActiveSupport::Concurrency::ShareLock' -# undefined method `exclusive4' for class `ActiveSupport::Concurrency::ShareLock' -# undefined method `start_exclusive1' for class `ActiveSupport::Concurrency::ShareLock' -# undefined method `start_exclusive2' for class `ActiveSupport::Concurrency::ShareLock' -# undefined method `start_exclusive3' for class `ActiveSupport::Concurrency::ShareLock' -# undefined method `stop_exclusive1' for class `ActiveSupport::Concurrency::ShareLock' -# undefined method `yield_shares1' for class `ActiveSupport::Concurrency::ShareLock' -# undefined method `yield_shares2' for class `ActiveSupport::Concurrency::ShareLock' -# undefined method `yield_shares3' for class `ActiveSupport::Concurrency::ShareLock' -# wrong constant name exclusive1 -# wrong constant name exclusive2 -# wrong constant name exclusive3 -# wrong constant name exclusive4 -# wrong constant name exclusive -# wrong constant name initialize -# wrong constant name raw_state -# wrong constant name sharing -# wrong constant name start_exclusive1 -# wrong constant name start_exclusive2 -# wrong constant name start_exclusive3 -# wrong constant name start_exclusive -# wrong constant name start_sharing -# wrong constant name stop_exclusive1 -# wrong constant name stop_exclusive -# wrong constant name stop_sharing -# wrong constant name yield_shares1 -# wrong constant name yield_shares2 -# wrong constant name yield_shares3 -# wrong constant name yield_shares -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name config -# wrong constant name config -# wrong constant name configure -# wrong constant name -# uninitialized constant ActiveSupport::Configurable::Configuration::DEFAULT_INDENT -# uninitialized constant ActiveSupport::Configurable::Configuration::Elem -# uninitialized constant ActiveSupport::Configurable::Configuration::K -# uninitialized constant ActiveSupport::Configurable::Configuration::V -# wrong constant name compile_methods! -# wrong constant name -# wrong constant name compile_methods! -# wrong constant name -# uninitialized constant ActiveSupport::CurrentAttributes::CALLBACK_FILTER_TYPES -# wrong constant name __callbacks -# wrong constant name __callbacks? -# wrong constant name _reset_callbacks -# wrong constant name _run_reset_callbacks -# wrong constant name attributes -# wrong constant name attributes= -# wrong constant name reset -# wrong constant name set -# wrong constant name -# wrong constant name __callbacks -# wrong constant name __callbacks= -# wrong constant name __callbacks? -# wrong constant name _reset_callbacks -# wrong constant name _reset_callbacks= -# wrong constant name after_reset -# wrong constant name attribute -# wrong constant name before_reset -# wrong constant name clear_all -# wrong constant name instance -# wrong constant name reset -# wrong constant name reset_all -# wrong constant name resets -# wrong constant name set -# undefined method `depend_on1' for module `ActiveSupport::Dependencies' -# undefined method `load_file1' for module `ActiveSupport::Dependencies' -# undefined method `loadable_constants_for_path1' for module `ActiveSupport::Dependencies' -# undefined method `require_or_load1' for module `ActiveSupport::Dependencies' -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name _eager_load_paths -# wrong constant name _eager_load_paths= -# wrong constant name autoload_module! -# wrong constant name autoload_once_paths -# wrong constant name autoload_once_paths= -# wrong constant name autoload_paths -# wrong constant name autoload_paths= -# wrong constant name autoloadable_module? -# wrong constant name autoloaded? -# wrong constant name autoloaded_constants -# wrong constant name autoloaded_constants= -# wrong constant name clear -# wrong constant name constant_watch_stack -# wrong constant name constant_watch_stack= -# wrong constant name constantize -# wrong constant name depend_on1 -# wrong constant name depend_on -# wrong constant name explicitly_unloadable_constants -# wrong constant name explicitly_unloadable_constants= -# wrong constant name history -# wrong constant name history= -# wrong constant name hook! -# wrong constant name interlock -# wrong constant name interlock= -# wrong constant name load? -# wrong constant name load_file1 -# wrong constant name load_file -# wrong constant name load_missing_constant -# wrong constant name load_once_path? -# wrong constant name loadable_constants_for_path1 -# wrong constant name loadable_constants_for_path -# wrong constant name loaded -# wrong constant name loaded= -# wrong constant name loading -# wrong constant name loading= -# wrong constant name log -# wrong constant name logger -# wrong constant name logger= -# wrong constant name mark_for_unload -# wrong constant name mechanism -# wrong constant name mechanism= -# wrong constant name new_constants_in -# wrong constant name qualified_const_defined? -# wrong constant name qualified_name_for -# wrong constant name reference -# wrong constant name remove_constant -# wrong constant name remove_unloadable_constants! -# wrong constant name require_or_load1 -# wrong constant name require_or_load -# wrong constant name safe_constantize -# wrong constant name search_for_file -# wrong constant name to_constant_name -# wrong constant name unhook! -# wrong constant name verbose -# wrong constant name verbose= -# wrong constant name warnings_on_first_load -# wrong constant name warnings_on_first_load= -# wrong constant name will_unload? -# wrong constant name blame_file! -# wrong constant name blamed_files -# wrong constant name copy_blame! -# wrong constant name describe_blame -# wrong constant name -# wrong constant name [] -# wrong constant name clear! -# wrong constant name empty? -# wrong constant name get -# wrong constant name key? -# wrong constant name safe_get -# wrong constant name store -# wrong constant name -# wrong constant name done_running -# wrong constant name done_unloading -# wrong constant name loading -# wrong constant name permit_concurrent_loads -# wrong constant name raw_state -# wrong constant name running -# wrong constant name start_running -# wrong constant name start_unloading -# wrong constant name unloading -# wrong constant name -# undefined method `require_dependency1' for module `ActiveSupport::Dependencies::Loadable' -# wrong constant name load_dependency -# wrong constant name require_dependency1 -# wrong constant name require_dependency -# wrong constant name require_or_load -# wrong constant name unloadable -# wrong constant name -# wrong constant name exclude_from -# wrong constant name include_into -# undefined method `unloadable1' for module `ActiveSupport::Dependencies::ModuleConstMissing' -# wrong constant name const_missing -# wrong constant name guess_for_anonymous -# wrong constant name unloadable1 -# wrong constant name unloadable -# wrong constant name -# wrong constant name append_features -# wrong constant name exclude_from -# wrong constant name include_into -# uninitialized constant ActiveSupport::Dependencies::WatchStack::Elem -# wrong constant name each -# wrong constant name new_constants -# wrong constant name watch_namespaces -# wrong constant name watching -# wrong constant name watching? -# wrong constant name -# wrong constant name -# wrong constant name load_interlock -# wrong constant name run_interlock -# wrong constant name unload_interlock -# undefined method `initialize1' for class `ActiveSupport::Deprecation' -# undefined method `initialize2' for class `ActiveSupport::Deprecation' -# 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 ActiveSupport::Deprecation::RAILS_GEM_ROOT -# wrong constant name -# wrong constant name deprecation_horizon -# wrong constant name deprecation_horizon= -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name behavior -# wrong constant name behavior= -# wrong constant name debug -# wrong constant name debug= -# wrong constant name -# wrong constant name -# wrong constant name included -# undefined method `initialize1' for class `ActiveSupport::Deprecation::DeprecatedConstantProxy' -# undefined method `initialize2' for class `ActiveSupport::Deprecation::DeprecatedConstantProxy' -# uninitialized constant ActiveSupport::Deprecation::DeprecatedConstantProxy::DELEGATION_RESERVED_KEYWORDS -# uninitialized constant ActiveSupport::Deprecation::DeprecatedConstantProxy::DELEGATION_RESERVED_METHOD_NAMES -# uninitialized constant ActiveSupport::Deprecation::DeprecatedConstantProxy::RUBY_RESERVED_KEYWORDS -# wrong constant name hash -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name instance_methods -# wrong constant name name -# wrong constant name -# wrong constant name new -# undefined method `initialize1' for class `ActiveSupport::Deprecation::DeprecatedInstanceVariableProxy' -# undefined method `initialize2' for class `ActiveSupport::Deprecation::DeprecatedInstanceVariableProxy' -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name -# undefined method `initialize1' for class `ActiveSupport::Deprecation::DeprecatedObjectProxy' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name -# wrong constant name -# wrong constant name new -# wrong constant name -# wrong constant name -# wrong constant name include -# wrong constant name method_added -# wrong constant name -# undefined method `deprecation_warning1' for module `ActiveSupport::Deprecation::InstanceDelegator::OverrideDelegators' -# undefined method `deprecation_warning2' for module `ActiveSupport::Deprecation::InstanceDelegator::OverrideDelegators' -# undefined method `warn1' for module `ActiveSupport::Deprecation::InstanceDelegator::OverrideDelegators' -# undefined method `warn2' for module `ActiveSupport::Deprecation::InstanceDelegator::OverrideDelegators' -# wrong constant name deprecation_warning1 -# wrong constant name deprecation_warning2 -# wrong constant name deprecation_warning -# wrong constant name warn1 -# wrong constant name warn2 -# wrong constant name warn -# wrong constant name -# wrong constant name -# wrong constant name included -# wrong constant name deprecate_methods -# wrong constant name -# undefined method `deprecation_warning1' for module `ActiveSupport::Deprecation::Reporting' -# undefined method `deprecation_warning2' for module `ActiveSupport::Deprecation::Reporting' -# undefined method `warn1' for module `ActiveSupport::Deprecation::Reporting' -# undefined method `warn2' for module `ActiveSupport::Deprecation::Reporting' -# wrong constant name deprecation_warning1 -# wrong constant name deprecation_warning2 -# wrong constant name deprecation_warning -# wrong constant name gem_name -# wrong constant name gem_name= -# wrong constant name silence -# wrong constant name silenced -# wrong constant name silenced= -# wrong constant name warn1 -# wrong constant name warn2 -# wrong constant name warn -# wrong constant name -# wrong constant name -# wrong constant name behavior -# wrong constant name behavior= -# wrong constant name debug -# wrong constant name debug= -# wrong constant name deprecate_methods -# wrong constant name deprecation_horizon -# wrong constant name deprecation_horizon= -# wrong constant name deprecation_warning -# wrong constant name gem_name -# wrong constant name gem_name= -# wrong constant name initialize -# wrong constant name instance -# wrong constant name silence -# wrong constant name silenced -# wrong constant name silenced= -# wrong constant name warn -# wrong constant name -# wrong constant name -# wrong constant name descendants -# wrong constant name direct_descendants -# wrong constant name inherited -# wrong constant name << -# uninitialized constant ActiveSupport::DescendantsTracker::DescendantsArray::Elem -# wrong constant name cleanup! -# wrong constant name each -# wrong constant name refs_size -# wrong constant name reject! -# wrong constant name -# wrong constant name -# wrong constant name clear -# wrong constant name descendants -# wrong constant name direct_descendants -# wrong constant name store_inherited -# wrong constant name -# wrong constant name hash_digest_class -# wrong constant name hash_digest_class= -# wrong constant name hexdigest -# undefined method `after1' for class `ActiveSupport::Duration' -# undefined method `ago1' for class `ActiveSupport::Duration' -# undefined method `before1' for class `ActiveSupport::Duration' -# undefined method `from_now1' for class `ActiveSupport::Duration' -# undefined method `iso86011' for class `ActiveSupport::Duration' -# undefined method `since1' for class `ActiveSupport::Duration' -# undefined method `until1' for class `ActiveSupport::Duration' -# 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 after1 -# wrong constant name after -# wrong constant name ago1 -# wrong constant name ago -# wrong constant name before1 -# wrong constant name before -# wrong constant name coerce -# wrong constant name encode_with -# wrong constant name eql? -# wrong constant name from_now1 -# wrong constant name from_now -# wrong constant name init_with -# wrong constant name initialize -# wrong constant name instance_of? -# wrong constant name is_a? -# wrong constant name iso86011 -# wrong constant name iso8601 -# wrong constant name kind_of? -# wrong constant name parts -# wrong constant name parts= -# wrong constant name since1 -# wrong constant name since -# wrong constant name to_i -# wrong constant name until1 -# wrong constant name until -# wrong constant name value -# wrong constant name value= -# wrong constant name -# wrong constant name initialize -# wrong constant name mode -# wrong constant name mode= -# wrong constant name parse! -# wrong constant name parts -# wrong constant name scanner -# wrong constant name sign -# wrong constant name sign= -# wrong constant name -# wrong constant name -# undefined method `initialize1' for class `ActiveSupport::Duration::ISO8601Serializer' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name serialize -# wrong constant name -# wrong constant name % -# wrong constant name * -# wrong constant name + -# wrong constant name - -# wrong constant name / -# wrong constant name <=> -# uninitialized constant ActiveSupport::Duration::Scalar::EXABYTE -# uninitialized constant ActiveSupport::Duration::Scalar::GIGABYTE -# uninitialized constant ActiveSupport::Duration::Scalar::KILOBYTE -# uninitialized constant ActiveSupport::Duration::Scalar::MEGABYTE -# uninitialized constant ActiveSupport::Duration::Scalar::PETABYTE -# uninitialized constant ActiveSupport::Duration::Scalar::TERABYTE -# wrong constant name coerce -# wrong constant name initialize -# wrong constant name to_f -# wrong constant name to_i -# wrong constant name to_s -# wrong constant name value -# wrong constant name -# wrong constant name -# wrong constant name === -# wrong constant name build -# wrong constant name days -# wrong constant name hours -# wrong constant name minutes -# wrong constant name months -# wrong constant name parse -# wrong constant name seconds -# wrong constant name weeks -# wrong constant name years -# undefined method `initialize1' for class `ActiveSupport::EventedFileUpdateChecker' -# wrong constant name -# wrong constant name execute -# wrong constant name execute_if_updated -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name updated? -# wrong constant name existing_parent -# wrong constant name filter_out_descendants -# wrong constant name longest_common_subpath -# wrong constant name normalize_extension -# wrong constant name xpath -# wrong constant name -# wrong constant name -# uninitialized constant ActiveSupport::ExecutionWrapper::CALLBACK_FILTER_TYPES -# wrong constant name -# wrong constant name -# wrong constant name __callbacks -# wrong constant name __callbacks? -# wrong constant name _complete_callbacks -# wrong constant name _run_callbacks -# wrong constant name _run_complete_callbacks -# wrong constant name _run_run_callbacks -# wrong constant name complete! -# wrong constant name run! -# uninitialized constant ActiveSupport::ExecutionWrapper::CompleteHook::Elem -# wrong constant name after -# wrong constant name before -# wrong constant name hook -# wrong constant name hook= -# wrong constant name -# wrong constant name [] -# wrong constant name members -# uninitialized constant ActiveSupport::ExecutionWrapper::RunHook::Elem -# wrong constant name before -# wrong constant name hook -# wrong constant name hook= -# wrong constant name -# wrong constant name [] -# wrong constant name members -# undefined singleton method `register_hook1' for `ActiveSupport::ExecutionWrapper' -# wrong constant name -# wrong constant name __callbacks -# wrong constant name __callbacks= -# wrong constant name __callbacks? -# wrong constant name _complete_callbacks -# wrong constant name _complete_callbacks= -# wrong constant name _run_callbacks -# wrong constant name _run_callbacks= -# wrong constant name active -# wrong constant name active= -# wrong constant name active? -# wrong constant name inherited -# wrong constant name register_hook1 -# wrong constant name register_hook -# wrong constant name run! -# wrong constant name to_complete -# wrong constant name to_run -# wrong constant name wrap -# uninitialized constant ActiveSupport::Executor::CALLBACK_FILTER_TYPES -# uninitialized constant ActiveSupport::Executor::Null -# wrong constant name -# undefined method `initialize1' for class `ActiveSupport::FileUpdateChecker' -# wrong constant name execute -# wrong constant name execute_if_updated -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name updated? -# wrong constant name -# wrong constant name -# uninitialized constant ActiveSupport::Gzip::Stream::Elem -# wrong constant name -# undefined singleton method `compress1' for `ActiveSupport::Gzip' -# undefined singleton method `compress2' for `ActiveSupport::Gzip' -# wrong constant name -# wrong constant name compress1 -# wrong constant name compress2 -# wrong constant name compress -# wrong constant name decompress -# undefined method `camelize1' for module `ActiveSupport::Inflector' -# undefined method `foreign_key1' for module `ActiveSupport::Inflector' -# undefined method `humanize1' for module `ActiveSupport::Inflector' -# undefined method `humanize2' for module `ActiveSupport::Inflector' -# undefined method `inflections1' for module `ActiveSupport::Inflector' -# undefined method `parameterize1' for module `ActiveSupport::Inflector' -# undefined method `parameterize2' for module `ActiveSupport::Inflector' -# undefined method `parameterize3' for module `ActiveSupport::Inflector' -# undefined method `pluralize1' for module `ActiveSupport::Inflector' -# undefined method `singularize1' for module `ActiveSupport::Inflector' -# undefined method `titleize1' for module `ActiveSupport::Inflector' -# undefined method `transliterate1' for module `ActiveSupport::Inflector' -# undefined method `transliterate2' for module `ActiveSupport::Inflector' -# wrong constant name -# wrong constant name camelize1 -# wrong constant name camelize -# wrong constant name classify -# wrong constant name constantize -# wrong constant name dasherize -# wrong constant name deconstantize -# wrong constant name demodulize -# wrong constant name foreign_key1 -# wrong constant name foreign_key -# wrong constant name humanize1 -# wrong constant name humanize2 -# wrong constant name humanize -# wrong constant name inflections1 -# wrong constant name inflections -# wrong constant name ordinal -# wrong constant name ordinalize -# wrong constant name parameterize1 -# wrong constant name parameterize2 -# wrong constant name parameterize3 -# wrong constant name parameterize -# wrong constant name pluralize1 -# wrong constant name pluralize -# wrong constant name safe_constantize -# wrong constant name singularize1 -# wrong constant name singularize -# wrong constant name tableize -# wrong constant name titleize1 -# wrong constant name titleize -# wrong constant name transliterate1 -# wrong constant name transliterate2 -# wrong constant name transliterate -# wrong constant name underscore -# wrong constant name upcase_first -# undefined method `clear1' for class `ActiveSupport::Inflector::Inflections' -# wrong constant name -# wrong constant name acronym -# wrong constant name acronyms -# wrong constant name acronyms_camelize_regex -# wrong constant name acronyms_underscore_regex -# wrong constant name clear1 -# wrong constant name clear -# wrong constant name human -# wrong constant name humans -# wrong constant name irregular -# wrong constant name plural -# wrong constant name plurals -# wrong constant name singular -# wrong constant name singulars -# wrong constant name uncountable -# wrong constant name uncountables -# wrong constant name << -# uninitialized constant ActiveSupport::Inflector::Inflections::Uncountables::DEFAULT_INDENT -# uninitialized constant ActiveSupport::Inflector::Inflections::Uncountables::Elem -# wrong constant name add -# wrong constant name delete -# wrong constant name initialize -# wrong constant name uncountable? -# wrong constant name -# undefined singleton method `instance1' for `ActiveSupport::Inflector::Inflections' -# wrong constant name -# wrong constant name instance1 -# wrong constant name instance -# wrong constant name -# undefined method `initialize1' for class `ActiveSupport::InheritableOptions' -# uninitialized constant ActiveSupport::InheritableOptions::DEFAULT_INDENT -# uninitialized constant ActiveSupport::InheritableOptions::Elem -# uninitialized constant ActiveSupport::InheritableOptions::K -# uninitialized constant ActiveSupport::InheritableOptions::V -# wrong constant name inheritable_copy -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name -# wrong constant name -# wrong constant name -# undefined method `initialize1' for class `ActiveSupport::JSON::Encoding::JSONGemEncoder' -# wrong constant name encode -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name options -# wrong constant name -# wrong constant name -# wrong constant name escape_html_entities_in_json -# wrong constant name escape_html_entities_in_json= -# wrong constant name json_encoder -# wrong constant name json_encoder= -# wrong constant name time_precision -# wrong constant name time_precision= -# wrong constant name use_standard_json_time_format -# wrong constant name use_standard_json_time_format= -# undefined singleton method `encode1' for `ActiveSupport::JSON' -# wrong constant name -# wrong constant name decode -# wrong constant name encode1 -# wrong constant name encode -# wrong constant name parse_error -# undefined method `generate_key1' for class `ActiveSupport::KeyGenerator' -# undefined method `initialize1' for class `ActiveSupport::KeyGenerator' -# wrong constant name generate_key1 -# wrong constant name generate_key -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name -# undefined method `on_load1' for module `ActiveSupport::LazyLoadHooks' -# undefined method `run_load_hooks1' for module `ActiveSupport::LazyLoadHooks' -# wrong constant name on_load1 -# wrong constant name on_load -# wrong constant name run_load_hooks1 -# wrong constant name run_load_hooks -# wrong constant name -# wrong constant name extended -# undefined method `debug1' for class `ActiveSupport::LogSubscriber' -# undefined method `error1' for class `ActiveSupport::LogSubscriber' -# undefined method `fatal1' for class `ActiveSupport::LogSubscriber' -# undefined method `info1' for class `ActiveSupport::LogSubscriber' -# undefined method `unknown1' for class `ActiveSupport::LogSubscriber' -# undefined method `warn1' for class `ActiveSupport::LogSubscriber' -# wrong constant name colorize_logging -# wrong constant name colorize_logging= -# wrong constant name debug1 -# wrong constant name debug -# wrong constant name error1 -# wrong constant name error -# wrong constant name fatal1 -# wrong constant name fatal -# wrong constant name info1 -# wrong constant name info -# wrong constant name logger -# wrong constant name unknown1 -# wrong constant name unknown -# wrong constant name warn1 -# wrong constant name warn -# wrong constant name -# wrong constant name colorize_logging -# wrong constant name colorize_logging= -# wrong constant name flush_all! -# wrong constant name log_subscribers -# wrong constant name logger -# wrong constant name logger= -# uninitialized constant ActiveSupport::Logger::DEBUG -# uninitialized constant ActiveSupport::Logger::ERROR -# uninitialized constant ActiveSupport::Logger::FATAL -# uninitialized constant ActiveSupport::Logger::INFO -# uninitialized constant ActiveSupport::Logger::ProgName -# uninitialized constant ActiveSupport::Logger::SEV_LABEL -# wrong constant name -# uninitialized constant ActiveSupport::Logger::UNKNOWN -# uninitialized constant ActiveSupport::Logger::VERSION -# uninitialized constant ActiveSupport::Logger::WARN -# wrong constant name initialize -# wrong constant name silencer -# wrong constant name silencer= -# uninitialized constant ActiveSupport::Logger::SimpleFormatter::Format -# wrong constant name call -# wrong constant name -# wrong constant name -# wrong constant name broadcast -# wrong constant name local_levels -# wrong constant name local_levels= -# wrong constant name logger_outputs_to? -# wrong constant name silencer -# wrong constant name silencer= -# undefined method `silence1' for module `ActiveSupport::LoggerSilence' -# wrong constant name silence1 -# wrong constant name silence -# wrong constant name -# undefined method `add1' for module `ActiveSupport::LoggerThreadSafeLevel' -# undefined method `add2' for module `ActiveSupport::LoggerThreadSafeLevel' -# wrong constant name add1 -# wrong constant name add2 -# wrong constant name add -# wrong constant name after_initialize -# wrong constant name debug? -# wrong constant name error? -# wrong constant name fatal? -# wrong constant name info? -# wrong constant name level -# wrong constant name local_level -# wrong constant name local_level= -# wrong constant name local_log_id -# wrong constant name unknown? -# wrong constant name warn? -# wrong constant name -# undefined method `load1' for module `ActiveSupport::MarshalWithAutoloading' -# wrong constant name load1 -# wrong constant name load -# wrong constant name -# undefined method `encrypt_and_sign1' for class `ActiveSupport::MessageEncryptor' -# undefined method `encrypt_and_sign2' for class `ActiveSupport::MessageEncryptor' -# undefined method `encrypt_and_sign3' for class `ActiveSupport::MessageEncryptor' -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name encrypt_and_sign1 -# wrong constant name encrypt_and_sign2 -# wrong constant name encrypt_and_sign3 -# wrong constant name encrypt_and_sign -# wrong constant name -# wrong constant name -# wrong constant name dump -# wrong constant name load -# wrong constant name -# wrong constant name generate -# wrong constant name verify -# undefined singleton method `key_len1' for `ActiveSupport::MessageEncryptor' -# wrong constant name -# wrong constant name default_cipher -# wrong constant name key_len1 -# wrong constant name key_len -# wrong constant name use_authenticated_message_encryption -# wrong constant name use_authenticated_message_encryption= -# undefined method `generate1' for class `ActiveSupport::MessageVerifier' -# undefined method `generate2' for class `ActiveSupport::MessageVerifier' -# undefined method `generate3' for class `ActiveSupport::MessageVerifier' -# wrong constant name -# wrong constant name generate1 -# wrong constant name generate2 -# wrong constant name generate3 -# wrong constant name generate -# wrong constant name valid_message? -# wrong constant name verify -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name initialize -# wrong constant name rotate -# undefined method `decrypt_and_verify1' for module `ActiveSupport::Messages::Rotator::Encryptor' -# wrong constant name decrypt_and_verify1 -# wrong constant name decrypt_and_verify -# wrong constant name -# undefined method `verified1' for module `ActiveSupport::Messages::Rotator::Verifier' -# wrong constant name verified1 -# wrong constant name verified -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# undefined method `normalize1' for class `ActiveSupport::Multibyte::Chars' -# undefined method `tidy_bytes1' for class `ActiveSupport::Multibyte::Chars' -# wrong constant name <=> -# wrong constant name =~ -# wrong constant name acts_like_string? -# wrong constant name compose -# wrong constant name decompose -# wrong constant name grapheme_length -# wrong constant name initialize -# wrong constant name limit -# wrong constant name method_missing -# wrong constant name normalize1 -# wrong constant name normalize -# wrong constant name reverse -# wrong constant name reverse! -# wrong constant name slice! -# wrong constant name split -# wrong constant name tidy_bytes1 -# wrong constant name tidy_bytes -# wrong constant name tidy_bytes! -# wrong constant name titlecase -# wrong constant name titleize -# wrong constant name to_str -# wrong constant name wrapped_string -# wrong constant name -# wrong constant name consumes? -# undefined method `normalize1' for module `ActiveSupport::Multibyte::Unicode' -# undefined method `tidy_bytes1' for module `ActiveSupport::Multibyte::Unicode' -# wrong constant name compose -# wrong constant name decompose -# wrong constant name default_normalization_form -# wrong constant name default_normalization_form= -# wrong constant name downcase -# wrong constant name normalize1 -# wrong constant name normalize -# wrong constant name pack_graphemes -# wrong constant name swapcase -# wrong constant name tidy_bytes1 -# wrong constant name tidy_bytes -# wrong constant name unpack_graphemes -# wrong constant name upcase -# wrong constant name -# wrong constant name -# wrong constant name proxy_class -# wrong constant name proxy_class= -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name << -# wrong constant name allocations -# wrong constant name children -# wrong constant name cpu_time -# wrong constant name duration -# wrong constant name end -# wrong constant name end= -# wrong constant name finish! -# wrong constant name idle_time -# wrong constant name initialize -# wrong constant name name -# wrong constant name parent_of? -# wrong constant name payload -# wrong constant name start! -# wrong constant name time -# wrong constant name transaction_id -# wrong constant name -# undefined method `finish1' for class `ActiveSupport::Notifications::Fanout' -# undefined method `subscribe1' for class `ActiveSupport::Notifications::Fanout' -# undefined method `subscribe2' for class `ActiveSupport::Notifications::Fanout' -# wrong constant name -# uninitialized constant ActiveSupport::Notifications::Fanout::VERSION -# wrong constant name finish1 -# wrong constant name finish -# wrong constant name initialize -# wrong constant name listeners_for -# wrong constant name listening? -# wrong constant name lock -# wrong constant name locked? -# wrong constant name publish -# wrong constant name start -# wrong constant name subscribe1 -# wrong constant name subscribe2 -# wrong constant name subscribe -# wrong constant name synchronize -# wrong constant name try_lock -# wrong constant name unlock -# wrong constant name unsubscribe -# wrong constant name wait -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name finish -# wrong constant name initialize -# wrong constant name matches? -# wrong constant name publish -# wrong constant name start -# wrong constant name subscribed_to? -# wrong constant name unsubscribe! -# wrong constant name -# wrong constant name -# wrong constant name finish -# wrong constant name initialize -# wrong constant name matches? -# wrong constant name pattern -# wrong constant name publish -# wrong constant name start -# wrong constant name subscribed_to? -# wrong constant name unsubscribe! -# wrong constant name -# wrong constant name === -# wrong constant name exclusions -# wrong constant name initialize -# wrong constant name pattern -# wrong constant name unsubscribe! -# wrong constant name -# wrong constant name wrap -# wrong constant name -# wrong constant name -# wrong constant name event_object_subscriber -# wrong constant name new -# wrong constant name wrap_all -# wrong constant name -# wrong constant name instrumenter_for -# wrong constant name -# undefined method `instrument1' for class `ActiveSupport::Notifications::Instrumenter' -# wrong constant name finish -# wrong constant name finish_with_state -# wrong constant name id -# wrong constant name initialize -# wrong constant name instrument1 -# wrong constant name instrument -# wrong constant name start -# wrong constant name -# undefined singleton method `instrument1' for `ActiveSupport::Notifications' -# wrong constant name -# wrong constant name instrument1 -# wrong constant name instrument -# wrong constant name instrumenter -# wrong constant name notifier -# wrong constant name notifier= -# wrong constant name publish -# wrong constant name subscribe -# wrong constant name subscribed -# wrong constant name unsubscribe -# undefined method `number_to_currency1' for module `ActiveSupport::NumberHelper' -# undefined method `number_to_delimited1' for module `ActiveSupport::NumberHelper' -# undefined method `number_to_human1' for module `ActiveSupport::NumberHelper' -# undefined method `number_to_human_size1' for module `ActiveSupport::NumberHelper' -# undefined method `number_to_percentage1' for module `ActiveSupport::NumberHelper' -# undefined method `number_to_phone1' for module `ActiveSupport::NumberHelper' -# undefined method `number_to_rounded1' for module `ActiveSupport::NumberHelper' -# 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 number_to_currency1 -# wrong constant name number_to_currency -# wrong constant name number_to_delimited1 -# wrong constant name number_to_delimited -# wrong constant name number_to_human1 -# wrong constant name number_to_human -# wrong constant name number_to_human_size1 -# wrong constant name number_to_human_size -# wrong constant name number_to_percentage1 -# wrong constant name number_to_percentage -# wrong constant name number_to_phone1 -# wrong constant name number_to_phone -# wrong constant name number_to_rounded1 -# wrong constant name number_to_rounded -# wrong constant name execute -# wrong constant name initialize -# wrong constant name namespace -# wrong constant name namespace= -# wrong constant name namespace? -# wrong constant name number -# wrong constant name opts -# wrong constant name validate_float -# wrong constant name validate_float= -# wrong constant name validate_float? -# wrong constant name -# wrong constant name convert -# wrong constant name namespace -# wrong constant name namespace= -# wrong constant name namespace? -# wrong constant name validate_float -# wrong constant name validate_float= -# wrong constant name validate_float? -# uninitialized constant ActiveSupport::NumberHelper::NumberToCurrencyConverter::DEFAULTS -# wrong constant name convert -# wrong constant name -# uninitialized constant ActiveSupport::NumberHelper::NumberToDelimitedConverter::DEFAULTS -# wrong constant name convert -# wrong constant name -# uninitialized constant ActiveSupport::NumberHelper::NumberToHumanConverter::DEFAULTS -# wrong constant name convert -# wrong constant name -# uninitialized constant ActiveSupport::NumberHelper::NumberToHumanSizeConverter::DEFAULTS -# wrong constant name convert -# wrong constant name -# uninitialized constant ActiveSupport::NumberHelper::NumberToPercentageConverter::DEFAULTS -# wrong constant name convert -# wrong constant name -# uninitialized constant ActiveSupport::NumberHelper::NumberToPhoneConverter::DEFAULTS -# wrong constant name convert -# wrong constant name -# uninitialized constant ActiveSupport::NumberHelper::NumberToRoundedConverter::DEFAULTS -# wrong constant name convert -# wrong constant name -# wrong constant name digit_count -# wrong constant name initialize -# wrong constant name options -# wrong constant name round -# wrong constant name -# wrong constant name -# wrong constant name initialize -# wrong constant name -# uninitialized constant ActiveSupport::OrderedHash::DEFAULT_INDENT -# uninitialized constant ActiveSupport::OrderedHash::Elem -# uninitialized constant ActiveSupport::OrderedHash::K -# uninitialized constant ActiveSupport::OrderedHash::V -# wrong constant name encode_with -# wrong constant name nested_under_indifferent_access -# wrong constant name reject -# wrong constant name select -# wrong constant name to_yaml_type -# wrong constant name -# uninitialized constant ActiveSupport::OrderedOptions::DEFAULT_INDENT -# uninitialized constant ActiveSupport::OrderedOptions::Elem -# uninitialized constant ActiveSupport::OrderedOptions::K -# uninitialized constant ActiveSupport::OrderedOptions::V -# wrong constant name [] -# wrong constant name []= -# wrong constant name _get -# wrong constant name method_missing -# wrong constant name -# wrong constant name instance -# wrong constant name -# wrong constant name extended -# wrong constant name raise -# wrong constant name -# uninitialized constant ActiveSupport::Reloader::CALLBACK_FILTER_TYPES -# uninitialized constant ActiveSupport::Reloader::Null -# wrong constant name _class_unload_callbacks -# wrong constant name _prepare_callbacks -# wrong constant name _run_class_unload_callbacks -# wrong constant name _run_prepare_callbacks -# wrong constant name check -# wrong constant name check= -# wrong constant name check? -# wrong constant name class_unload! -# wrong constant name executor -# wrong constant name executor= -# wrong constant name executor? -# wrong constant name release_unload_lock! -# wrong constant name require_unload_lock! -# wrong constant name -# wrong constant name _class_unload_callbacks -# wrong constant name _class_unload_callbacks= -# wrong constant name _prepare_callbacks -# wrong constant name _prepare_callbacks= -# wrong constant name after_class_unload -# wrong constant name before_class_unload -# wrong constant name check -# wrong constant name check! -# wrong constant name check= -# wrong constant name check? -# wrong constant name executor -# wrong constant name executor= -# wrong constant name executor? -# wrong constant name prepare! -# wrong constant name reload! -# wrong constant name reloaded! -# wrong constant name to_prepare -# wrong constant name -# wrong constant name handler_for_rescue -# wrong constant name rescue_with_handler -# undefined method `handler_for_rescue1' for module `ActiveSupport::Rescuable::ClassMethods' -# undefined method `rescue_from1' for module `ActiveSupport::Rescuable::ClassMethods' -# undefined method `rescue_with_handler1' for module `ActiveSupport::Rescuable::ClassMethods' -# undefined method `rescue_with_handler2' for module `ActiveSupport::Rescuable::ClassMethods' -# wrong constant name handler_for_rescue1 -# wrong constant name handler_for_rescue -# wrong constant name rescue_from1 -# wrong constant name rescue_from -# wrong constant name rescue_with_handler1 -# wrong constant name rescue_with_handler2 -# wrong constant name rescue_with_handler -# wrong constant name -# wrong constant name -# undefined method `initialize1' for class `ActiveSupport::SafeBuffer' -# wrong constant name % -# wrong constant name * -# wrong constant name + -# wrong constant name << -# uninitialized constant ActiveSupport::SafeBuffer::BLANK_RE -# uninitialized constant ActiveSupport::SafeBuffer::ENCODED_BLANKS -# wrong constant name -# wrong constant name [] -# wrong constant name []= -# wrong constant name capitalize -# wrong constant name capitalize! -# wrong constant name chomp -# wrong constant name chomp! -# wrong constant name chop -# wrong constant name chop! -# wrong constant name clone_empty -# wrong constant name concat -# wrong constant name delete -# wrong constant name delete! -# wrong constant name delete_prefix -# wrong constant name delete_prefix! -# wrong constant name delete_suffix -# wrong constant name delete_suffix! -# wrong constant name downcase -# wrong constant name downcase! -# wrong constant name encode_with -# wrong constant name gsub -# wrong constant name gsub! -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name insert -# wrong constant name lstrip -# wrong constant name lstrip! -# wrong constant name next -# wrong constant name next! -# wrong constant name prepend -# wrong constant name replace -# wrong constant name reverse -# wrong constant name reverse! -# wrong constant name rstrip -# wrong constant name rstrip! -# wrong constant name safe_concat -# wrong constant name slice -# wrong constant name slice! -# wrong constant name squeeze -# wrong constant name squeeze! -# wrong constant name strip -# wrong constant name strip! -# wrong constant name sub -# wrong constant name sub! -# wrong constant name succ -# wrong constant name succ! -# wrong constant name swapcase -# wrong constant name swapcase! -# wrong constant name tr -# wrong constant name tr! -# wrong constant name tr_s -# wrong constant name tr_s! -# wrong constant name unicode_normalize -# wrong constant name unicode_normalize! -# wrong constant name upcase -# wrong constant name upcase! -# wrong constant name initialize -# wrong constant name -# wrong constant name -# uninitialized constant ActiveSupport::StringInquirer::BLANK_RE -# uninitialized constant ActiveSupport::StringInquirer::ENCODED_BLANKS -# wrong constant name -# wrong constant name finish -# wrong constant name patterns -# wrong constant name start -# undefined singleton method `attach_to1' for `ActiveSupport::Subscriber' -# undefined singleton method `attach_to2' for `ActiveSupport::Subscriber' -# undefined singleton method `detach_from1' for `ActiveSupport::Subscriber' -# wrong constant name -# wrong constant name attach_to1 -# wrong constant name attach_to2 -# wrong constant name attach_to -# wrong constant name detach_from1 -# wrong constant name detach_from -# wrong constant name method_added -# wrong constant name subscribers -# wrong constant name get_queue -# wrong constant name -# wrong constant name -# wrong constant name clear_tags! -# wrong constant name flush -# wrong constant name pop_tags -# wrong constant name push_tags -# wrong constant name tagged -# undefined method `pop_tags1' for module `ActiveSupport::TaggedLogging::Formatter' -# wrong constant name call -# wrong constant name clear_tags! -# wrong constant name current_tags -# wrong constant name pop_tags1 -# wrong constant name pop_tags -# wrong constant name push_tags -# wrong constant name tagged -# wrong constant name tags_text -# wrong constant name -# wrong constant name -# wrong constant name new -# undefined method `assert_no_match1' for class `ActiveSupport::TestCase' -# undefined method `assert_not_empty1' for class `ActiveSupport::TestCase' -# undefined method `assert_not_equal1' for class `ActiveSupport::TestCase' -# undefined method `assert_not_in_delta1' for class `ActiveSupport::TestCase' -# undefined method `assert_not_in_delta2' for class `ActiveSupport::TestCase' -# undefined method `assert_not_in_epsilon1' for class `ActiveSupport::TestCase' -# undefined method `assert_not_in_epsilon2' for class `ActiveSupport::TestCase' -# undefined method `assert_not_includes1' for class `ActiveSupport::TestCase' -# undefined method `assert_not_instance_of1' for class `ActiveSupport::TestCase' -# undefined method `assert_not_kind_of1' for class `ActiveSupport::TestCase' -# undefined method `assert_not_nil1' for class `ActiveSupport::TestCase' -# undefined method `assert_not_operator1' for class `ActiveSupport::TestCase' -# undefined method `assert_not_operator2' for class `ActiveSupport::TestCase' -# undefined method `assert_not_predicate1' for class `ActiveSupport::TestCase' -# undefined method `assert_not_respond_to1' for class `ActiveSupport::TestCase' -# undefined method `assert_not_same1' for class `ActiveSupport::TestCase' -# uninitialized constant ActiveSupport::TestCase::CALLBACK_FILTER_TYPES -# uninitialized constant ActiveSupport::TestCase::E -# uninitialized constant ActiveSupport::TestCase::PASSTHROUGH_EXCEPTIONS -# uninitialized constant ActiveSupport::TestCase::SIGNALS -# uninitialized constant ActiveSupport::TestCase::TEARDOWN_METHODS -# uninitialized constant ActiveSupport::TestCase::UNDEFINED -# uninitialized constant ActiveSupport::TestCase::UNTRACKED -# wrong constant name __callbacks -# wrong constant name __callbacks? -# wrong constant name _run_setup_callbacks -# wrong constant name _run_teardown_callbacks -# wrong constant name _setup_callbacks -# wrong constant name _teardown_callbacks -# wrong constant name assert_no_match1 -# wrong constant name assert_no_match -# wrong constant name assert_not_empty1 -# wrong constant name assert_not_empty -# wrong constant name assert_not_equal1 -# wrong constant name assert_not_equal -# wrong constant name assert_not_in_delta1 -# wrong constant name assert_not_in_delta2 -# wrong constant name assert_not_in_delta -# wrong constant name assert_not_in_epsilon1 -# wrong constant name assert_not_in_epsilon2 -# wrong constant name assert_not_in_epsilon -# wrong constant name assert_not_includes1 -# wrong constant name assert_not_includes -# wrong constant name assert_not_instance_of1 -# wrong constant name assert_not_instance_of -# wrong constant name assert_not_kind_of1 -# wrong constant name assert_not_kind_of -# wrong constant name assert_not_nil1 -# wrong constant name assert_not_nil -# wrong constant name assert_not_operator1 -# wrong constant name assert_not_operator2 -# wrong constant name assert_not_operator -# wrong constant name assert_not_predicate1 -# wrong constant name assert_not_predicate -# wrong constant name assert_not_respond_to1 -# wrong constant name assert_not_respond_to -# wrong constant name assert_not_same1 -# wrong constant name assert_not_same -# wrong constant name assert_raise -# wrong constant name file_fixture_path -# wrong constant name file_fixture_path? -# wrong constant name method_name -# undefined singleton method `parallelize1' for `ActiveSupport::TestCase' -# undefined singleton method `parallelize2' for `ActiveSupport::TestCase' -# wrong constant name -# wrong constant name __callbacks -# wrong constant name __callbacks= -# wrong constant name __callbacks? -# wrong constant name _setup_callbacks -# wrong constant name _setup_callbacks= -# wrong constant name _teardown_callbacks -# wrong constant name _teardown_callbacks= -# wrong constant name file_fixture_path -# wrong constant name file_fixture_path= -# wrong constant name file_fixture_path? -# wrong constant name parallelize1 -# wrong constant name parallelize2 -# wrong constant name parallelize -# wrong constant name parallelize_setup -# wrong constant name parallelize_teardown -# wrong constant name test_order= -# undefined method `assert_changes1' for module `ActiveSupport::Testing::Assertions' -# undefined method `assert_changes2' for module `ActiveSupport::Testing::Assertions' -# undefined method `assert_changes3' for module `ActiveSupport::Testing::Assertions' -# undefined method `assert_no_changes1' for module `ActiveSupport::Testing::Assertions' -# undefined method `assert_no_difference1' for module `ActiveSupport::Testing::Assertions' -# undefined method `assert_not1' for module `ActiveSupport::Testing::Assertions' -# wrong constant name assert_changes1 -# wrong constant name assert_changes2 -# wrong constant name assert_changes3 -# wrong constant name assert_changes -# wrong constant name assert_difference -# wrong constant name assert_no_changes1 -# wrong constant name assert_no_changes -# wrong constant name assert_no_difference1 -# wrong constant name assert_no_difference -# wrong constant name assert_not1 -# wrong constant name assert_not -# wrong constant name assert_nothing_raised -# wrong constant name -# undefined method `assert_deprecated1' for module `ActiveSupport::Testing::Deprecation' -# undefined method `assert_deprecated2' for module `ActiveSupport::Testing::Deprecation' -# undefined method `assert_not_deprecated1' for module `ActiveSupport::Testing::Deprecation' -# undefined method `collect_deprecations1' for module `ActiveSupport::Testing::Deprecation' -# wrong constant name assert_deprecated1 -# wrong constant name assert_deprecated2 -# wrong constant name assert_deprecated -# wrong constant name assert_not_deprecated1 -# wrong constant name assert_not_deprecated -# wrong constant name collect_deprecations1 -# wrong constant name collect_deprecations -# wrong constant name -# wrong constant name file_fixture -# wrong constant name -# wrong constant name after_teardown -# wrong constant name before_setup -# wrong constant name -# wrong constant name prepended -# wrong constant name before_setup -# wrong constant name tagged_logger= -# wrong constant name -# wrong constant name after_teardown -# wrong constant name freeze_time -# wrong constant name travel -# wrong constant name travel_back -# wrong constant name travel_to -# wrong constant name unfreeze_time -# wrong constant name -# undefined method `formatted_offset1' for class `ActiveSupport::TimeWithZone' -# undefined method `formatted_offset2' for class `ActiveSupport::TimeWithZone' -# undefined method `getlocal1' for class `ActiveSupport::TimeWithZone' -# undefined method `in_time_zone1' for class `ActiveSupport::TimeWithZone' -# undefined method `initialize1' for class `ActiveSupport::TimeWithZone' -# undefined method `initialize2' for class `ActiveSupport::TimeWithZone' -# undefined method `iso86011' for class `ActiveSupport::TimeWithZone' -# undefined method `localtime1' for class `ActiveSupport::TimeWithZone' -# undefined method `respond_to?1' for class `ActiveSupport::TimeWithZone' -# undefined method `rfc33391' for class `ActiveSupport::TimeWithZone' -# undefined method `to_formatted_s1' for class `ActiveSupport::TimeWithZone' -# undefined method `to_s1' for class `ActiveSupport::TimeWithZone' -# undefined method `xmlschema1' for class `ActiveSupport::TimeWithZone' -# wrong constant name + -# wrong constant name - -# wrong constant name <=> -# wrong constant name acts_like_time? -# wrong constant name advance -# wrong constant name after? -# wrong constant name ago -# wrong constant name before? -# wrong constant name between? -# wrong constant name change -# wrong constant name comparable_time -# wrong constant name day -# wrong constant name dst? -# wrong constant name encode_with -# wrong constant name eql? -# wrong constant name formatted_offset1 -# wrong constant name formatted_offset2 -# wrong constant name formatted_offset -# wrong constant name future? -# wrong constant name getgm -# wrong constant name getlocal1 -# wrong constant name getlocal -# wrong constant name getutc -# wrong constant name gmt? -# wrong constant name gmt_offset -# wrong constant name gmtime -# wrong constant name gmtoff -# wrong constant name hour -# wrong constant name httpdate -# wrong constant name in -# wrong constant name in_time_zone1 -# wrong constant name in_time_zone -# wrong constant name init_with -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name is_a? -# wrong constant name isdst -# wrong constant name iso86011 -# wrong constant name iso8601 -# wrong constant name kind_of? -# wrong constant name localtime1 -# wrong constant name localtime -# wrong constant name marshal_dump -# wrong constant name marshal_load -# wrong constant name mday -# wrong constant name method_missing -# wrong constant name min -# wrong constant name mon -# wrong constant name month -# wrong constant name nsec -# wrong constant name past? -# wrong constant name period -# wrong constant name respond_to?1 -# wrong constant name respond_to? -# wrong constant name rfc2822 -# wrong constant name rfc33391 -# wrong constant name rfc3339 -# wrong constant name rfc822 -# wrong constant name sec -# wrong constant name since -# wrong constant name strftime -# wrong constant name time -# wrong constant name time_zone -# wrong constant name to_a -# wrong constant name to_date -# wrong constant name to_datetime -# wrong constant name to_f -# wrong constant name to_formatted_s1 -# wrong constant name to_formatted_s -# wrong constant name to_i -# wrong constant name to_r -# wrong constant name to_s1 -# wrong constant name to_s -# wrong constant name to_time -# wrong constant name today? -# wrong constant name tv_sec -# wrong constant name usec -# wrong constant name utc -# wrong constant name utc? -# wrong constant name utc_offset -# wrong constant name wday -# wrong constant name xmlschema1 -# wrong constant name xmlschema -# wrong constant name yday -# wrong constant name year -# wrong constant name zone -# wrong constant name -# undefined method `formatted_offset1' for class `ActiveSupport::TimeZone' -# undefined method `formatted_offset2' for class `ActiveSupport::TimeZone' -# undefined method `initialize1' for class `ActiveSupport::TimeZone' -# undefined method `initialize2' for class `ActiveSupport::TimeZone' -# undefined method `local_to_utc1' for class `ActiveSupport::TimeZone' -# undefined method `parse1' for class `ActiveSupport::TimeZone' -# undefined method `period_for_local1' for class `ActiveSupport::TimeZone' -# undefined method `strptime1' for class `ActiveSupport::TimeZone' -# wrong constant name <=> -# wrong constant name =~ -# wrong constant name at -# wrong constant name encode_with -# wrong constant name formatted_offset1 -# wrong constant name formatted_offset2 -# wrong constant name formatted_offset -# wrong constant name init_with -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name iso8601 -# wrong constant name local -# wrong constant name local_to_utc1 -# wrong constant name local_to_utc -# wrong constant name name -# wrong constant name now -# wrong constant name parse1 -# wrong constant name parse -# wrong constant name period_for_local1 -# wrong constant name period_for_local -# wrong constant name period_for_utc -# wrong constant name periods_for_local -# wrong constant name rfc3339 -# wrong constant name strptime1 -# wrong constant name strptime -# wrong constant name today -# wrong constant name tomorrow -# wrong constant name tzinfo -# wrong constant name utc_offset -# wrong constant name utc_to_local -# wrong constant name yesterday -# undefined singleton method `seconds_to_utc_offset1' for `ActiveSupport::TimeZone' -# wrong constant name -# wrong constant name [] -# wrong constant name all -# wrong constant name clear -# wrong constant name country_zones -# wrong constant name create -# wrong constant name find_tzinfo -# wrong constant name new -# wrong constant name seconds_to_utc_offset1 -# wrong constant name seconds_to_utc_offset -# wrong constant name us_zones -# undefined method `to_json1' for module `ActiveSupport::ToJsonWithActiveSupportEncoder' -# wrong constant name to_json1 -# wrong constant name to_json -# wrong constant name -# undefined method `try1' for module `ActiveSupport::Tryable' -# undefined method `try!1' for module `ActiveSupport::Tryable' -# wrong constant name try1 -# wrong constant name try -# wrong constant name try!1 -# wrong constant name try! -# wrong constant name -# wrong constant name -# undefined method `rename_key1' for module `ActiveSupport::XmlMini' -# wrong constant name -# wrong constant name backend -# wrong constant name backend= -# wrong constant name depth -# wrong constant name depth= -# wrong constant name parse -# wrong constant name rename_key1 -# wrong constant name rename_key -# wrong constant name to_tag -# wrong constant name with_backend -# wrong constant name content_type -# wrong constant name content_type= -# wrong constant name original_filename -# wrong constant name original_filename= -# wrong constant name -# wrong constant name -# wrong constant name parse -# wrong constant name -# wrong constant name -# wrong constant name escape_html_entities_in_json -# wrong constant name escape_html_entities_in_json= -# wrong constant name gem_version -# wrong constant name json_encoder -# wrong constant name json_encoder= -# wrong constant name parse_json_times -# wrong constant name parse_json_times= -# wrong constant name test_order -# wrong constant name test_order= -# wrong constant name time_precision -# wrong constant name time_precision= -# wrong constant name to_time_preserves_timezone -# wrong constant name to_time_preserves_timezone= -# wrong constant name use_standard_json_time_format -# wrong constant name use_standard_json_time_format= -# wrong constant name version -# undefined method `connect_internal1' for class `Addrinfo' -# wrong constant name connect_internal1 -# wrong constant name connect_internal -# undefined method `to_formatted_s1' for class `Array' -# undefined method `to_s1' for class `Array' -# undefined method `to_sentence1' for class `Array' -# undefined method `to_xml1' for class `Array' -# uninitialized constant Array::DEFAULT_INDENT -# wrong constant name excluding -# wrong constant name extract_options! -# wrong constant name fifth -# wrong constant name forty_two -# wrong constant name fourth -# wrong constant name from -# wrong constant name including -# wrong constant name second -# wrong constant name second_to_last -# wrong constant name shelljoin -# wrong constant name third -# wrong constant name third_to_last -# wrong constant name to -# wrong constant name to_default_s -# wrong constant name to_formatted_s1 -# wrong constant name to_formatted_s -# wrong constant name to_h -# wrong constant name to_s1 -# wrong constant name to_sentence1 -# wrong constant name to_sentence -# wrong constant name to_xml1 -# wrong constant name to_xml -# wrong constant name without -# wrong constant name try_convert -# wrong constant name wrap -# undefined method `should1' for class `BasicObject' -# undefined method `should2' for class `BasicObject' -# undefined method `should_not1' for class `BasicObject' -# undefined method `should_not2' for class `BasicObject' -# undefined method `should_receive1' for class `BasicObject' -# undefined method `stub1' for class `BasicObject' -# wrong constant name __binding__ -# wrong constant name as_null_object -# wrong constant name initialize -# wrong constant name null_object? -# wrong constant name received_message? -# wrong constant name should1 -# wrong constant name should2 -# wrong constant name should -# wrong constant name should_not1 -# wrong constant name should_not2 -# wrong constant name should_not -# wrong constant name should_not_receive -# wrong constant name should_receive1 -# wrong constant name should_receive -# wrong constant name stub1 -# wrong constant name stub -# wrong constant name stub_chain -# wrong constant name unstub -# wrong constant name -# wrong constant name initialize -# undefined method `initialize1' for class `Benchmark::Report' -# undefined method `initialize2' for class `Benchmark::Report' -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name to_a -# undefined singleton method `benchmark3' for `Benchmark' -# wrong constant name benchmark3 -# wrong constant name ms -# uninitialized constant BigDecimal::EXABYTE -# uninitialized constant BigDecimal::GIGABYTE -# uninitialized constant BigDecimal::KILOBYTE -# uninitialized constant BigDecimal::MEGABYTE -# uninitialized constant BigDecimal::PETABYTE -# uninitialized constant BigDecimal::TERABYTE -# wrong constant name clone -# wrong constant name to_digits -# wrong constant name new -# wrong constant name clone -# wrong constant name irb -# undefined singleton method `report1' for `Bundler::Env' -# wrong constant name -# wrong constant name environment -# wrong constant name report1 -# wrong constant name report -# wrong constant name write -# wrong constant name github_https? -# wrong constant name global_path_appends_ruby_scope? -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name fetch_spec -# wrong constant name fetchers -# wrong constant name http_proxy -# wrong constant name initialize -# wrong constant name specs -# wrong constant name specs_with_retry -# wrong constant name uri -# wrong constant name use_api -# wrong constant name user_agent -# wrong constant name initialize -# wrong constant name initialize -# wrong constant name api_fetcher? -# wrong constant name available? -# wrong constant name display_uri -# wrong constant name downloader -# wrong constant name fetch_uri -# wrong constant name initialize -# wrong constant name remote -# wrong constant name remote_uri -# wrong constant name -# 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 -# wrong constant name call -# wrong constant name fetcher -# wrong constant name fetcher= -# wrong constant name ui -# wrong constant name ui= -# wrong constant name -# wrong constant name [] -# wrong constant name members -# wrong constant name -# wrong constant name compact_index_request -# undefined method `dependency_api_uri1' for class `Bundler::Fetcher::Dependency' -# undefined method `specs1' for class `Bundler::Fetcher::Dependency' -# undefined method `specs2' for class `Bundler::Fetcher::Dependency' -# wrong constant name dependency_api_uri1 -# wrong constant name dependency_api_uri -# wrong constant name dependency_specs -# wrong constant name get_formatted_specs_and_deps -# wrong constant name specs1 -# wrong constant name specs2 -# wrong constant name specs -# wrong constant name unmarshalled_dep_gems -# wrong constant name -# undefined method `fetch1' for class `Bundler::Fetcher::Downloader' -# undefined method `fetch2' for class `Bundler::Fetcher::Downloader' -# wrong constant name connection -# wrong constant name fetch1 -# wrong constant name fetch2 -# wrong constant name fetch -# wrong constant name initialize -# wrong constant name redirect_limit -# wrong constant name request -# wrong constant name -# wrong constant name fetch_spec -# wrong constant name specs -# wrong constant name -# undefined method `initialize1' for class `Bundler::Fetcher::SSLError' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name api_timeout -# wrong constant name api_timeout= -# wrong constant name disable_endpoint -# wrong constant name disable_endpoint= -# wrong constant name max_retries -# wrong constant name max_retries= -# wrong constant name redirect_limit -# wrong constant name redirect_limit= -# undefined method `git_push1' for class `Bundler::GemHelper' -# undefined method `initialize1' for class `Bundler::GemHelper' -# undefined method `initialize2' for class `Bundler::GemHelper' -# undefined method `install_gem1' for class `Bundler::GemHelper' -# undefined method `install_gem2' for class `Bundler::GemHelper' -# undefined method `perform_git_push1' for class `Bundler::GemHelper' -# wrong constant name allowed_push_host -# wrong constant name already_tagged? -# wrong constant name base -# wrong constant name build_gem -# wrong constant name built_gem_path -# wrong constant name clean? -# wrong constant name committed? -# wrong constant name gem_key -# wrong constant name gem_push? -# wrong constant name gem_push_host -# wrong constant name gemspec -# wrong constant name git_push1 -# wrong constant name git_push -# wrong constant name guard_clean -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name install -# wrong constant name install_gem1 -# wrong constant name install_gem2 -# wrong constant name install_gem -# wrong constant name name -# wrong constant name perform_git_push1 -# wrong constant name perform_git_push -# wrong constant name rubygem_push -# wrong constant name sh -# wrong constant name sh_with_code -# wrong constant name spec_path -# wrong constant name tag_version -# wrong constant name version -# wrong constant name version_tag -# undefined singleton method `install_tasks1' for `Bundler::GemHelper' -# wrong constant name -# wrong constant name gemspec -# wrong constant name install_tasks1 -# wrong constant name install_tasks -# wrong constant name instance -# wrong constant name instance= -# uninitialized constant Bundler::GemRemoteFetcher::BASE64_URI_TRANSLATE -# wrong constant name -# undefined method `initialize1' for class `Bundler::GemVersionPromoter' -# undefined method `initialize2' for class `Bundler::GemVersionPromoter' -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name level -# wrong constant name level= -# wrong constant name locked_specs -# wrong constant name major? -# wrong constant name minor? -# wrong constant name prerelease_specified -# wrong constant name prerelease_specified= -# wrong constant name sort_versions -# wrong constant name strict -# wrong constant name strict= -# wrong constant name unlock_gems -# wrong constant name -# undefined method `initialize1' for class `Bundler::Graph' -# undefined method `initialize2' for class `Bundler::Graph' -# undefined method `initialize3' for class `Bundler::Graph' -# undefined method `initialize4' for class `Bundler::Graph' -# wrong constant name -# wrong constant name edge_options -# wrong constant name groups -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize3 -# wrong constant name initialize4 -# wrong constant name initialize -# wrong constant name node_options -# wrong constant name output_file -# wrong constant name output_format -# wrong constant name relations -# wrong constant name viz -# wrong constant name g -# wrong constant name initialize -# wrong constant name run -# wrong constant name -# wrong constant name -# undefined method `initialize1' for class `Bundler::Injector' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name inject -# wrong constant name remove -# undefined singleton method `inject1' for `Bundler::Injector' -# undefined singleton method `remove1' for `Bundler::Injector' -# wrong constant name -# wrong constant name inject1 -# wrong constant name inject -# wrong constant name remove1 -# wrong constant name remove -# undefined method `generate_bundler_executable_stubs1' for class `Bundler::Installer' -# wrong constant name generate_bundler_executable_stubs1 -# wrong constant name generate_bundler_executable_stubs -# wrong constant name generate_standalone_bundler_executable_stubs -# wrong constant name initialize -# wrong constant name post_install_messages -# wrong constant name run -# undefined singleton method `install1' for `Bundler::Installer' -# wrong constant name -# wrong constant name ambiguous_gems -# wrong constant name ambiguous_gems= -# wrong constant name install1 -# wrong constant name install -# undefined method `app_cache_path1' for module `Bundler::Plugin::API::Source' -# undefined method `cache1' for module `Bundler::Plugin::API::Source' -# undefined method `post_install1' for module `Bundler::Plugin::API::Source' -# wrong constant name == -# wrong constant name app_cache_dirname -# wrong constant name app_cache_path1 -# wrong constant name app_cache_path -# wrong constant name bundler_plugin_api_source? -# wrong constant name cache1 -# wrong constant name cache -# wrong constant name cached! -# wrong constant name can_lock? -# wrong constant name dependency_names -# wrong constant name dependency_names= -# wrong constant name double_check_for -# wrong constant name eql? -# wrong constant name fetch_gemspec_files -# wrong constant name gem_install_dir -# wrong constant name hash -# wrong constant name include? -# wrong constant name initialize -# wrong constant name install -# wrong constant name install_path -# wrong constant name installed? -# wrong constant name name -# wrong constant name options -# wrong constant name options_to_lock -# wrong constant name post_install1 -# wrong constant name post_install -# wrong constant name remote! -# wrong constant name root -# wrong constant name specs -# wrong constant name to_lock -# wrong constant name to_s -# wrong constant name unlock! -# wrong constant name unmet_deps -# wrong constant name uri -# wrong constant name uri_hash -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name install -# wrong constant name install_definition -# undefined method `generate_bin1' for class `Bundler::Plugin::Installer::Git' -# uninitialized constant Bundler::Plugin::Installer::Git::DEFAULT_GLOB -# wrong constant name generate_bin1 -# wrong constant name generate_bin -# wrong constant name -# uninitialized constant Bundler::Plugin::Installer::Rubygems::API_REQUEST_LIMIT -# uninitialized constant Bundler::Plugin::Installer::Rubygems::API_REQUEST_SIZE -# wrong constant name -# wrong constant name -# wrong constant name -# undefined singleton method `lock1' for `Bundler::ProcessLock' -# wrong constant name -# wrong constant name lock1 -# wrong constant name lock -# undefined method `initialize1' for class `Bundler::Retry' -# undefined method `initialize2' for class `Bundler::Retry' -# wrong constant name attempt -# wrong constant name attempts -# wrong constant name current_run -# wrong constant name current_run= -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name name -# wrong constant name name= -# wrong constant name total_runs -# wrong constant name total_runs= -# wrong constant name -# wrong constant name attempts -# wrong constant name default_attempts -# wrong constant name default_retries -# uninitialized constant Bundler::RubyGemsGemInstaller::ENV_PATHS -# wrong constant name -# uninitialized constant Bundler::RubygemsIntegration::MoreFuture::EXT_LOCK -# wrong constant name backport_ext_builder_monitor -# undefined method `initialize1' for class `Bundler::Settings::Mirror' -# undefined method `initialize2' for class `Bundler::Settings::Mirror' -# undefined method `validate!1' for class `Bundler::Settings::Mirror' -# wrong constant name == -# wrong constant name fallback_timeout -# wrong constant name fallback_timeout= -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name uri -# wrong constant name uri= -# wrong constant name valid? -# wrong constant name validate!1 -# wrong constant name validate! -# wrong constant name -# undefined method `initialize1' for class `Bundler::Settings::Mirrors' -# wrong constant name each -# wrong constant name for -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name parse -# wrong constant name -# wrong constant name -# wrong constant name description -# wrong constant name fail! -# wrong constant name initialize -# wrong constant name k -# wrong constant name set -# wrong constant name validate! -# wrong constant name -# wrong constant name -# wrong constant name validate! -# undefined method `confirm1' for class `Bundler::UI::Shell' -# undefined method `debug1' for class `Bundler::UI::Shell' -# undefined method `error1' for class `Bundler::UI::Shell' -# undefined method `info1' for class `Bundler::UI::Shell' -# undefined method `initialize1' for class `Bundler::UI::Shell' -# undefined method `level1' for class `Bundler::UI::Shell' -# undefined method `trace1' for class `Bundler::UI::Shell' -# undefined method `trace2' for class `Bundler::UI::Shell' -# undefined method `warn1' for class `Bundler::UI::Shell' -# wrong constant name add_color -# wrong constant name ask -# wrong constant name confirm1 -# wrong constant name confirm -# wrong constant name debug1 -# wrong constant name debug -# wrong constant name debug? -# wrong constant name error1 -# wrong constant name error -# wrong constant name info1 -# wrong constant name info -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name level1 -# wrong constant name level -# wrong constant name level= -# wrong constant name no? -# wrong constant name quiet? -# wrong constant name shell= -# wrong constant name silence -# wrong constant name trace1 -# wrong constant name trace2 -# wrong constant name trace -# wrong constant name unprinted_warnings -# wrong constant name warn1 -# wrong constant name warn -# wrong constant name yes? -# wrong constant name -# wrong constant name -# wrong constant name -# uninitialized constant Bundler::VersionRanges::NEq::Elem -# wrong constant name version -# wrong constant name version= -# wrong constant name -# wrong constant name [] -# wrong constant name members -# uninitialized constant Bundler::VersionRanges::ReqR::Elem -# wrong constant name -# wrong constant name cover? -# wrong constant name empty? -# wrong constant name left -# wrong constant name left= -# wrong constant name right -# wrong constant name right= -# wrong constant name single? -# uninitialized constant Bundler::VersionRanges::ReqR::Endpoint::Elem -# wrong constant name inclusive -# wrong constant name inclusive= -# wrong constant name version -# wrong constant name version= -# wrong constant name -# wrong constant name [] -# wrong constant name members -# wrong constant name -# wrong constant name [] -# wrong constant name members -# wrong constant name -# wrong constant name empty? -# wrong constant name for -# wrong constant name for_many -# 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 -# 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 displays -# wrong constant name displays= -# wrong constant name init_file -# wrong constant name init_file= -# wrong constant name mode -# wrong constant name mode= -# wrong constant name run_init_script -# wrong constant name banner -# wrong constant name value= -# wrong constant name -# wrong constant name banner -# wrong constant name value= -# wrong constant name -# wrong constant name banner -# wrong constant name value= -# wrong constant name -# wrong constant name banner -# wrong constant name -# uninitialized constant Byebug::BasenameSetting::DEFAULT -# wrong constant name banner -# wrong constant name -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name enabled= -# wrong constant name enabled? -# wrong constant name expr -# wrong constant name expr= -# wrong constant name hit_condition -# wrong constant name hit_condition= -# wrong constant name hit_count -# wrong constant name hit_value -# wrong constant name hit_value= -# wrong constant name id -# wrong constant name initialize -# wrong constant name pos -# wrong constant name source -# undefined singleton method `add1' for `Byebug::Breakpoint' -# wrong constant name -# wrong constant name add1 -# wrong constant name add -# wrong constant name first -# wrong constant name last -# wrong constant name none? -# wrong constant name potential_line? -# wrong constant name potential_lines -# wrong constant name remove -# wrong constant name banner -# wrong constant name -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# undefined method `initialize1' for class `Byebug::Command' -# wrong constant name arguments -# wrong constant name confirm -# wrong constant name context -# wrong constant name errmsg -# wrong constant name frame -# wrong constant name help -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name match -# wrong constant name pr -# wrong constant name prc -# wrong constant name print -# wrong constant name processor -# wrong constant name prv -# wrong constant name puts -# wrong constant name -# wrong constant name allow_in_control -# wrong constant name allow_in_control= -# wrong constant name allow_in_post_mortem -# wrong constant name allow_in_post_mortem= -# wrong constant name always_run -# wrong constant name always_run= -# wrong constant name columnize -# wrong constant name help -# wrong constant name match -# uninitialized constant Byebug::CommandList::Elem -# wrong constant name each -# wrong constant name initialize -# wrong constant name match -# wrong constant name -# undefined method `initialize1' for class `Byebug::CommandNotFound' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name -# undefined method `initialize1' for class `Byebug::CommandProcessor' -# wrong constant name after_repl -# wrong constant name at_breakpoint -# wrong constant name at_catchpoint -# wrong constant name at_end -# wrong constant name at_line -# wrong constant name at_return -# wrong constant name at_tracing -# wrong constant name before_repl -# wrong constant name command_list -# wrong constant name commands -# wrong constant name confirm -# wrong constant name context -# wrong constant name errmsg -# wrong constant name frame -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name interface -# wrong constant name pr -# wrong constant name prc -# wrong constant name prev_line -# wrong constant name prev_line= -# wrong constant name printer -# wrong constant name proceed! -# wrong constant name process_commands -# wrong constant name prompt -# wrong constant name prv -# wrong constant name puts -# wrong constant name repl -# wrong constant name -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name at_breakpoint -# wrong constant name at_catchpoint -# wrong constant name at_end -# wrong constant name at_line -# wrong constant name at_return -# wrong constant name at_tracing -# wrong constant name backtrace -# wrong constant name dead? -# wrong constant name file -# wrong constant name frame -# wrong constant name frame= -# wrong constant name frame_binding -# wrong constant name frame_class -# wrong constant name frame_file -# wrong constant name frame_line -# wrong constant name frame_method -# wrong constant name frame_self -# wrong constant name full_location -# wrong constant name ignored? -# wrong constant name interrupt -# wrong constant name line -# wrong constant name location -# wrong constant name resume -# wrong constant name stack_size -# wrong constant name step_into -# wrong constant name step_out -# wrong constant name step_over -# wrong constant name stop_reason -# wrong constant name suspend -# wrong constant name suspended? -# wrong constant name switch -# wrong constant name thnum -# wrong constant name thread -# wrong constant name tracing -# wrong constant name tracing= -# wrong constant name -# wrong constant name ignored_files -# wrong constant name ignored_files= -# wrong constant name interface -# wrong constant name interface= -# wrong constant name processor -# wrong constant name processor= -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name commands -# wrong constant name -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name -# wrong constant name inherited -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name -# wrong constant name -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name -# wrong constant name -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name _binding -# wrong constant name _class -# wrong constant name _method -# wrong constant name _self -# wrong constant name args -# wrong constant name c_frame? -# wrong constant name current? -# wrong constant name deco_args -# wrong constant name deco_block -# wrong constant name deco_call -# wrong constant name deco_class -# wrong constant name deco_file -# wrong constant name deco_method -# wrong constant name deco_pos -# wrong constant name file -# wrong constant name initialize -# wrong constant name line -# wrong constant name locals -# wrong constant name mark -# wrong constant name pos -# wrong constant name to_hash -# wrong constant name -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name banner -# wrong constant name -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# 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 executable_file_extensions -# wrong constant name find_executable -# wrong constant name real_executable? -# wrong constant name search_paths -# wrong constant name which -# wrong constant name -# undefined method `error_eval1' for module `Byebug::Helpers::EvalHelper' -# undefined method `silent_eval1' for module `Byebug::Helpers::EvalHelper' -# undefined method `warning_eval1' for module `Byebug::Helpers::EvalHelper' -# wrong constant name error_eval1 -# wrong constant name error_eval -# wrong constant name multiple_thread_eval -# wrong constant name separate_thread_eval -# wrong constant name silent_eval1 -# wrong constant name silent_eval -# wrong constant name warning_eval1 -# wrong constant name warning_eval -# wrong constant name -# wrong constant name get_line -# wrong constant name get_lines -# wrong constant name n_lines -# wrong constant name normalize -# wrong constant name shortpath -# wrong constant name virtual_file? -# wrong constant name -# wrong constant name jump_frames -# wrong constant name switch_to_frame -# wrong constant name -# undefined method `get_int1' for module `Byebug::Helpers::ParseHelper' -# undefined method `get_int2' for module `Byebug::Helpers::ParseHelper' -# wrong constant name get_int1 -# wrong constant name get_int2 -# wrong constant name get_int -# wrong constant name parse_steps -# wrong constant name syntax_valid? -# wrong constant name -# wrong constant name all_files -# wrong constant name bin_file -# wrong constant name gem_files -# wrong constant name lib_files -# wrong constant name root_path -# wrong constant name test_files -# wrong constant name -# wrong constant name commands -# wrong constant name -# undefined method `deindent1' for module `Byebug::Helpers::StringHelper' -# wrong constant name camelize -# wrong constant name deindent1 -# wrong constant name deindent -# wrong constant name prettify -# wrong constant name -# wrong constant name context_from_thread -# wrong constant name current_thread? -# wrong constant name display_context -# wrong constant name thread_arguments -# wrong constant name -# wrong constant name enable_disable_breakpoints -# wrong constant name enable_disable_display -# wrong constant name -# undefined method `var_list1' for module `Byebug::Helpers::VarHelper' -# wrong constant name var_args -# wrong constant name var_global -# wrong constant name var_instance -# wrong constant name var_list1 -# wrong constant name var_list -# wrong constant name var_local -# wrong constant name -# wrong constant name -# wrong constant name banner -# wrong constant name -# wrong constant name buffer -# wrong constant name clear -# wrong constant name default_max_size -# wrong constant name ignore? -# wrong constant name last_ids -# wrong constant name pop -# wrong constant name push -# wrong constant name restore -# wrong constant name save -# wrong constant name size -# wrong constant name size= -# wrong constant name specific_max_size -# wrong constant name to_s -# wrong constant name -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name banner -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# undefined method `read_input1' for class `Byebug::Interface' -# wrong constant name autorestore -# wrong constant name autosave -# wrong constant name close -# wrong constant name command_queue -# wrong constant name command_queue= -# wrong constant name confirm -# wrong constant name errmsg -# wrong constant name error -# wrong constant name history -# wrong constant name history= -# wrong constant name input -# wrong constant name last_if_empty -# wrong constant name output -# wrong constant name prepare_input -# wrong constant name print -# wrong constant name puts -# wrong constant name read_command -# wrong constant name read_file -# wrong constant name read_input1 -# wrong constant name read_input -# wrong constant name -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# uninitialized constant Byebug::LinetraceSetting::DEFAULT -# wrong constant name banner -# wrong constant name value= -# wrong constant name -# wrong constant name amend_final -# wrong constant name execute -# wrong constant name max_line -# wrong constant name size -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name banner -# wrong constant name -# wrong constant name readline -# wrong constant name with_repl_like_sigint -# wrong constant name without_readline_completion -# wrong constant name -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name commands -# wrong constant name -# uninitialized constant Byebug::PostMortemSetting::DEFAULT -# wrong constant name banner -# wrong constant name value= -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name type -# wrong constant name -# wrong constant name -# wrong constant name -# undefined method `print1' for class `Byebug::Printers::Plain' -# uninitialized constant Byebug::Printers::Plain::SEPARATOR -# wrong constant name print1 -# wrong constant name print -# wrong constant name print_collection -# wrong constant name print_variables -# wrong constant name -# wrong constant name -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name -# wrong constant name -# undefined method `start1' for class `Byebug::Remote::Client' -# undefined method `start2' for class `Byebug::Remote::Client' -# wrong constant name initialize -# wrong constant name interface -# wrong constant name socket -# wrong constant name start1 -# wrong constant name start2 -# wrong constant name start -# wrong constant name started? -# wrong constant name -# wrong constant name actual_port -# wrong constant name initialize -# wrong constant name start -# wrong constant name wait_connection -# wrong constant name -# wrong constant name -# wrong constant name initialize -# wrong constant name readline -# wrong constant name -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name banner -# wrong constant name -# undefined method `initialize1' for class `Byebug::ScriptInterface' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name -# wrong constant name commands -# wrong constant name -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name boolean? -# wrong constant name help -# wrong constant name integer? -# wrong constant name to_sym -# wrong constant name value -# wrong constant name value= -# wrong constant name -# wrong constant name [] -# wrong constant name []= -# wrong constant name find -# wrong constant name help_all -# wrong constant name settings -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name auto_run -# wrong constant name execute -# wrong constant name initialize_attributes -# wrong constant name keep_execution -# wrong constant name reset_attributes -# wrong constant name -# wrong constant name description -# wrong constant name file_line -# wrong constant name file_line= -# wrong constant name file_path -# wrong constant name file_path= -# wrong constant name previous_autolist -# wrong constant name regexp -# wrong constant name restore_autolist -# wrong constant name setup_autolist -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name amend -# wrong constant name amend_final -# wrong constant name amend_initial -# wrong constant name annotator -# wrong constant name file -# wrong constant name initialize -# wrong constant name lines -# wrong constant name lines_around -# wrong constant name max_initial_line -# wrong constant name max_line -# wrong constant name range_around -# wrong constant name range_from -# wrong constant name size -# wrong constant name -# uninitialized constant Byebug::StackOnErrorSetting::DEFAULT -# wrong constant name banner -# wrong constant name -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name -# wrong constant name execute -# wrong constant name subcommand_list -# wrong constant name help -# wrong constant name subcommand_list -# wrong constant name -# wrong constant name -# wrong constant name included -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name execute -# wrong constant name -# wrong constant name description -# wrong constant name regexp -# wrong constant name short_description -# wrong constant name banner -# wrong constant name -# undefined singleton method `start_client1' for `Byebug' -# undefined singleton method `start_client2' for `Byebug' -# undefined singleton method `start_control1' for `Byebug' -# undefined singleton method `start_control2' for `Byebug' -# undefined singleton method `start_server1' for `Byebug' -# undefined singleton method `start_server2' for `Byebug' -# wrong constant name actual_control_port -# wrong constant name actual_port -# wrong constant name handle_post_mortem -# wrong constant name interrupt -# wrong constant name load_settings -# wrong constant name parse_host_and_port -# wrong constant name start_client1 -# wrong constant name start_client2 -# wrong constant name start_client -# wrong constant name start_control1 -# wrong constant name start_control2 -# wrong constant name start_control -# wrong constant name start_server1 -# wrong constant name start_server2 -# wrong constant name start_server -# wrong constant name wait_connection -# wrong constant name wait_connection= -# undefined method `a1' for module `CGI::HtmlExtension' -# undefined method `base1' for module `CGI::HtmlExtension' -# undefined method `blockquote1' for module `CGI::HtmlExtension' -# undefined method `caption1' for module `CGI::HtmlExtension' -# undefined method `checkbox1' for module `CGI::HtmlExtension' -# undefined method `checkbox2' for module `CGI::HtmlExtension' -# undefined method `checkbox3' for module `CGI::HtmlExtension' -# undefined method `checkbox_group1' for module `CGI::HtmlExtension' -# undefined method `file_field1' for module `CGI::HtmlExtension' -# undefined method `file_field2' for module `CGI::HtmlExtension' -# undefined method `file_field3' for module `CGI::HtmlExtension' -# undefined method `form1' for module `CGI::HtmlExtension' -# undefined method `form2' for module `CGI::HtmlExtension' -# undefined method `form3' for module `CGI::HtmlExtension' -# undefined method `hidden1' for module `CGI::HtmlExtension' -# undefined method `hidden2' for module `CGI::HtmlExtension' -# undefined method `html1' for module `CGI::HtmlExtension' -# undefined method `image_button1' for module `CGI::HtmlExtension' -# undefined method `image_button2' for module `CGI::HtmlExtension' -# undefined method `image_button3' for module `CGI::HtmlExtension' -# undefined method `img1' for module `CGI::HtmlExtension' -# undefined method `img2' for module `CGI::HtmlExtension' -# undefined method `img3' for module `CGI::HtmlExtension' -# undefined method `img4' for module `CGI::HtmlExtension' -# undefined method `multipart_form1' for module `CGI::HtmlExtension' -# undefined method `multipart_form2' for module `CGI::HtmlExtension' -# undefined method `password_field1' for module `CGI::HtmlExtension' -# undefined method `password_field2' for module `CGI::HtmlExtension' -# undefined method `password_field3' for module `CGI::HtmlExtension' -# undefined method `password_field4' for module `CGI::HtmlExtension' -# undefined method `popup_menu1' for module `CGI::HtmlExtension' -# undefined method `radio_button1' for module `CGI::HtmlExtension' -# undefined method `radio_button2' for module `CGI::HtmlExtension' -# undefined method `radio_button3' for module `CGI::HtmlExtension' -# undefined method `radio_group1' for module `CGI::HtmlExtension' -# undefined method `reset1' for module `CGI::HtmlExtension' -# undefined method `reset2' for module `CGI::HtmlExtension' -# undefined method `scrolling_list1' for module `CGI::HtmlExtension' -# undefined method `submit1' for module `CGI::HtmlExtension' -# undefined method `submit2' for module `CGI::HtmlExtension' -# undefined method `text_field1' for module `CGI::HtmlExtension' -# undefined method `text_field2' for module `CGI::HtmlExtension' -# undefined method `text_field3' for module `CGI::HtmlExtension' -# undefined method `text_field4' for module `CGI::HtmlExtension' -# undefined method `textarea1' for module `CGI::HtmlExtension' -# undefined method `textarea2' for module `CGI::HtmlExtension' -# undefined method `textarea3' for module `CGI::HtmlExtension' -# wrong constant name a1 -# wrong constant name a -# wrong constant name base1 -# wrong constant name base -# wrong constant name blockquote1 -# wrong constant name blockquote -# wrong constant name caption1 -# wrong constant name caption -# wrong constant name checkbox1 -# wrong constant name checkbox2 -# wrong constant name checkbox3 -# wrong constant name checkbox -# wrong constant name checkbox_group1 -# wrong constant name checkbox_group -# wrong constant name file_field1 -# wrong constant name file_field2 -# wrong constant name file_field3 -# wrong constant name file_field -# wrong constant name form1 -# wrong constant name form2 -# wrong constant name form3 -# wrong constant name form -# wrong constant name hidden1 -# wrong constant name hidden2 -# wrong constant name hidden -# wrong constant name html1 -# wrong constant name html -# wrong constant name image_button1 -# wrong constant name image_button2 -# wrong constant name image_button3 -# wrong constant name image_button -# wrong constant name img1 -# wrong constant name img2 -# wrong constant name img3 -# wrong constant name img4 -# wrong constant name img -# wrong constant name multipart_form1 -# wrong constant name multipart_form2 -# wrong constant name multipart_form -# wrong constant name password_field1 -# wrong constant name password_field2 -# wrong constant name password_field3 -# wrong constant name password_field4 -# wrong constant name password_field -# wrong constant name popup_menu1 -# wrong constant name popup_menu -# wrong constant name radio_button1 -# wrong constant name radio_button2 -# wrong constant name radio_button3 -# wrong constant name radio_button -# wrong constant name radio_group1 -# wrong constant name radio_group -# wrong constant name reset1 -# wrong constant name reset2 -# wrong constant name reset -# wrong constant name scrolling_list1 -# wrong constant name scrolling_list -# wrong constant name submit1 -# wrong constant name submit2 -# wrong constant name submit -# wrong constant name text_field1 -# wrong constant name text_field2 -# wrong constant name text_field3 -# wrong constant name text_field4 -# wrong constant name text_field -# wrong constant name textarea1 -# wrong constant name textarea2 -# wrong constant name textarea3 -# wrong constant name textarea -# wrong constant name -# uninitialized constant CMath -# uninitialized constant CMath -# uninitialized constant CSV -# uninitialized constant CSV -# wrong constant name appcast? -# wrong constant name audit_appcast? -# wrong constant name audit_download? -# wrong constant name audit_new_cask? -# wrong constant name audit_online? -# wrong constant name audit_strict? -# wrong constant name audit_token_conflicts? -# wrong constant name quarantine? -# uninitialized constant Cask::Cask::METADATA_SUBDIR -# uninitialized constant Cask::Cask::TIMESTAMP_FORMAT -# wrong constant name app -# wrong constant name appcast -# wrong constant name appdir -# wrong constant name artifact -# wrong constant name artifacts -# wrong constant name audio_unit_plugin -# wrong constant name auto_updates -# wrong constant name binary -# wrong constant name caveats -# wrong constant name colorpicker -# wrong constant name conflicts_with -# wrong constant name container -# wrong constant name depends_on -# wrong constant name dictionary -# wrong constant name font -# wrong constant name homepage -# wrong constant name input_method -# wrong constant name installer -# wrong constant name internet_plugin -# wrong constant name language -# wrong constant name languages -# wrong constant name manpage -# wrong constant name mdimporter -# wrong constant name name -# wrong constant name pkg -# wrong constant name postflight -# wrong constant name preflight -# wrong constant name prefpane -# wrong constant name qlplugin -# wrong constant name screen_saver -# wrong constant name service -# wrong constant name sha256 -# wrong constant name stage_only -# wrong constant name staged_path -# wrong constant name suite -# wrong constant name uninstall -# wrong constant name uninstall_postflight -# wrong constant name uninstall_preflight -# wrong constant name url -# wrong constant name version -# wrong constant name vst3_plugin -# wrong constant name vst_plugin -# wrong constant name zap -# wrong constant name binaries= -# wrong constant name binaries? -# wrong constant name debug= -# wrong constant name debug? -# wrong constant name outdated_only= -# wrong constant name outdated_only? -# wrong constant name quarantine= -# wrong constant name quarantine? -# wrong constant name require_sha= -# wrong constant name require_sha? -# wrong constant name verbose= -# wrong constant name verbose? -# wrong constant name force= -# wrong constant name force? -# wrong constant name skip_cask_deps= -# wrong constant name skip_cask_deps? -# wrong constant name inspect= -# wrong constant name inspect? -# wrong constant name quiet= -# wrong constant name quiet? -# wrong constant name table= -# wrong constant name table? -# wrong constant name yaml= -# wrong constant name yaml? -# wrong constant name full_name= -# wrong constant name full_name? -# wrong constant name one= -# wrong constant name one? -# wrong constant name versions= -# wrong constant name versions? -# wrong constant name greedy= -# wrong constant name greedy? -# wrong constant name json= -# wrong constant name json? -# wrong constant name quiet= -# wrong constant name quiet? -# wrong constant name fix= -# wrong constant name fix? -# wrong constant name force= -# wrong constant name force? -# wrong constant name force= -# wrong constant name force? -# wrong constant name appdir -# wrong constant name appdir= -# wrong constant name audio_unit_plugindir -# wrong constant name audio_unit_plugindir= -# wrong constant name colorpickerdir -# wrong constant name colorpickerdir= -# wrong constant name dictionarydir -# wrong constant name dictionarydir= -# wrong constant name fontdir -# wrong constant name fontdir= -# wrong constant name input_methoddir -# wrong constant name input_methoddir= -# wrong constant name internet_plugindir -# wrong constant name internet_plugindir= -# wrong constant name mdimporterdir -# wrong constant name mdimporterdir= -# wrong constant name prefpanedir -# wrong constant name prefpanedir= -# wrong constant name qlplugindir -# wrong constant name qlplugindir= -# wrong constant name screen_saverdir -# wrong constant name screen_saverdir= -# wrong constant name servicedir -# wrong constant name servicedir= -# wrong constant name vst3_plugindir -# wrong constant name vst3_plugindir= -# wrong constant name vst_plugindir -# wrong constant name vst_plugindir= -# wrong constant name app -# wrong constant name artifact -# wrong constant name audio_unit_plugin -# wrong constant name binary -# wrong constant name colorpicker -# wrong constant name dictionary -# wrong constant name font -# wrong constant name input_method -# wrong constant name installer -# wrong constant name internet_plugin -# wrong constant name manpage -# wrong constant name mdimporter -# wrong constant name pkg -# wrong constant name postflight -# wrong constant name preflight -# wrong constant name prefpane -# wrong constant name qlplugin -# wrong constant name screen_saver -# wrong constant name service -# wrong constant name stage_only -# wrong constant name suite -# wrong constant name uninstall -# wrong constant name uninstall_postflight -# wrong constant name uninstall_preflight -# wrong constant name vst3_plugin -# wrong constant name vst_plugin -# wrong constant name zap -# wrong constant name appdir -# wrong constant name caskroom_path -# wrong constant name language -# wrong constant name staged_path -# wrong constant name token -# wrong constant name version -# wrong constant name depends_on_java -# wrong constant name discontinued -# wrong constant name files_in_usr_local -# wrong constant name free_license -# wrong constant name kext -# wrong constant name license -# wrong constant name logout -# wrong constant name path_environment_variable -# wrong constant name reboot -# wrong constant name unsigned_accessibility -# wrong constant name zsh_path_helper -# wrong constant name nested -# wrong constant name nested= -# wrong constant name type -# wrong constant name type= -# uninitialized constant Cask::DSL::Version::BLANK_RE -# uninitialized constant Cask::DSL::Version::ENCODED_BLANKS -# wrong constant name dots_to_hyphens -# wrong constant name dots_to_underscores -# wrong constant name hyphens_to_dots -# wrong constant name hyphens_to_underscores -# wrong constant name no_dots -# wrong constant name no_hyphens -# wrong constant name no_underscores -# wrong constant name underscores_to_dots -# wrong constant name underscores_to_hyphens -# uninitialized constant Chalk -# uninitialized constant Chalk -# wrong constant name empty? -# wrong constant name to_s -# undefined method `class_attribute1' for class `Class' -# undefined method `class_attribute2' for class `Class' -# undefined method `class_attribute3' for class `Class' -# undefined method `class_attribute4' for class `Class' -# undefined method `class_attribute5' for class `Class' -# uninitialized constant Class::DELEGATION_RESERVED_KEYWORDS -# uninitialized constant Class::DELEGATION_RESERVED_METHOD_NAMES -# uninitialized constant Class::RUBY_RESERVED_KEYWORDS -# wrong constant name any_instance -# wrong constant name class_attribute1 -# wrong constant name class_attribute2 -# wrong constant name class_attribute3 -# wrong constant name class_attribute4 -# wrong constant name class_attribute5 -# wrong constant name class_attribute -# wrong constant name json_creatable? -# 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 -# undefined method `call1' for class `CodeRay::Duo' -# undefined method `encode1' for class `CodeRay::Duo' -# undefined method `highlight1' for class `CodeRay::Duo' -# undefined method `initialize1' for class `CodeRay::Duo' -# undefined method `initialize2' for class `CodeRay::Duo' -# undefined method `initialize3' for class `CodeRay::Duo' -# wrong constant name call1 -# wrong constant name call -# wrong constant name encode1 -# wrong constant name encode -# wrong constant name encoder -# wrong constant name format -# wrong constant name format= -# wrong constant name highlight1 -# wrong constant name highlight -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize3 -# wrong constant name initialize -# wrong constant name lang -# wrong constant name lang= -# wrong constant name options -# wrong constant name options= -# wrong constant name scanner -# wrong constant name -# wrong constant name [] -# wrong constant name -# wrong constant name -# undefined method `compile1' for class `CodeRay::Encoders::Encoder' -# undefined method `encode1' for class `CodeRay::Encoders::Encoder' -# undefined method `encode_tokens1' for class `CodeRay::Encoders::Encoder' -# undefined method `highlight1' for class `CodeRay::Encoders::Encoder' -# undefined method `initialize1' for class `CodeRay::Encoders::Encoder' -# undefined method `tokens1' for class `CodeRay::Encoders::Encoder' -# wrong constant name << -# wrong constant name begin_group -# wrong constant name begin_line -# wrong constant name compile1 -# wrong constant name compile -# wrong constant name encode1 -# wrong constant name encode -# wrong constant name encode_tokens1 -# wrong constant name encode_tokens -# wrong constant name end_group -# wrong constant name end_line -# wrong constant name file_extension -# wrong constant name finish -# wrong constant name get_output -# wrong constant name highlight1 -# wrong constant name highlight -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name options -# wrong constant name options= -# wrong constant name output -# wrong constant name scanner -# wrong constant name scanner= -# wrong constant name setup -# wrong constant name text_token -# wrong constant name token -# wrong constant name tokens1 -# wrong constant name tokens -# wrong constant name -# wrong constant name const_missing -# wrong constant name file_extension -# CodeRay::Encoders could not load plugin "default_options": cannot load such file -- /usr/local/Homebrew/Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/coderay-1.1.3/lib/coderay/encoders/default_options.rb -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# undefined singleton method `[]1' for `CodeRay::FileType' -# undefined singleton method `fetch1' for `CodeRay::FileType' -# undefined singleton method `fetch2' for `CodeRay::FileType' -# wrong constant name -# wrong constant name []1 -# wrong constant name [] -# wrong constant name fetch1 -# wrong constant name fetch2 -# wrong constant name fetch -# wrong constant name type_from_shebang -# undefined method `plugin_host1' for module `CodeRay::Plugin' -# undefined method `title1' for module `CodeRay::Plugin' -# wrong constant name aliases -# wrong constant name plugin_host1 -# wrong constant name plugin_host -# wrong constant name plugin_id -# wrong constant name register_for -# wrong constant name title1 -# wrong constant name title -# wrong constant name -# undefined method `default1' for module `CodeRay::PluginHost' -# wrong constant name -# wrong constant name -# wrong constant name [] -# wrong constant name all_plugins -# wrong constant name const_missing -# wrong constant name default1 -# wrong constant name default -# wrong constant name list -# wrong constant name load -# wrong constant name load_all -# wrong constant name load_plugin_map -# wrong constant name make_plugin_hash -# wrong constant name map -# wrong constant name path_to -# wrong constant name plugin_hash -# wrong constant name plugin_path -# wrong constant name register -# wrong constant name validate_id -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name extended -# wrong constant name -# undefined method `column1' for class `CodeRay::Scanners::Scanner' -# undefined method `initialize1' for class `CodeRay::Scanners::Scanner' -# undefined method `initialize2' for class `CodeRay::Scanners::Scanner' -# undefined method `line1' for class `CodeRay::Scanners::Scanner' -# undefined method `raise_inspect1' for class `CodeRay::Scanners::Scanner' -# undefined method `raise_inspect2' for class `CodeRay::Scanners::Scanner' -# undefined method `raise_inspect3' for class `CodeRay::Scanners::Scanner' -# undefined method `tokenize1' for class `CodeRay::Scanners::Scanner' -# undefined method `tokenize2' for class `CodeRay::Scanners::Scanner' -# wrong constant name -# uninitialized constant CodeRay::Scanners::Scanner::Version -# wrong constant name binary_string -# wrong constant name column1 -# wrong constant name column -# wrong constant name each -# wrong constant name file_extension -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name lang -# wrong constant name line1 -# wrong constant name line -# wrong constant name raise_inspect1 -# wrong constant name raise_inspect2 -# wrong constant name raise_inspect3 -# wrong constant name raise_inspect -# wrong constant name raise_inspect_arguments -# wrong constant name reset_instance -# wrong constant name scan_rest -# wrong constant name scan_tokens -# wrong constant name scanner_state_info -# wrong constant name set_string_from_source -# wrong constant name set_tokens_from_options -# wrong constant name setup -# wrong constant name state -# wrong constant name state= -# wrong constant name string= -# wrong constant name tokenize1 -# wrong constant name tokenize2 -# wrong constant name tokenize -# wrong constant name tokens -# wrong constant name tokens_last -# wrong constant name tokens_size -# wrong constant name -# undefined singleton method `encoding1' for `CodeRay::Scanners::Scanner' -# undefined singleton method `file_extension1' for `CodeRay::Scanners::Scanner' -# wrong constant name -# wrong constant name encode_with_encoding -# wrong constant name encoding1 -# wrong constant name encoding -# wrong constant name file_extension1 -# wrong constant name file_extension -# wrong constant name guess_encoding -# wrong constant name lang -# wrong constant name normalize -# wrong constant name to_unix -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# undefined method `encode1' for class `CodeRay::Tokens' -# undefined method `method_missing1' for class `CodeRay::Tokens' -# uninitialized constant CodeRay::Tokens::DEFAULT_INDENT -# uninitialized constant CodeRay::Tokens::Elem -# wrong constant name begin_group -# wrong constant name begin_line -# wrong constant name count -# wrong constant name encode1 -# wrong constant name encode -# wrong constant name end_group -# wrong constant name end_line -# wrong constant name method_missing1 -# wrong constant name method_missing -# wrong constant name scanner -# wrong constant name scanner= -# wrong constant name split_into_parts -# wrong constant name text_token -# wrong constant name to_s -# wrong constant name tokens -# wrong constant name -# undefined method `encode1' for class `CodeRay::TokensProxy' -# undefined method `initialize1' for class `CodeRay::TokensProxy' -# undefined method `initialize2' for class `CodeRay::TokensProxy' -# wrong constant name block -# wrong constant name block= -# wrong constant name each -# wrong constant name encode1 -# wrong constant name encode -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name input -# wrong constant name input= -# wrong constant name lang -# wrong constant name lang= -# wrong constant name method_missing -# wrong constant name options -# wrong constant name options= -# wrong constant name scanner -# wrong constant name tokens -# wrong constant name -# undefined singleton method `encode1' for `CodeRay' -# undefined singleton method `encode_file1' for `CodeRay' -# undefined singleton method `encode_tokens1' for `CodeRay' -# undefined singleton method `encoder1' for `CodeRay' -# undefined singleton method `highlight1' for `CodeRay' -# undefined singleton method `highlight2' for `CodeRay' -# undefined singleton method `highlight_file1' for `CodeRay' -# undefined singleton method `highlight_file2' for `CodeRay' -# undefined singleton method `scan1' for `CodeRay' -# undefined singleton method `scan_file1' for `CodeRay' -# undefined singleton method `scan_file2' for `CodeRay' -# undefined singleton method `scanner1' for `CodeRay' -# wrong constant name -# wrong constant name coderay_path -# wrong constant name encode1 -# wrong constant name encode -# wrong constant name encode_file1 -# wrong constant name encode_file -# wrong constant name encode_tokens1 -# wrong constant name encode_tokens -# wrong constant name encoder1 -# wrong constant name encoder -# wrong constant name get_scanner_options -# wrong constant name highlight1 -# wrong constant name highlight2 -# wrong constant name highlight -# wrong constant name highlight_file1 -# wrong constant name highlight_file2 -# wrong constant name highlight_file -# wrong constant name scan1 -# wrong constant name scan -# wrong constant name scan_file1 -# wrong constant name scan_file2 -# wrong constant name scan_file -# wrong constant name scanner1 -# wrong constant name scanner -# wrong constant name [] -# wrong constant name members -# uninitialized constant Concurrent::Promises::AbstractEventFuture::PENDING -# uninitialized constant Concurrent::Promises::AbstractEventFuture::RESERVED -# uninitialized constant Concurrent::Promises::AbstractEventFuture::RESOLVED -# uninitialized constant Concurrent::Promises::Resolvable::PENDING -# uninitialized constant Concurrent::Promises::Resolvable::RESERVED -# uninitialized constant Concurrent::Promises::Resolvable::RESOLVED -# uninitialized constant Configatron -# uninitialized constant Configatron -# uninitialized constant Continuation -# uninitialized constant Continuation -# undefined method `autocorrect_source1' for module `CopHelper' -# undefined method `inspect_source1' for module `CopHelper' -# undefined method `parse_source1' for module `CopHelper' -# wrong constant name _investigate -# wrong constant name autocorrect_source1 -# wrong constant name autocorrect_source -# wrong constant name autocorrect_source_file -# wrong constant name inspect_source1 -# wrong constant name inspect_source -# wrong constant name inspect_source_file -# wrong constant name parse_source1 -# wrong constant name parse_source -# wrong constant name -# undefined method `start!1' for module `Coveralls' -# undefined method `wear!1' for module `Coveralls' -# undefined method `wear_merged!1' for module `Coveralls' -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name noisy -# wrong constant name noisy= -# wrong constant name noisy? -# wrong constant name push! -# wrong constant name run_locally -# wrong constant name run_locally= -# wrong constant name setup! -# wrong constant name should_run? -# wrong constant name start!1 -# wrong constant name start! -# wrong constant name testing -# wrong constant name testing= -# wrong constant name wear!1 -# wrong constant name wear! -# wrong constant name wear_merged!1 -# wrong constant name wear_merged! -# wrong constant name will_run? -# wrong constant name -# wrong constant name apified_hash -# wrong constant name build_client -# wrong constant name build_request -# wrong constant name build_request_body -# wrong constant name disable_net_blockers! -# wrong constant name endpoint_to_uri -# wrong constant name hash_to_file -# wrong constant name post_json -# wrong constant name -# wrong constant name configuration -# wrong constant name configuration_path -# wrong constant name git -# wrong constant name pwd -# wrong constant name rails_root -# wrong constant name relevant_env -# wrong constant name root -# wrong constant name set_service_params_for_appveyor -# wrong constant name set_service_params_for_circleci -# wrong constant name set_service_params_for_coveralls_local -# wrong constant name set_service_params_for_gitlab -# wrong constant name set_service_params_for_jenkins -# wrong constant name set_service_params_for_semaphore -# wrong constant name set_service_params_for_tddium -# wrong constant name set_service_params_for_travis -# wrong constant name set_standard_service_params_for_generic_ci -# wrong constant name simplecov_root -# wrong constant name yaml_config -# wrong constant name format -# wrong constant name -# undefined method `format1' for module `Coveralls::Output' -# undefined method `print1' for module `Coveralls::Output' -# undefined method `puts1' for module `Coveralls::Output' -# wrong constant name format1 -# wrong constant name format -# wrong constant name no_color -# wrong constant name no_color= -# wrong constant name no_color? -# wrong constant name output -# wrong constant name output= -# wrong constant name print1 -# wrong constant name print -# wrong constant name puts1 -# wrong constant name puts -# wrong constant name silent -# wrong constant name silent= -# wrong constant name silent? -# wrong constant name -# wrong constant name -# wrong constant name display_error -# wrong constant name display_result -# wrong constant name format -# wrong constant name get_source_files -# wrong constant name output_message -# wrong constant name short_filename -# wrong constant name -# wrong constant name -# wrong constant name -# uninitialized constant DBM -# uninitialized constant DBM -# uninitialized constant DBMError -# uninitialized constant DBMError -# wrong constant name _dump -# wrong constant name _load -# wrong constant name alive? -# wrong constant name close -# wrong constant name initialize -# wrong constant name send_message -# wrong constant name uri -# wrong constant name open -# undefined method `dump1' for class `DRb::DRbMessage' -# wrong constant name dump1 -# wrong constant name dump -# wrong constant name initialize -# wrong constant name load -# wrong constant name recv_reply -# wrong constant name recv_request -# wrong constant name send_reply -# wrong constant name send_request -# undefined method `initialize1' for class `DRb::DRbObject' -# wrong constant name == -# wrong constant name eql? -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name prepare_backtrace -# wrong constant name with_friend -# wrong constant name auto_load -# wrong constant name initialize -# undefined method `initialize1' for class `DRb::DRbServer' -# undefined method `initialize2' for class `DRb::DRbServer' -# undefined method `initialize3' for class `DRb::DRbServer' -# wrong constant name -# wrong constant name -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize3 -# wrong constant name initialize -# wrong constant name safe_level -# wrong constant name initialize -# wrong constant name perform -# wrong constant name -# wrong constant name block_yield -# wrong constant name perform_with_block -# wrong constant name -# undefined singleton method `make_config1' for `DRb::DRbServer' -# wrong constant name default_safe_level -# wrong constant name make_config1 -# wrong constant name make_config -# undefined method `initialize1' for class `DRb::DRbTCPSocket' -# wrong constant name accept -# wrong constant name alive? -# wrong constant name close -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name peeraddr -# wrong constant name recv_reply -# wrong constant name recv_request -# wrong constant name send_reply -# wrong constant name send_request -# wrong constant name set_sockopt -# wrong constant name shutdown -# wrong constant name stream -# wrong constant name uri -# wrong constant name getservername -# wrong constant name open -# wrong constant name open_server -# wrong constant name open_server_inaddr_any -# wrong constant name parse_uri -# wrong constant name uri_option -# undefined method `initialize1' for class `DRb::DRbUNIXSocket' -# undefined method `initialize2' for class `DRb::DRbUNIXSocket' -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name -# wrong constant name temp_server -# wrong constant name == -# wrong constant name eql? -# wrong constant name initialize -# wrong constant name option -# wrong constant name -# wrong constant name _dump -# wrong constant name _dump -# wrong constant name _load -# wrong constant name _dump -# wrong constant name initialize -# wrong constant name _load -# wrong constant name mutex -# undefined method `to_formatted_s1' for class `Date' -# undefined method `to_s1' for class `Date' -# undefined method `to_time1' for class `Date' -# uninitialized constant Date::DAYS_INTO_WEEK -# uninitialized constant Date::WEEKEND_DAYS -# wrong constant name acts_like_date? -# wrong constant name advance -# wrong constant name ago -# wrong constant name at_beginning_of_day -# wrong constant name at_end_of_day -# wrong constant name at_midday -# wrong constant name at_middle_of_day -# wrong constant name at_midnight -# wrong constant name at_noon -# wrong constant name beginning_of_day -# wrong constant name change -# wrong constant name compare_with_coercion -# wrong constant name compare_without_coercion -# wrong constant name default_inspect -# wrong constant name end_of_day -# wrong constant name in -# wrong constant name midday -# wrong constant name middle_of_day -# wrong constant name midnight -# wrong constant name minus_with_duration -# wrong constant name minus_without_duration -# wrong constant name noon -# wrong constant name plus_with_duration -# wrong constant name plus_without_duration -# wrong constant name readable_inspect -# wrong constant name since -# wrong constant name to_default_s -# wrong constant name to_formatted_s1 -# wrong constant name to_formatted_s -# wrong constant name to_s1 -# wrong constant name to_time1 -# undefined method `initialize1' for class `Date::Infinity' -# uninitialized constant Date::Infinity::EXABYTE -# uninitialized constant Date::Infinity::GIGABYTE -# uninitialized constant Date::Infinity::KILOBYTE -# uninitialized constant Date::Infinity::MEGABYTE -# uninitialized constant Date::Infinity::PETABYTE -# uninitialized constant Date::Infinity::TERABYTE -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name beginning_of_week -# wrong constant name beginning_of_week= -# wrong constant name beginning_of_week_default -# wrong constant name beginning_of_week_default= -# wrong constant name current -# wrong constant name find_beginning_of_week! -# wrong constant name tomorrow -# wrong constant name yesterday -# wrong constant name -# wrong constant name -# wrong constant name -# undefined method `all_week1' for module `DateAndTime::Calculations' -# undefined method `at_beginning_of_week1' for module `DateAndTime::Calculations' -# undefined method `at_end_of_week1' for module `DateAndTime::Calculations' -# undefined method `beginning_of_week1' for module `DateAndTime::Calculations' -# undefined method `days_to_week_start1' for module `DateAndTime::Calculations' -# undefined method `end_of_week1' for module `DateAndTime::Calculations' -# undefined method `last_week1' for module `DateAndTime::Calculations' -# undefined method `last_week2' for module `DateAndTime::Calculations' -# undefined method `next_week1' for module `DateAndTime::Calculations' -# undefined method `next_week2' for module `DateAndTime::Calculations' -# undefined method `prev_week1' for module `DateAndTime::Calculations' -# undefined method `prev_week2' for module `DateAndTime::Calculations' -# wrong constant name after? -# wrong constant name all_day -# wrong constant name all_month -# wrong constant name all_quarter -# wrong constant name all_week1 -# wrong constant name all_week -# wrong constant name all_year -# wrong constant name at_beginning_of_month -# wrong constant name at_beginning_of_quarter -# wrong constant name at_beginning_of_week1 -# wrong constant name at_beginning_of_week -# wrong constant name at_beginning_of_year -# wrong constant name at_end_of_month -# wrong constant name at_end_of_quarter -# wrong constant name at_end_of_week1 -# wrong constant name at_end_of_week -# wrong constant name at_end_of_year -# wrong constant name before? -# wrong constant name beginning_of_month -# wrong constant name beginning_of_quarter -# wrong constant name beginning_of_week1 -# wrong constant name beginning_of_week -# wrong constant name beginning_of_year -# wrong constant name days_ago -# wrong constant name days_since -# wrong constant name days_to_week_start1 -# wrong constant name days_to_week_start -# wrong constant name end_of_month -# wrong constant name end_of_quarter -# wrong constant name end_of_week1 -# wrong constant name end_of_week -# wrong constant name end_of_year -# wrong constant name future? -# wrong constant name last_month -# wrong constant name last_quarter -# wrong constant name last_week1 -# wrong constant name last_week2 -# wrong constant name last_week -# wrong constant name last_weekday -# wrong constant name last_year -# wrong constant name monday -# wrong constant name months_ago -# wrong constant name months_since -# wrong constant name next_occurring -# wrong constant name next_quarter -# wrong constant name next_week1 -# wrong constant name next_week2 -# wrong constant name next_week -# wrong constant name next_weekday -# wrong constant name on_weekday? -# wrong constant name on_weekend? -# wrong constant name past? -# wrong constant name prev_occurring -# wrong constant name prev_quarter -# wrong constant name prev_week1 -# wrong constant name prev_week2 -# wrong constant name prev_week -# wrong constant name prev_weekday -# wrong constant name sunday -# wrong constant name today? -# wrong constant name tomorrow -# wrong constant name weeks_ago -# wrong constant name weeks_since -# wrong constant name years_ago -# wrong constant name years_since -# wrong constant name yesterday -# wrong constant name -# wrong constant name preserve_timezone -# wrong constant name -# wrong constant name preserve_timezone -# wrong constant name preserve_timezone= -# undefined method `in_time_zone1' for module `DateAndTime::Zones' -# wrong constant name in_time_zone1 -# wrong constant name in_time_zone -# wrong constant name -# wrong constant name -# undefined method `formatted_offset1' for class `DateTime' -# undefined method `formatted_offset2' for class `DateTime' -# undefined method `getlocal1' for class `DateTime' -# undefined method `localtime1' for class `DateTime' -# uninitialized constant DateTime::ABBR_DAYNAMES -# uninitialized constant DateTime::ABBR_MONTHNAMES -# uninitialized constant DateTime::DATE_FORMATS -# uninitialized constant DateTime::DAYNAMES -# uninitialized constant DateTime::DAYS_INTO_WEEK -# uninitialized constant DateTime::ENGLAND -# uninitialized constant DateTime::GREGORIAN -# uninitialized constant DateTime::ITALY -# uninitialized constant DateTime::JULIAN -# uninitialized constant DateTime::MONTHNAMES -# uninitialized constant DateTime::WEEKEND_DAYS -# wrong constant name at_beginning_of_hour -# wrong constant name at_beginning_of_minute -# wrong constant name at_end_of_hour -# wrong constant name at_end_of_minute -# wrong constant name beginning_of_hour -# wrong constant name beginning_of_minute -# wrong constant name end_of_hour -# wrong constant name end_of_minute -# wrong constant name formatted_offset1 -# wrong constant name formatted_offset2 -# wrong constant name formatted_offset -# wrong constant name getgm -# wrong constant name getlocal1 -# wrong constant name getlocal -# wrong constant name getutc -# wrong constant name gmtime -# wrong constant name localtime1 -# wrong constant name localtime -# wrong constant name nsec -# wrong constant name seconds_since_midnight -# wrong constant name seconds_until_end_of_day -# wrong constant name subsec -# wrong constant name to_f -# wrong constant name to_i -# wrong constant name usec -# wrong constant name utc -# wrong constant name utc? -# wrong constant name utc_offset -# undefined singleton method `civil_from_format1' for `DateTime' -# undefined singleton method `civil_from_format2' for `DateTime' -# undefined singleton method `civil_from_format3' for `DateTime' -# undefined singleton method `civil_from_format4' for `DateTime' -# undefined singleton method `civil_from_format5' for `DateTime' -# wrong constant name civil_from_format1 -# wrong constant name civil_from_format2 -# wrong constant name civil_from_format3 -# wrong constant name civil_from_format4 -# wrong constant name civil_from_format5 -# wrong constant name civil_from_format -# uninitialized constant DidYouMean::ClassNameChecker -# uninitialized constant DidYouMean::ClassNameChecker -# uninitialized constant DidYouMean::Correctable -# uninitialized constant DidYouMean::Correctable -# uninitialized constant DidYouMean::Formatter -# uninitialized constant DidYouMean::Formatter -# 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 children -# wrong constant name each_child -# undefined singleton method `mktmpdir1' for `Dir' -# wrong constant name exists? -# wrong constant name mktmpdir1 -# wrong constant name -# wrong constant name -# wrong constant name -# uninitialized constant Docile::ChainingFallbackContextProxy::NON_FALLBACK_METHODS -# uninitialized constant Docile::ChainingFallbackContextProxy::NON_PROXIED_INSTANCE_VARIABLES -# uninitialized constant Docile::ChainingFallbackContextProxy::NON_PROXIED_METHODS -# wrong constant name -# wrong constant name -# wrong constant name exec_in_proxy_context -# wrong constant name initialize -# wrong constant name method_missing -# wrong constant name -# wrong constant name -# wrong constant name dsl_eval -# wrong constant name dsl_eval_immutable -# wrong constant name dsl_eval_with_block_return -# undefined method `def_method1' for class `ERB' -# undefined method `def_module1' for class `ERB' -# undefined method `initialize4' for class `ERB' -# undefined method `initialize5' for class `ERB' -# wrong constant name def_method1 -# wrong constant name def_method -# wrong constant name def_module1 -# wrong constant name def_module -# wrong constant name initialize4 -# wrong constant name initialize5 -# wrong constant name html_escape_once -# wrong constant name json_escape -# wrong constant name unwrapped_html_escape -# wrong constant name _dump -# wrong constant name initialize -# wrong constant name _load -# undefined method `as_json1' for module `Enumerable' -# wrong constant name as_json1 -# wrong constant name as_json -# wrong constant name chain -# wrong constant name sum -# 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 -# 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 gid -# wrong constant name gid= -# wrong constant name mem -# wrong constant name mem= -# wrong constant name name -# wrong constant name name= -# wrong constant name passwd -# wrong constant name passwd= -# wrong constant name [] -# wrong constant name each -# wrong constant name members -# wrong constant name -# wrong constant name change -# wrong constant name change= -# wrong constant name dir= -# wrong constant name expire -# wrong constant name expire= -# wrong constant name gecos -# wrong constant name gecos= -# wrong constant name gid= -# wrong constant name name= -# wrong constant name passwd= -# wrong constant name shell= -# wrong constant name uclass -# wrong constant name uclass= -# wrong constant name uid= -# wrong constant name [] -# wrong constant name each -# wrong constant name members -# wrong constant name -# wrong constant name __bb_context -# wrong constant name as_json -# wrong constant name to_json -# wrong constant name json_create -# undefined method `Fail1' for module `Exception2MessageMapper' -# undefined method `Raise1' for module `Exception2MessageMapper' -# undefined method `fail1' for module `Exception2MessageMapper' -# wrong constant name -# wrong constant name Fail1 -# wrong constant name Raise1 -# wrong constant name bind -# wrong constant name fail1 -# wrong constant name -# undefined singleton method `Fail1' for `Exception2MessageMapper' -# undefined singleton method `Fail2' for `Exception2MessageMapper' -# undefined singleton method `Raise1' for `Exception2MessageMapper' -# undefined singleton method `Raise2' for `Exception2MessageMapper' -# undefined singleton method `def_exception1' for `Exception2MessageMapper' -# wrong constant name Fail1 -# wrong constant name Fail2 -# uninitialized constant Exception2MessageMapper::Fail -# wrong constant name Raise1 -# wrong constant name Raise2 -# uninitialized constant Exception2MessageMapper::Raise -# wrong constant name def_e2message -# wrong constant name def_exception1 -# wrong constant name def_exception -# wrong constant name e2mm_message -# wrong constant name extend_object -# wrong constant name message -# wrong constant name -# wrong constant name cached_download -# wrong constant name clear_cache -# wrong constant name downloaded? -# wrong constant name fetch -# wrong constant name patch_files -# wrong constant name url -# wrong constant name verify_download_integrity -# wrong constant name transfer -# wrong constant name current -# uninitialized constant Fiddle -# uninitialized constant Fiddle -# undefined singleton method `atomic_write1' for `File' -# wrong constant name atomic_write1 -# wrong constant name atomic_write -# wrong constant name exists? -# wrong constant name probe_stat_in -# uninitialized constant FileUtils::DryRun::VERSION -# uninitialized constant FileUtils::NoWrite::VERSION -# uninitialized constant FileUtils::Verbose::VERSION -# wrong constant name [] -# wrong constant name members -# 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 garbage_collect -# wrong constant name verify_transient_heap_internal_consistency -# uninitialized constant GDBM -# uninitialized constant GDBM -# uninitialized constant GDBMError -# uninitialized constant GDBMError -# uninitialized constant GDBMFatalError -# uninitialized constant GDBMFatalError -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# undefined method `find_gems_with_sources1' for class `Gem::DependencyInstaller' -# undefined method `find_spec_by_name_and_version1' for class `Gem::DependencyInstaller' -# undefined method `find_spec_by_name_and_version2' for class `Gem::DependencyInstaller' -# wrong constant name _deprecated_add_found_dependencies -# wrong constant name _deprecated_gather_dependencies -# wrong constant name add_found_dependencies -# wrong constant name find_gems_with_sources1 -# wrong constant name find_spec_by_name_and_version1 -# wrong constant name find_spec_by_name_and_version2 -# wrong constant name gather_dependencies -# wrong constant name -# wrong constant name redirector -# uninitialized constant Gem::Ext::ExtConfBuilder::CHDIR_MONITOR -# uninitialized constant Gem::Ext::ExtConfBuilder::CHDIR_MUTEX -# undefined singleton method `build1' for `Gem::Ext::ExtConfBuilder' -# undefined singleton method `build2' for `Gem::Ext::ExtConfBuilder' -# wrong constant name -# wrong constant name build1 -# wrong constant name build2 -# wrong constant name build -# wrong constant name get_relative_path -# 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 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 start -# wrong constant name with_read_io -# wrong constant name with_write_io -# wrong constant name -# 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 strict_oct -# undefined method `read1' for class `Gem::Package::TarReader::Entry' -# undefined method `readpartial1' for class `Gem::Package::TarReader::Entry' -# undefined method `readpartial2' for class `Gem::Package::TarReader::Entry' -# 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 read1 -# wrong constant name read -# wrong constant name readpartial1 -# wrong constant name readpartial2 -# wrong constant name readpartial -# wrong constant name rewind -# wrong constant name size -# wrong constant name symlink? -# wrong constant name -# wrong constant name new -# wrong constant name new -# undefined singleton method `new1' for `Gem::Package' -# wrong constant name new1 -# wrong constant name new -# wrong constant name home -# wrong constant name initialize -# wrong constant name path -# wrong constant name spec_cache_dir -# undefined method `sign_s3_url1' for class `Gem::RemoteFetcher' -# wrong constant name correct_for_windows_path -# wrong constant name s3_expiration -# wrong constant name sign_s3_url1 -# wrong constant name sign_s3_url -# undefined method `initialize1' for class `Gem::Resolver::ActivationRequest' -# wrong constant name initialize1 -# wrong constant name others_possible? -# wrong constant name -# wrong constant name -# wrong constant name add_edge_no_circular -# wrong constant name add_vertex -# wrong constant name delete_edge -# wrong constant name detach_vertex_named -# wrong constant name each -# wrong constant name pop! -# wrong constant name reverse_each -# wrong constant name rewind_to -# wrong constant name set_payload -# wrong constant name tag -# wrong constant name -# uninitialized constant Gem::Resolver::Molinillo::DependencyGraph::Log::Elem -# wrong constant name suggestion -# wrong constant name suggestion= -# wrong constant name -# uninitialized constant Gem::S3URISigner -# uninitialized constant Gem::S3URISigner -# wrong constant name -# undefined method `initialize1' for class `Gem::Security::Policy' -# undefined method `initialize2' for class `Gem::Security::Policy' -# undefined method `verify1' for class `Gem::Security::Policy' -# undefined method `verify2' for class `Gem::Security::Policy' -# undefined method `verify3' for class `Gem::Security::Policy' -# undefined method `verify4' for class `Gem::Security::Policy' -# 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 initialize1 -# wrong constant name initialize2 -# 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 verify1 -# wrong constant name verify2 -# wrong constant name verify3 -# wrong constant name verify4 -# 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 -# undefined method `initialize1' for class `Gem::Security::Signer' -# undefined method `initialize2' for class `Gem::Security::Signer' -# undefined method `re_sign_key1' for class `Gem::Security::Signer' -# 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 initialize1 -# wrong constant name initialize2 -# 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_key1 -# wrong constant name re_sign_key -# wrong constant name sign -# wrong constant name re_sign_cert -# undefined method `initialize1' for class `Gem::Security::TrustDir' -# wrong constant name cert_path -# wrong constant name dir -# wrong constant name each_certificate -# wrong constant name initialize1 -# 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 -# undefined singleton method `create_cert1' for `Gem::Security' -# undefined singleton method `create_cert2' for `Gem::Security' -# undefined singleton method `create_cert3' for `Gem::Security' -# undefined singleton method `create_cert_email1' for `Gem::Security' -# undefined singleton method `create_cert_email2' for `Gem::Security' -# undefined singleton method `create_cert_self_signed1' for `Gem::Security' -# undefined singleton method `create_cert_self_signed2' for `Gem::Security' -# undefined singleton method `create_cert_self_signed3' for `Gem::Security' -# undefined singleton method `create_key1' for `Gem::Security' -# undefined singleton method `create_key2' for `Gem::Security' -# undefined singleton method `re_sign1' for `Gem::Security' -# undefined singleton method `re_sign2' for `Gem::Security' -# undefined singleton method `sign1' for `Gem::Security' -# undefined singleton method `sign2' for `Gem::Security' -# undefined singleton method `sign3' for `Gem::Security' -# undefined singleton method `write1' for `Gem::Security' -# undefined singleton method `write2' for `Gem::Security' -# undefined singleton method `write3' for `Gem::Security' -# wrong constant name alt_name_or_x509_entry -# wrong constant name create_cert1 -# wrong constant name create_cert2 -# wrong constant name create_cert3 -# wrong constant name create_cert -# wrong constant name create_cert_email1 -# wrong constant name create_cert_email2 -# wrong constant name create_cert_email -# wrong constant name create_cert_self_signed1 -# wrong constant name create_cert_self_signed2 -# wrong constant name create_cert_self_signed3 -# wrong constant name create_cert_self_signed -# wrong constant name create_key1 -# wrong constant name create_key2 -# wrong constant name create_key -# wrong constant name email_to_name -# wrong constant name re_sign1 -# wrong constant name re_sign2 -# wrong constant name re_sign -# wrong constant name reset -# wrong constant name sign1 -# wrong constant name sign2 -# wrong constant name sign3 -# wrong constant name sign -# wrong constant name trust_dir -# wrong constant name trusted_certificates -# wrong constant name write1 -# wrong constant name write2 -# wrong constant name write3 -# wrong constant name write -# undefined method `detect1' for class `Gem::SpecFetcher' -# undefined method `initialize1' for class `Gem::SpecFetcher' -# undefined method `search_for_dependency1' for class `Gem::SpecFetcher' -# undefined method `spec_for_dependency1' for class `Gem::SpecFetcher' -# undefined method `suggest_gems_from_name1' for class `Gem::SpecFetcher' -# undefined method `tuples_for1' for class `Gem::SpecFetcher' -# wrong constant name available_specs -# wrong constant name detect1 -# wrong constant name detect -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name latest_specs -# wrong constant name prerelease_specs -# wrong constant name search_for_dependency1 -# wrong constant name search_for_dependency -# wrong constant name sources -# wrong constant name spec_for_dependency1 -# wrong constant name spec_for_dependency -# wrong constant name specs -# wrong constant name suggest_gems_from_name1 -# wrong constant name suggest_gems_from_name -# wrong constant name tuples_for1 -# wrong constant name tuples_for -# wrong constant name -# wrong constant name fetcher -# wrong constant name fetcher= -# wrong constant name <=> -# uninitialized constant Gem::Specification::GENERICS -# uninitialized constant Gem::Specification::GENERIC_CACHE -# wrong constant name to_ruby -# wrong constant name add_spec -# wrong constant name add_specs -# wrong constant name remove_spec -# undefined method `validate1' for class `Gem::SpecificationPolicy' -# wrong constant name initialize -# wrong constant name packaging -# wrong constant name packaging= -# wrong constant name validate1 -# wrong constant name validate -# wrong constant name validate_dependencies -# wrong constant name validate_metadata -# wrong constant name validate_permissions -# wrong constant name -# uninitialized constant Gem::Stream -# uninitialized constant Gem::Stream -# wrong constant name _deprecated_debug -# wrong constant name build_extensions -# wrong constant name extensions -# wrong constant name initialize -# wrong constant name missing_extensions? -# wrong constant name valid? -# wrong constant name extensions -# wrong constant name full_name -# wrong constant name initialize -# wrong constant name name -# wrong constant name platform -# wrong constant name require_paths -# 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 -# uninitialized constant Gem::UriParser -# uninitialized constant Gem::UriParser -# uninitialized constant Gem::UriParsing -# uninitialized constant Gem::UriParsing -# wrong constant name default_gems_use_full_paths? -# wrong constant name remove_unresolved_default_spec -# wrong constant name -# undefined method `parse1' for class `GetText::PoParser' -# uninitialized constant GetText::PoParser::Racc_Main_Parsing_Routine -# uninitialized constant GetText::PoParser::Racc_Runtime_Core_Id_C -# uninitialized constant GetText::PoParser::Racc_Runtime_Core_Revision -# uninitialized constant GetText::PoParser::Racc_Runtime_Core_Revision_C -# uninitialized constant GetText::PoParser::Racc_Runtime_Core_Revision_R -# uninitialized constant GetText::PoParser::Racc_Runtime_Core_Version -# uninitialized constant GetText::PoParser::Racc_Runtime_Core_Version_C -# uninitialized constant GetText::PoParser::Racc_Runtime_Core_Version_R -# uninitialized constant GetText::PoParser::Racc_Runtime_Revision -# uninitialized constant GetText::PoParser::Racc_Runtime_Type -# uninitialized constant GetText::PoParser::Racc_Runtime_Version -# uninitialized constant GetText::PoParser::Racc_YY_Parse_Method -# wrong constant name _ -# wrong constant name _reduce_10 -# wrong constant name _reduce_12 -# wrong constant name _reduce_13 -# wrong constant name _reduce_14 -# wrong constant name _reduce_15 -# wrong constant name _reduce_5 -# wrong constant name _reduce_8 -# wrong constant name _reduce_9 -# wrong constant name _reduce_none -# wrong constant name on_comment -# wrong constant name on_message -# wrong constant name parse1 -# wrong constant name parse -# wrong constant name unescape -# wrong constant name -# wrong constant name -# uninitialized constant GetoptLong -# uninitialized constant GetoptLong -# undefined singleton method `parse1' for `HTTP::Cookie' -# wrong constant name parse1 -# wrong constant name parse -# wrong constant name lm? -# undefined method `to_param1' for class `Hash' -# undefined method `to_query1' for class `Hash' -# uninitialized constant Hash::DEFAULT_INDENT -# wrong constant name assert_valid_keys -# wrong constant name deep_merge -# wrong constant name deep_merge! -# wrong constant name deep_stringify_keys -# wrong constant name deep_stringify_keys! -# wrong constant name deep_symbolize_keys -# wrong constant name deep_symbolize_keys! -# wrong constant name deep_transform_keys -# wrong constant name deep_transform_keys! -# wrong constant name except -# wrong constant name except! -# wrong constant name extract! -# wrong constant name extractable_options? -# wrong constant name slice! -# wrong constant name stringify_keys -# wrong constant name stringify_keys! -# wrong constant name symbolize_keys -# wrong constant name symbolize_keys! -# wrong constant name to_options -# wrong constant name to_options! -# wrong constant name to_param1 -# wrong constant name to_param -# wrong constant name to_query1 -# wrong constant name to_query -# wrong constant name try_convert -# wrong constant name all_proxy -# wrong constant name arch -# wrong constant name artifact_domain -# wrong constant name auto_update_secs -# wrong constant name bat? -# wrong constant name bat_config_path -# wrong constant name bintray_key -# wrong constant name bintray_user -# wrong constant name bottle_domain -# wrong constant name brew_git_remote -# wrong constant name browser -# wrong constant name cache -# wrong constant name cleanup_max_age_days -# wrong constant name color? -# wrong constant name core_git_remote -# wrong constant name curl_retries -# wrong constant name curl_verbose? -# wrong constant name curlrc? -# wrong constant name developer? -# wrong constant name disable_load_formula? -# wrong constant name display -# wrong constant name display_install_times? -# wrong constant name editor -# wrong constant name fail_log_lines -# wrong constant name force_brewed_curl? -# wrong constant name force_brewed_git? -# wrong constant name force_homebrew_on_linux? -# wrong constant name force_vendor_ruby? -# wrong constant name ftp_proxy -# wrong constant name git_email -# wrong constant name git_name -# wrong constant name github_api_password -# wrong constant name github_api_token -# wrong constant name github_api_username -# wrong constant name http_proxy -# wrong constant name https_proxy -# wrong constant name install_badge -# wrong constant name logs -# wrong constant name no_analytics? -# wrong constant name no_auto_update? -# wrong constant name no_bottle_source_fallback? -# wrong constant name no_color? -# wrong constant name no_compat? -# wrong constant name no_emoji? -# wrong constant name no_github_api? -# wrong constant name no_insecure_redirect? -# wrong constant name no_install_cleanup? -# wrong constant name no_proxy -# wrong constant name pry? -# wrong constant name skip_or_later_bottles? -# wrong constant name svn -# wrong constant name temp -# wrong constant name update_to_tag? -# wrong constant name verbose? -# wrong constant name verbose_using_dots? -# wrong constant name in_its_own_process_with -# 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 element -# wrong constant name element= -# wrong constant name initialize -# wrong constant name to_hash -# wrong constant name -# wrong constant name -# wrong constant name hide -# undefined method `output1' for class `Hpricot::BogusETag' -# uninitialized constant Hpricot::BogusETag::AttrCore -# uninitialized constant Hpricot::BogusETag::AttrEvents -# uninitialized constant Hpricot::BogusETag::AttrFocus -# uninitialized constant Hpricot::BogusETag::AttrHAlign -# uninitialized constant Hpricot::BogusETag::AttrI18n -# uninitialized constant Hpricot::BogusETag::AttrVAlign -# uninitialized constant Hpricot::BogusETag::Attrs -# uninitialized constant Hpricot::BogusETag::ElementContent -# uninitialized constant Hpricot::BogusETag::ElementExclusions -# uninitialized constant Hpricot::BogusETag::ElementInclusions -# uninitialized constant Hpricot::BogusETag::FORM_TAGS -# uninitialized constant Hpricot::BogusETag::NamedCharacters -# uninitialized constant Hpricot::BogusETag::NamedCharactersPattern -# uninitialized constant Hpricot::BogusETag::OmittedAttrName -# uninitialized constant Hpricot::BogusETag::ProcInsParse -# uninitialized constant Hpricot::BogusETag::SELF_CLOSING_TAGS -# wrong constant name -# wrong constant name initialize -# wrong constant name output1 -# wrong constant name output -# wrong constant name raw_string -# wrong constant name -# wrong constant name -# undefined method `xhtml_strict1' for module `Hpricot::Builder' -# undefined method `xhtml_transitional1' for module `Hpricot::Builder' -# wrong constant name << -# wrong constant name a -# wrong constant name abbr -# wrong constant name acronym -# wrong constant name add_child -# wrong constant name address -# wrong constant name applet -# wrong constant name area -# wrong constant name b -# wrong constant name base -# wrong constant name basefont -# wrong constant name bdo -# wrong constant name big -# wrong constant name blockquote -# wrong constant name body -# wrong constant name br -# wrong constant name build -# wrong constant name button -# wrong constant name caption -# wrong constant name center -# wrong constant name cite -# wrong constant name code -# wrong constant name col -# wrong constant name colgroup -# wrong constant name concat -# wrong constant name dd -# wrong constant name del -# wrong constant name dfn -# wrong constant name dir -# wrong constant name div -# wrong constant name dl -# wrong constant name doctype -# wrong constant name dt -# wrong constant name em -# wrong constant name fieldset -# wrong constant name font -# wrong constant name form -# wrong constant name h1 -# wrong constant name h2 -# wrong constant name h3 -# wrong constant name h4 -# wrong constant name h5 -# wrong constant name h6 -# wrong constant name head -# wrong constant name hr -# wrong constant name html -# wrong constant name html_tag -# wrong constant name i -# wrong constant name iframe -# wrong constant name img -# wrong constant name input -# wrong constant name ins -# wrong constant name isindex -# wrong constant name kbd -# wrong constant name label -# wrong constant name legend -# wrong constant name li -# wrong constant name link -# wrong constant name map -# wrong constant name menu -# wrong constant name meta -# wrong constant name noframes -# wrong constant name noscript -# wrong constant name object -# wrong constant name ol -# wrong constant name optgroup -# wrong constant name option -# wrong constant name p -# wrong constant name param -# wrong constant name pre -# wrong constant name q -# wrong constant name s -# wrong constant name samp -# wrong constant name script -# wrong constant name select -# wrong constant name small -# wrong constant name span -# wrong constant name strike -# wrong constant name strong -# wrong constant name style -# wrong constant name sub -# wrong constant name sup -# wrong constant name table -# wrong constant name tag! -# wrong constant name tbody -# wrong constant name td -# wrong constant name text -# wrong constant name text! -# wrong constant name textarea -# wrong constant name tfoot -# wrong constant name th -# wrong constant name thead -# wrong constant name title -# wrong constant name tr -# wrong constant name tt -# wrong constant name u -# wrong constant name ul -# wrong constant name var -# wrong constant name xhtml_strict1 -# wrong constant name xhtml_strict -# wrong constant name xhtml_transitional1 -# wrong constant name xhtml_transitional -# wrong constant name -# wrong constant name set -# undefined method `output1' for class `Hpricot::CData' -# uninitialized constant Hpricot::CData::AttrCore -# uninitialized constant Hpricot::CData::AttrEvents -# uninitialized constant Hpricot::CData::AttrFocus -# uninitialized constant Hpricot::CData::AttrHAlign -# uninitialized constant Hpricot::CData::AttrI18n -# uninitialized constant Hpricot::CData::AttrVAlign -# uninitialized constant Hpricot::CData::Attrs -# uninitialized constant Hpricot::CData::ElementContent -# uninitialized constant Hpricot::CData::ElementExclusions -# uninitialized constant Hpricot::CData::ElementInclusions -# uninitialized constant Hpricot::CData::FORM_TAGS -# uninitialized constant Hpricot::CData::NamedCharacters -# uninitialized constant Hpricot::CData::NamedCharactersPattern -# uninitialized constant Hpricot::CData::OmittedAttrName -# uninitialized constant Hpricot::CData::ProcInsParse -# uninitialized constant Hpricot::CData::SELF_CLOSING_TAGS -# wrong constant name -# wrong constant name content -# wrong constant name content= -# wrong constant name initialize -# wrong constant name output1 -# wrong constant name output -# wrong constant name raw_string -# wrong constant name -# wrong constant name -# undefined method `output1' for class `Hpricot::Comment' -# uninitialized constant Hpricot::Comment::AttrCore -# uninitialized constant Hpricot::Comment::AttrEvents -# uninitialized constant Hpricot::Comment::AttrFocus -# uninitialized constant Hpricot::Comment::AttrHAlign -# uninitialized constant Hpricot::Comment::AttrI18n -# uninitialized constant Hpricot::Comment::AttrVAlign -# uninitialized constant Hpricot::Comment::Attrs -# uninitialized constant Hpricot::Comment::ElementContent -# uninitialized constant Hpricot::Comment::ElementExclusions -# uninitialized constant Hpricot::Comment::ElementInclusions -# uninitialized constant Hpricot::Comment::FORM_TAGS -# uninitialized constant Hpricot::Comment::NamedCharacters -# uninitialized constant Hpricot::Comment::NamedCharactersPattern -# uninitialized constant Hpricot::Comment::OmittedAttrName -# uninitialized constant Hpricot::Comment::ProcInsParse -# uninitialized constant Hpricot::Comment::SELF_CLOSING_TAGS -# wrong constant name -# wrong constant name content -# wrong constant name content= -# wrong constant name output1 -# wrong constant name output -# wrong constant name raw_string -# wrong constant name -# wrong constant name -# uninitialized constant Hpricot::Container::AttrCore -# uninitialized constant Hpricot::Container::AttrEvents -# uninitialized constant Hpricot::Container::AttrFocus -# uninitialized constant Hpricot::Container::AttrHAlign -# uninitialized constant Hpricot::Container::AttrI18n -# uninitialized constant Hpricot::Container::AttrVAlign -# uninitialized constant Hpricot::Container::Attrs -# uninitialized constant Hpricot::Container::ElementContent -# uninitialized constant Hpricot::Container::ElementExclusions -# uninitialized constant Hpricot::Container::ElementInclusions -# uninitialized constant Hpricot::Container::FORM_TAGS -# uninitialized constant Hpricot::Container::NamedCharacters -# uninitialized constant Hpricot::Container::NamedCharactersPattern -# uninitialized constant Hpricot::Container::OmittedAttrName -# uninitialized constant Hpricot::Container::ProcInsParse -# uninitialized constant Hpricot::Container::SELF_CLOSING_TAGS -# wrong constant name -# undefined method `each_hyperlink_uri1' for module `Hpricot::Container::Trav' -# undefined method `each_uri1' for module `Hpricot::Container::Trav' -# wrong constant name classes -# wrong constant name containers -# wrong constant name each_child -# wrong constant name each_child_with_index -# wrong constant name each_hyperlink -# wrong constant name each_hyperlink_uri1 -# wrong constant name each_hyperlink_uri -# wrong constant name each_uri1 -# wrong constant name each_uri -# wrong constant name filter -# wrong constant name find_element -# wrong constant name following_siblings -# wrong constant name get_element_by_id -# wrong constant name get_elements_by_tag_name -# wrong constant name insert_after -# wrong constant name insert_before -# wrong constant name next_sibling -# wrong constant name preceding_siblings -# wrong constant name previous_sibling -# wrong constant name replace_child -# wrong constant name siblings_at -# wrong constant name traverse_text_internal -# wrong constant name -# wrong constant name -# uninitialized constant Hpricot::Context::AttrCore -# uninitialized constant Hpricot::Context::AttrEvents -# uninitialized constant Hpricot::Context::AttrFocus -# uninitialized constant Hpricot::Context::AttrHAlign -# uninitialized constant Hpricot::Context::AttrI18n -# uninitialized constant Hpricot::Context::AttrVAlign -# uninitialized constant Hpricot::Context::Attrs -# uninitialized constant Hpricot::Context::ElementContent -# uninitialized constant Hpricot::Context::ElementExclusions -# uninitialized constant Hpricot::Context::ElementInclusions -# uninitialized constant Hpricot::Context::FORM_TAGS -# uninitialized constant Hpricot::Context::NamedCharacters -# uninitialized constant Hpricot::Context::NamedCharactersPattern -# uninitialized constant Hpricot::Context::OmittedAttrName -# uninitialized constant Hpricot::Context::ProcInsParse -# uninitialized constant Hpricot::Context::SELF_CLOSING_TAGS -# wrong constant name -# wrong constant name initialize -# wrong constant name method_missing -# wrong constant name -# undefined method `output1' for class `Hpricot::Doc' -# uninitialized constant Hpricot::Doc::AttrCore -# uninitialized constant Hpricot::Doc::AttrEvents -# uninitialized constant Hpricot::Doc::AttrFocus -# uninitialized constant Hpricot::Doc::AttrHAlign -# uninitialized constant Hpricot::Doc::AttrI18n -# uninitialized constant Hpricot::Doc::AttrVAlign -# uninitialized constant Hpricot::Doc::Attrs -# uninitialized constant Hpricot::Doc::ElementContent -# uninitialized constant Hpricot::Doc::ElementExclusions -# uninitialized constant Hpricot::Doc::ElementInclusions -# uninitialized constant Hpricot::Doc::FORM_TAGS -# uninitialized constant Hpricot::Doc::NamedCharacters -# uninitialized constant Hpricot::Doc::NamedCharactersPattern -# uninitialized constant Hpricot::Doc::OmittedAttrName -# uninitialized constant Hpricot::Doc::ProcInsParse -# uninitialized constant Hpricot::Doc::SELF_CLOSING_TAGS -# wrong constant name -# wrong constant name inspect_tree -# wrong constant name output1 -# wrong constant name output -# wrong constant name author -# wrong constant name css_path -# wrong constant name root -# wrong constant name title -# wrong constant name traverse_all_element -# wrong constant name traverse_some_element -# wrong constant name xpath -# wrong constant name -# wrong constant name -# undefined method `output1' for class `Hpricot::DocType' -# uninitialized constant Hpricot::DocType::AttrCore -# uninitialized constant Hpricot::DocType::AttrEvents -# uninitialized constant Hpricot::DocType::AttrFocus -# uninitialized constant Hpricot::DocType::AttrHAlign -# uninitialized constant Hpricot::DocType::AttrI18n -# uninitialized constant Hpricot::DocType::AttrVAlign -# uninitialized constant Hpricot::DocType::Attrs -# uninitialized constant Hpricot::DocType::ElementContent -# uninitialized constant Hpricot::DocType::ElementExclusions -# uninitialized constant Hpricot::DocType::ElementInclusions -# uninitialized constant Hpricot::DocType::FORM_TAGS -# uninitialized constant Hpricot::DocType::NamedCharacters -# uninitialized constant Hpricot::DocType::NamedCharactersPattern -# uninitialized constant Hpricot::DocType::OmittedAttrName -# uninitialized constant Hpricot::DocType::ProcInsParse -# uninitialized constant Hpricot::DocType::SELF_CLOSING_TAGS -# wrong constant name -# wrong constant name initialize -# wrong constant name output1 -# wrong constant name output -# wrong constant name public_id -# wrong constant name public_id= -# wrong constant name raw_string -# wrong constant name system_id -# wrong constant name system_id= -# wrong constant name target -# wrong constant name target= -# wrong constant name -# wrong constant name -# uninitialized constant Hpricot::ETag::AttrCore -# uninitialized constant Hpricot::ETag::AttrEvents -# uninitialized constant Hpricot::ETag::AttrFocus -# uninitialized constant Hpricot::ETag::AttrHAlign -# uninitialized constant Hpricot::ETag::AttrI18n -# uninitialized constant Hpricot::ETag::AttrVAlign -# uninitialized constant Hpricot::ETag::Attrs -# uninitialized constant Hpricot::ETag::ElementContent -# uninitialized constant Hpricot::ETag::ElementExclusions -# uninitialized constant Hpricot::ETag::ElementInclusions -# uninitialized constant Hpricot::ETag::FORM_TAGS -# uninitialized constant Hpricot::ETag::NamedCharacters -# uninitialized constant Hpricot::ETag::NamedCharactersPattern -# uninitialized constant Hpricot::ETag::OmittedAttrName -# uninitialized constant Hpricot::ETag::ProcInsParse -# uninitialized constant Hpricot::ETag::SELF_CLOSING_TAGS -# wrong constant name -# undefined method `initialize1' for class `Hpricot::Elem' -# undefined method `initialize2' for class `Hpricot::Elem' -# undefined method `initialize3' for class `Hpricot::Elem' -# undefined method `output1' for class `Hpricot::Elem' -# uninitialized constant Hpricot::Elem::AttrCore -# uninitialized constant Hpricot::Elem::AttrEvents -# uninitialized constant Hpricot::Elem::AttrFocus -# uninitialized constant Hpricot::Elem::AttrHAlign -# uninitialized constant Hpricot::Elem::AttrI18n -# uninitialized constant Hpricot::Elem::AttrVAlign -# uninitialized constant Hpricot::Elem::Attrs -# uninitialized constant Hpricot::Elem::ElementContent -# uninitialized constant Hpricot::Elem::ElementExclusions -# uninitialized constant Hpricot::Elem::ElementInclusions -# uninitialized constant Hpricot::Elem::FORM_TAGS -# uninitialized constant Hpricot::Elem::NamedCharacters -# uninitialized constant Hpricot::Elem::NamedCharactersPattern -# uninitialized constant Hpricot::Elem::OmittedAttrName -# uninitialized constant Hpricot::Elem::ProcInsParse -# uninitialized constant Hpricot::Elem::SELF_CLOSING_TAGS -# wrong constant name -# wrong constant name attributes -# wrong constant name attributes_as_html -# wrong constant name empty? -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize3 -# wrong constant name initialize -# wrong constant name output1 -# wrong constant name output -# wrong constant name pretty_print_stag -# wrong constant name [] -# wrong constant name []= -# wrong constant name get_attribute -# wrong constant name has_attribute? -# wrong constant name remove_attribute -# wrong constant name set_attribute -# wrong constant name traverse_all_element -# wrong constant name traverse_some_element -# wrong constant name -# wrong constant name -# undefined method `after1' for class `Hpricot::Elements' -# undefined method `append1' for class `Hpricot::Elements' -# undefined method `attr1' for class `Hpricot::Elements' -# undefined method `before1' for class `Hpricot::Elements' -# undefined method `prepend1' for class `Hpricot::Elements' -# undefined method `remove_class1' for class `Hpricot::Elements' -# undefined method `set1' for class `Hpricot::Elements' -# undefined method `wrap1' for class `Hpricot::Elements' -# wrong constant name % -# wrong constant name / -# uninitialized constant Hpricot::Elements::DEFAULT_INDENT -# uninitialized constant Hpricot::Elements::Elem -# wrong constant name add_class -# wrong constant name after1 -# wrong constant name after -# wrong constant name append1 -# wrong constant name append -# wrong constant name at -# wrong constant name attr1 -# wrong constant name attr -# wrong constant name before1 -# wrong constant name before -# wrong constant name empty -# wrong constant name filter -# wrong constant name html -# wrong constant name html= -# wrong constant name innerHTML -# wrong constant name innerHTML= -# wrong constant name inner_html -# wrong constant name inner_html= -# wrong constant name inner_text -# wrong constant name not -# wrong constant name prepend1 -# wrong constant name prepend -# wrong constant name remove -# wrong constant name remove_attr -# wrong constant name remove_class1 -# wrong constant name remove_class -# wrong constant name search -# wrong constant name set1 -# wrong constant name set -# wrong constant name text -# wrong constant name to_html -# wrong constant name to_s -# wrong constant name wrap1 -# wrong constant name wrap -# undefined singleton method `expand1' for `Hpricot::Elements' -# undefined singleton method `filter1' for `Hpricot::Elements' -# wrong constant name -# wrong constant name expand1 -# wrong constant name expand -# wrong constant name filter1 -# wrong constant name filter -# wrong constant name -# wrong constant name -# uninitialized constant Hpricot::Leaf::AttrCore -# uninitialized constant Hpricot::Leaf::AttrEvents -# uninitialized constant Hpricot::Leaf::AttrFocus -# uninitialized constant Hpricot::Leaf::AttrHAlign -# uninitialized constant Hpricot::Leaf::AttrI18n -# uninitialized constant Hpricot::Leaf::AttrVAlign -# uninitialized constant Hpricot::Leaf::Attrs -# uninitialized constant Hpricot::Leaf::ElementContent -# uninitialized constant Hpricot::Leaf::ElementExclusions -# uninitialized constant Hpricot::Leaf::ElementInclusions -# uninitialized constant Hpricot::Leaf::FORM_TAGS -# uninitialized constant Hpricot::Leaf::NamedCharacters -# uninitialized constant Hpricot::Leaf::NamedCharactersPattern -# uninitialized constant Hpricot::Leaf::OmittedAttrName -# uninitialized constant Hpricot::Leaf::ProcInsParse -# uninitialized constant Hpricot::Leaf::SELF_CLOSING_TAGS -# wrong constant name -# wrong constant name inspect -# wrong constant name pretty_print -# wrong constant name traverse_all_element -# wrong constant name traverse_some_element -# wrong constant name traverse_text_internal -# wrong constant name -# wrong constant name -# uninitialized constant Hpricot::Name::AttrCore -# uninitialized constant Hpricot::Name::AttrEvents -# uninitialized constant Hpricot::Name::AttrFocus -# uninitialized constant Hpricot::Name::AttrHAlign -# uninitialized constant Hpricot::Name::AttrI18n -# uninitialized constant Hpricot::Name::AttrVAlign -# uninitialized constant Hpricot::Name::Attrs -# uninitialized constant Hpricot::Name::ElementContent -# uninitialized constant Hpricot::Name::ElementExclusions -# uninitialized constant Hpricot::Name::ElementInclusions -# uninitialized constant Hpricot::Name::FORM_TAGS -# uninitialized constant Hpricot::Name::NamedCharacters -# uninitialized constant Hpricot::Name::NamedCharactersPattern -# uninitialized constant Hpricot::Name::OmittedAttrName -# uninitialized constant Hpricot::Name::ProcInsParse -# uninitialized constant Hpricot::Name::SELF_CLOSING_TAGS -# wrong constant name -# undefined method `inspect_tree1' for module `Hpricot::Node' -# uninitialized constant Hpricot::Node::AttrCore -# uninitialized constant Hpricot::Node::AttrEvents -# uninitialized constant Hpricot::Node::AttrFocus -# uninitialized constant Hpricot::Node::AttrHAlign -# uninitialized constant Hpricot::Node::AttrI18n -# uninitialized constant Hpricot::Node::AttrVAlign -# uninitialized constant Hpricot::Node::Attrs -# uninitialized constant Hpricot::Node::ElementContent -# uninitialized constant Hpricot::Node::ElementExclusions -# uninitialized constant Hpricot::Node::ElementInclusions -# uninitialized constant Hpricot::Node::FORM_TAGS -# uninitialized constant Hpricot::Node::NamedCharacters -# uninitialized constant Hpricot::Node::NamedCharactersPattern -# uninitialized constant Hpricot::Node::OmittedAttrName -# uninitialized constant Hpricot::Node::ProcInsParse -# uninitialized constant Hpricot::Node::SELF_CLOSING_TAGS -# wrong constant name altered! -# wrong constant name clear_raw -# wrong constant name html_quote -# wrong constant name if_output -# wrong constant name inspect_tree1 -# wrong constant name inspect_tree -# wrong constant name pathname -# wrong constant name -# wrong constant name -# undefined method `output1' for class `Hpricot::ProcIns' -# uninitialized constant Hpricot::ProcIns::AttrCore -# uninitialized constant Hpricot::ProcIns::AttrEvents -# uninitialized constant Hpricot::ProcIns::AttrFocus -# uninitialized constant Hpricot::ProcIns::AttrHAlign -# uninitialized constant Hpricot::ProcIns::AttrI18n -# uninitialized constant Hpricot::ProcIns::AttrVAlign -# uninitialized constant Hpricot::ProcIns::Attrs -# uninitialized constant Hpricot::ProcIns::ElementContent -# uninitialized constant Hpricot::ProcIns::ElementExclusions -# uninitialized constant Hpricot::ProcIns::ElementInclusions -# uninitialized constant Hpricot::ProcIns::FORM_TAGS -# uninitialized constant Hpricot::ProcIns::NamedCharacters -# uninitialized constant Hpricot::ProcIns::NamedCharactersPattern -# uninitialized constant Hpricot::ProcIns::OmittedAttrName -# uninitialized constant Hpricot::ProcIns::ProcInsParse -# uninitialized constant Hpricot::ProcIns::SELF_CLOSING_TAGS -# wrong constant name -# wrong constant name content -# wrong constant name content= -# wrong constant name output1 -# wrong constant name output -# wrong constant name raw_string -# wrong constant name target -# wrong constant name target= -# wrong constant name -# wrong constant name -# uninitialized constant Hpricot::Tag::AttrCore -# uninitialized constant Hpricot::Tag::AttrEvents -# uninitialized constant Hpricot::Tag::AttrFocus -# uninitialized constant Hpricot::Tag::AttrHAlign -# uninitialized constant Hpricot::Tag::AttrI18n -# uninitialized constant Hpricot::Tag::AttrVAlign -# uninitialized constant Hpricot::Tag::Attrs -# uninitialized constant Hpricot::Tag::ElementContent -# uninitialized constant Hpricot::Tag::ElementExclusions -# uninitialized constant Hpricot::Tag::ElementInclusions -# uninitialized constant Hpricot::Tag::FORM_TAGS -# uninitialized constant Hpricot::Tag::NamedCharacters -# uninitialized constant Hpricot::Tag::NamedCharactersPattern -# uninitialized constant Hpricot::Tag::OmittedAttrName -# uninitialized constant Hpricot::Tag::ProcInsParse -# uninitialized constant Hpricot::Tag::SELF_CLOSING_TAGS -# wrong constant name -# undefined method `output1' for class `Hpricot::Text' -# wrong constant name << -# uninitialized constant Hpricot::Text::AttrCore -# uninitialized constant Hpricot::Text::AttrEvents -# uninitialized constant Hpricot::Text::AttrFocus -# uninitialized constant Hpricot::Text::AttrHAlign -# uninitialized constant Hpricot::Text::AttrI18n -# uninitialized constant Hpricot::Text::AttrVAlign -# uninitialized constant Hpricot::Text::Attrs -# uninitialized constant Hpricot::Text::ElementContent -# uninitialized constant Hpricot::Text::ElementExclusions -# uninitialized constant Hpricot::Text::ElementInclusions -# uninitialized constant Hpricot::Text::FORM_TAGS -# uninitialized constant Hpricot::Text::NamedCharacters -# uninitialized constant Hpricot::Text::NamedCharactersPattern -# uninitialized constant Hpricot::Text::OmittedAttrName -# uninitialized constant Hpricot::Text::ProcInsParse -# uninitialized constant Hpricot::Text::SELF_CLOSING_TAGS -# wrong constant name -# wrong constant name content -# wrong constant name content= -# wrong constant name initialize -# wrong constant name output1 -# wrong constant name output -# wrong constant name raw_string -# wrong constant name traverse_text_internal -# wrong constant name -# wrong constant name -# undefined method `after1' for module `Hpricot::Traverse' -# undefined method `before1' for module `Hpricot::Traverse' -# undefined method `html1' for module `Hpricot::Traverse' -# undefined method `innerHTML1' for module `Hpricot::Traverse' -# undefined method `inner_html1' for module `Hpricot::Traverse' -# undefined method `make1' for module `Hpricot::Traverse' -# undefined method `swap1' for module `Hpricot::Traverse' -# wrong constant name % -# wrong constant name / -# wrong constant name after1 -# wrong constant name after -# wrong constant name at -# wrong constant name before1 -# wrong constant name before -# wrong constant name bogusetag? -# wrong constant name children_of_type -# wrong constant name clean_path -# wrong constant name comment? -# wrong constant name css_path -# wrong constant name doc? -# wrong constant name doctype? -# wrong constant name elem? -# wrong constant name following -# wrong constant name get_subnode -# wrong constant name html1 -# wrong constant name html -# wrong constant name index -# wrong constant name innerHTML1 -# wrong constant name innerHTML -# wrong constant name innerHTML= -# wrong constant name innerText -# wrong constant name inner_html1 -# wrong constant name inner_html -# wrong constant name inner_html= -# wrong constant name inner_text -# wrong constant name make1 -# wrong constant name make -# wrong constant name next -# wrong constant name next_node -# wrong constant name node_position -# wrong constant name nodes_at -# wrong constant name position -# wrong constant name preceding -# wrong constant name previous -# wrong constant name previous_node -# wrong constant name procins? -# wrong constant name search -# wrong constant name swap1 -# wrong constant name swap -# wrong constant name text? -# wrong constant name to_html -# wrong constant name to_original_html -# wrong constant name to_plain_text -# wrong constant name to_s -# wrong constant name traverse_element -# wrong constant name traverse_text -# wrong constant name xmldecl? -# wrong constant name xpath -# wrong constant name -# wrong constant name filter -# wrong constant name -# wrong constant name doctype -# wrong constant name doctype= -# wrong constant name forms -# wrong constant name forms= -# wrong constant name self_closing -# wrong constant name self_closing= -# wrong constant name tags -# wrong constant name tags= -# wrong constant name tagset -# wrong constant name tagset= -# wrong constant name -# wrong constant name doctype -# wrong constant name doctype= -# wrong constant name forms -# wrong constant name forms= -# wrong constant name self_closing -# wrong constant name self_closing= -# wrong constant name tags -# wrong constant name tags= -# wrong constant name tagset -# wrong constant name tagset= -# undefined method `output1' for class `Hpricot::XMLDecl' -# uninitialized constant Hpricot::XMLDecl::AttrCore -# uninitialized constant Hpricot::XMLDecl::AttrEvents -# uninitialized constant Hpricot::XMLDecl::AttrFocus -# uninitialized constant Hpricot::XMLDecl::AttrHAlign -# uninitialized constant Hpricot::XMLDecl::AttrI18n -# uninitialized constant Hpricot::XMLDecl::AttrVAlign -# uninitialized constant Hpricot::XMLDecl::Attrs -# uninitialized constant Hpricot::XMLDecl::ElementContent -# uninitialized constant Hpricot::XMLDecl::ElementExclusions -# uninitialized constant Hpricot::XMLDecl::ElementInclusions -# uninitialized constant Hpricot::XMLDecl::FORM_TAGS -# uninitialized constant Hpricot::XMLDecl::NamedCharacters -# uninitialized constant Hpricot::XMLDecl::NamedCharactersPattern -# uninitialized constant Hpricot::XMLDecl::OmittedAttrName -# uninitialized constant Hpricot::XMLDecl::ProcInsParse -# uninitialized constant Hpricot::XMLDecl::SELF_CLOSING_TAGS -# wrong constant name -# wrong constant name encoding -# wrong constant name encoding= -# wrong constant name output1 -# wrong constant name output -# wrong constant name raw_string -# wrong constant name standalone -# wrong constant name standalone= -# wrong constant name version -# wrong constant name version= -# wrong constant name -# wrong constant name -# undefined singleton method `XML1' for `Hpricot' -# undefined singleton method `XML2' for `Hpricot' -# undefined singleton method `build1' for `Hpricot' -# undefined singleton method `build2' for `Hpricot' -# undefined singleton method `make1' for `Hpricot' -# undefined singleton method `make2' for `Hpricot' -# undefined singleton method `parse1' for `Hpricot' -# undefined singleton method `parse2' for `Hpricot' -# wrong constant name -# wrong constant name XML1 -# wrong constant name XML2 -# uninitialized constant Hpricot::XML -# wrong constant name buffer_size -# wrong constant name buffer_size= -# wrong constant name build1 -# wrong constant name build2 -# wrong constant name build -# wrong constant name css -# wrong constant name make1 -# wrong constant name make2 -# wrong constant name make -# wrong constant name parse1 -# wrong constant name parse2 -# wrong constant name parse -# wrong constant name scan -# wrong constant name uxs -# 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 -# undefined method `deep_interpolate1' for module `I18n::Backend::Base' -# undefined method `default1' for module `I18n::Backend::Base' -# undefined method `exists?1' for module `I18n::Backend::Base' -# undefined method `interpolate1' for module `I18n::Backend::Base' -# undefined method `localize1' for module `I18n::Backend::Base' -# undefined method `localize2' for module `I18n::Backend::Base' -# undefined method `lookup1' for module `I18n::Backend::Base' -# undefined method `lookup2' for module `I18n::Backend::Base' -# undefined method `resolve1' for module `I18n::Backend::Base' -# undefined method `store_translations1' for module `I18n::Backend::Base' -# undefined method `translate1' for module `I18n::Backend::Base' -# uninitialized constant I18n::Backend::Base::DEFAULT_REPLACEMENT_CHAR -# wrong constant name available_locales -# wrong constant name deep_interpolate1 -# wrong constant name deep_interpolate -# wrong constant name default1 -# wrong constant name default -# wrong constant name eager_load! -# wrong constant name eager_loaded? -# wrong constant name exists?1 -# wrong constant name exists? -# wrong constant name interpolate1 -# wrong constant name interpolate -# wrong constant name load_file -# wrong constant name load_json -# wrong constant name load_rb -# wrong constant name load_translations -# wrong constant name load_yaml -# wrong constant name load_yml -# wrong constant name localize1 -# wrong constant name localize2 -# wrong constant name localize -# wrong constant name lookup1 -# wrong constant name lookup2 -# wrong constant name lookup -# wrong constant name pluralization_key -# wrong constant name pluralize -# wrong constant name reload! -# wrong constant name resolve1 -# wrong constant name resolve -# wrong constant name store_translations1 -# wrong constant name store_translations -# wrong constant name subtrees? -# wrong constant name translate1 -# wrong constant name translate -# wrong constant name translate_localization_format -# wrong constant name -# undefined method `translate1' for module `I18n::Backend::Cache' -# wrong constant name _fetch -# wrong constant name cache_key -# wrong constant name fetch -# wrong constant name translate1 -# wrong constant name translate -# wrong constant name -# wrong constant name load_file -# wrong constant name normalized_path -# wrong constant name path_roots -# wrong constant name path_roots= -# wrong constant name -# undefined method `lookup1' for module `I18n::Backend::Cascade' -# undefined method `lookup2' for module `I18n::Backend::Cascade' -# wrong constant name lookup1 -# wrong constant name lookup2 -# wrong constant name lookup -# wrong constant name -# uninitialized constant I18n::Backend::Chain::DEFAULT_REPLACEMENT_CHAR -# wrong constant name -# undefined method `exists?1' for module `I18n::Backend::Chain::Implementation' -# undefined method `localize1' for module `I18n::Backend::Chain::Implementation' -# undefined method `localize2' for module `I18n::Backend::Chain::Implementation' -# undefined method `store_translations1' for module `I18n::Backend::Chain::Implementation' -# undefined method `translate1' for module `I18n::Backend::Chain::Implementation' -# uninitialized constant I18n::Backend::Chain::Implementation::DEFAULT_REPLACEMENT_CHAR -# wrong constant name available_locales -# wrong constant name backends -# wrong constant name backends= -# wrong constant name eager_load! -# wrong constant name exists?1 -# wrong constant name exists? -# wrong constant name init_translations -# wrong constant name initialize -# wrong constant name initialized? -# wrong constant name localize1 -# wrong constant name localize2 -# wrong constant name localize -# wrong constant name namespace_lookup? -# wrong constant name reload! -# wrong constant name store_translations1 -# wrong constant name store_translations -# wrong constant name translate1 -# wrong constant name translate -# wrong constant name translations -# wrong constant name -# wrong constant name -# undefined method `exists?1' for module `I18n::Backend::Fallbacks' -# undefined method `translate1' for module `I18n::Backend::Fallbacks' -# wrong constant name exists?1 -# wrong constant name exists? -# wrong constant name extract_non_symbol_default! -# wrong constant name translate1 -# wrong constant name translate -# wrong constant name -# undefined method `flatten_keys1' for module `I18n::Backend::Flatten' -# wrong constant name escape_default_separator -# wrong constant name find_link -# wrong constant name flatten_keys1 -# wrong constant name flatten_keys -# wrong constant name flatten_translations -# wrong constant name links -# wrong constant name normalize_flat_keys -# wrong constant name resolve_link -# wrong constant name store_link -# wrong constant name -# wrong constant name escape_default_separator -# wrong constant name normalize_flat_keys -# wrong constant name -# wrong constant name load_po -# wrong constant name normalize -# wrong constant name normalize_pluralization -# wrong constant name parse -# uninitialized constant I18n::Backend::Gettext::PoData::DEFAULT_INDENT -# uninitialized constant I18n::Backend::Gettext::PoData::Elem -# uninitialized constant I18n::Backend::Gettext::PoData::K -# uninitialized constant I18n::Backend::Gettext::PoData::V -# wrong constant name set_comment -# wrong constant name -# wrong constant name -# undefined method `store_translations1' for module `I18n::Backend::InterpolationCompiler' -# wrong constant name -# wrong constant name compile_all_strings_in -# wrong constant name interpolate -# wrong constant name store_translations1 -# wrong constant name store_translations -# wrong constant name compile_if_an_interpolation -# wrong constant name compile_interpolation_token -# wrong constant name compiled_interpolation_body -# wrong constant name direct_key -# wrong constant name escape_key_sym -# wrong constant name escape_plain_str -# wrong constant name handle_interpolation_token -# wrong constant name interpolate_key -# wrong constant name interpolate_or_raise_missing -# wrong constant name interpolated_str? -# wrong constant name missing_key -# wrong constant name nil_key -# wrong constant name reserved_key -# wrong constant name tokenize -# wrong constant name -# wrong constant name -# uninitialized constant I18n::Backend::KeyValue::DEFAULT_REPLACEMENT_CHAR -# uninitialized constant I18n::Backend::KeyValue::FLATTEN_SEPARATOR -# wrong constant name -# uninitialized constant I18n::Backend::KeyValue::SEPARATOR_ESCAPE_CHAR -# wrong constant name -# undefined method `initialize1' for module `I18n::Backend::KeyValue::Implementation' -# undefined method `lookup1' for module `I18n::Backend::KeyValue::Implementation' -# undefined method `lookup2' for module `I18n::Backend::KeyValue::Implementation' -# undefined method `store_translations1' for module `I18n::Backend::KeyValue::Implementation' -# uninitialized constant I18n::Backend::KeyValue::Implementation::DEFAULT_REPLACEMENT_CHAR -# uninitialized constant I18n::Backend::KeyValue::Implementation::FLATTEN_SEPARATOR -# uninitialized constant I18n::Backend::KeyValue::Implementation::SEPARATOR_ESCAPE_CHAR -# wrong constant name available_locales -# wrong constant name init_translations -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name initialized? -# wrong constant name lookup1 -# wrong constant name lookup2 -# wrong constant name lookup -# wrong constant name pluralize -# wrong constant name store -# wrong constant name store= -# wrong constant name store_translations1 -# wrong constant name store_translations -# wrong constant name subtrees? -# wrong constant name translations -# wrong constant name -# wrong constant name [] -# wrong constant name has_key? -# wrong constant name initialize -# wrong constant name instance_of? -# wrong constant name is_a? -# wrong constant name kind_of? -# wrong constant name -# wrong constant name -# undefined method `lookup1' for module `I18n::Backend::Memoize' -# undefined method `lookup2' for module `I18n::Backend::Memoize' -# undefined method `reset_memoizations!1' for module `I18n::Backend::Memoize' -# undefined method `store_translations1' for module `I18n::Backend::Memoize' -# wrong constant name available_locales -# wrong constant name eager_load! -# wrong constant name lookup1 -# wrong constant name lookup2 -# wrong constant name lookup -# wrong constant name memoized_lookup -# wrong constant name reload! -# wrong constant name reset_memoizations!1 -# wrong constant name reset_memoizations! -# wrong constant name store_translations1 -# wrong constant name store_translations -# wrong constant name -# undefined method `interpolate1' for module `I18n::Backend::Metadata' -# undefined method `translate1' for module `I18n::Backend::Metadata' -# wrong constant name interpolate1 -# wrong constant name interpolate -# wrong constant name pluralize -# wrong constant name translate1 -# wrong constant name translate -# wrong constant name with_metadata -# wrong constant name -# wrong constant name included -# wrong constant name pluralize -# wrong constant name pluralizer -# wrong constant name pluralizers -# wrong constant name -# uninitialized constant I18n::Backend::Simple::DEFAULT_REPLACEMENT_CHAR -# wrong constant name -# undefined method `lookup1' for module `I18n::Backend::Simple::Implementation' -# undefined method `lookup2' for module `I18n::Backend::Simple::Implementation' -# undefined method `store_translations1' for module `I18n::Backend::Simple::Implementation' -# undefined method `translations1' for module `I18n::Backend::Simple::Implementation' -# uninitialized constant I18n::Backend::Simple::Implementation::DEFAULT_REPLACEMENT_CHAR -# wrong constant name available_locales -# wrong constant name eager_load! -# wrong constant name init_translations -# wrong constant name initialized? -# wrong constant name lookup1 -# wrong constant name lookup2 -# wrong constant name lookup -# wrong constant name reload! -# wrong constant name store_translations1 -# wrong constant name store_translations -# wrong constant name translations1 -# wrong constant name translations -# wrong constant name -# wrong constant name -# undefined method `transliterate1' for module `I18n::Backend::Transliterator' -# wrong constant name -# wrong constant name -# wrong constant name transliterate1 -# wrong constant name transliterate -# undefined method `initialize1' for class `I18n::Backend::Transliterator::HashTransliterator' -# undefined method `transliterate1' for class `I18n::Backend::Transliterator::HashTransliterator' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name transliterate1 -# wrong constant name transliterate -# wrong constant name -# undefined method `transliterate1' for class `I18n::Backend::Transliterator::ProcTransliterator' -# wrong constant name initialize -# wrong constant name transliterate1 -# wrong constant name transliterate -# wrong constant name -# undefined singleton method `get1' for `I18n::Backend::Transliterator' -# wrong constant name -# wrong constant name get1 -# wrong constant name get -# wrong constant name -# undefined method `exists?1' for module `I18n::Base' -# undefined method `exists?2' for module `I18n::Base' -# undefined method `l1' for module `I18n::Base' -# undefined method `l2' for module `I18n::Base' -# undefined method `localize1' for module `I18n::Base' -# undefined method `localize2' for module `I18n::Base' -# undefined method `normalize_keys1' for module `I18n::Base' -# undefined method `t1' for module `I18n::Base' -# undefined method `t2' for module `I18n::Base' -# undefined method `t3' for module `I18n::Base' -# undefined method `t4' for module `I18n::Base' -# undefined method `t!1' for module `I18n::Base' -# undefined method `translate1' for module `I18n::Base' -# undefined method `translate2' for module `I18n::Base' -# undefined method `translate3' for module `I18n::Base' -# undefined method `translate4' for module `I18n::Base' -# undefined method `translate!1' for module `I18n::Base' -# undefined method `transliterate1' for module `I18n::Base' -# undefined method `transliterate2' for module `I18n::Base' -# undefined method `transliterate3' for module `I18n::Base' -# undefined method `transliterate4' for module `I18n::Base' -# undefined method `with_locale1' for module `I18n::Base' -# wrong constant name available_locales -# wrong constant name available_locales= -# wrong constant name available_locales_initialized? -# wrong constant name backend -# wrong constant name backend= -# wrong constant name config -# wrong constant name config= -# wrong constant name default_locale -# wrong constant name default_locale= -# wrong constant name default_separator -# wrong constant name default_separator= -# wrong constant name eager_load! -# wrong constant name enforce_available_locales -# wrong constant name enforce_available_locales! -# wrong constant name enforce_available_locales= -# wrong constant name exception_handler -# wrong constant name exception_handler= -# wrong constant name exists?1 -# wrong constant name exists?2 -# wrong constant name exists? -# wrong constant name l1 -# wrong constant name l2 -# wrong constant name l -# wrong constant name load_path -# wrong constant name load_path= -# wrong constant name locale -# wrong constant name locale= -# wrong constant name locale_available? -# wrong constant name localize1 -# wrong constant name localize2 -# wrong constant name localize -# wrong constant name normalize_keys1 -# wrong constant name normalize_keys -# wrong constant name reload! -# wrong constant name t1 -# wrong constant name t2 -# wrong constant name t3 -# wrong constant name t4 -# wrong constant name t -# wrong constant name t!1 -# wrong constant name t! -# wrong constant name translate1 -# wrong constant name translate2 -# wrong constant name translate3 -# wrong constant name translate4 -# wrong constant name translate -# wrong constant name translate!1 -# wrong constant name translate! -# wrong constant name transliterate1 -# wrong constant name transliterate2 -# wrong constant name transliterate3 -# wrong constant name transliterate4 -# wrong constant name transliterate -# wrong constant name with_locale1 -# wrong constant name with_locale -# wrong constant name -# wrong constant name available_locales -# wrong constant name available_locales= -# wrong constant name available_locales_initialized? -# wrong constant name available_locales_set -# wrong constant name backend -# wrong constant name backend= -# wrong constant name clear_available_locales_set -# wrong constant name default_locale -# wrong constant name default_locale= -# wrong constant name default_separator -# wrong constant name default_separator= -# wrong constant name enforce_available_locales -# wrong constant name enforce_available_locales= -# wrong constant name exception_handler -# wrong constant name exception_handler= -# wrong constant name interpolation_patterns -# wrong constant name interpolation_patterns= -# wrong constant name load_path -# wrong constant name load_path= -# wrong constant name locale -# wrong constant name locale= -# wrong constant name missing_interpolation_argument_handler -# wrong constant name missing_interpolation_argument_handler= -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name call -# wrong constant name -# wrong constant name -# undefined method `_1' for module `I18n::Gettext::Helpers' -# undefined method `gettext1' for module `I18n::Gettext::Helpers' -# undefined method `n_1' for module `I18n::Gettext::Helpers' -# undefined method `ngettext1' for module `I18n::Gettext::Helpers' -# undefined method `np_1' for module `I18n::Gettext::Helpers' -# undefined method `npgettext1' for module `I18n::Gettext::Helpers' -# undefined method `ns_1' for module `I18n::Gettext::Helpers' -# undefined method `ns_2' for module `I18n::Gettext::Helpers' -# undefined method `nsgettext1' for module `I18n::Gettext::Helpers' -# undefined method `nsgettext2' for module `I18n::Gettext::Helpers' -# undefined method `s_1' for module `I18n::Gettext::Helpers' -# undefined method `sgettext1' for module `I18n::Gettext::Helpers' -# uninitialized constant I18n::Gettext::Helpers::N_ -# wrong constant name _1 -# wrong constant name _ -# wrong constant name gettext1 -# wrong constant name gettext -# wrong constant name n_1 -# wrong constant name n_ -# wrong constant name ngettext1 -# wrong constant name ngettext -# wrong constant name np_1 -# wrong constant name np_ -# wrong constant name npgettext1 -# wrong constant name npgettext -# wrong constant name ns_1 -# wrong constant name ns_2 -# wrong constant name ns_ -# wrong constant name nsgettext1 -# wrong constant name nsgettext2 -# wrong constant name nsgettext -# wrong constant name p_ -# wrong constant name pgettext -# wrong constant name s_1 -# wrong constant name s_ -# wrong constant name sgettext1 -# wrong constant name sgettext -# wrong constant name -# wrong constant name -# wrong constant name extract_scope -# wrong constant name plural_keys -# wrong constant name -# wrong constant name initialize -# wrong constant name locale -# wrong constant name -# wrong constant name filename -# wrong constant name initialize -# wrong constant name -# wrong constant name count -# wrong constant name entry -# wrong constant name initialize -# wrong constant name key -# wrong constant name -# wrong constant name -# wrong constant name -# undefined method `compute1' for class `I18n::Locale::Fallbacks' -# undefined method `compute2' for class `I18n::Locale::Fallbacks' -# uninitialized constant I18n::Locale::Fallbacks::DEFAULT_INDENT -# uninitialized constant I18n::Locale::Fallbacks::Elem -# uninitialized constant I18n::Locale::Fallbacks::K -# uninitialized constant I18n::Locale::Fallbacks::V -# wrong constant name [] -# wrong constant name compute1 -# wrong constant name compute2 -# wrong constant name compute -# wrong constant name defaults -# wrong constant name defaults= -# wrong constant name initialize -# wrong constant name map -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name parent -# wrong constant name parents -# wrong constant name self_and_parents -# wrong constant name -# wrong constant name -# wrong constant name to_sym -# wrong constant name -# wrong constant name match -# wrong constant name -# wrong constant name parser -# wrong constant name parser= -# wrong constant name tag -# wrong constant name initialize -# wrong constant name subtags -# wrong constant name tag -# wrong constant name to_a -# wrong constant name to_sym -# wrong constant name -# wrong constant name tag -# wrong constant name -# wrong constant name implementation -# wrong constant name implementation= -# wrong constant name tag -# wrong constant name -# wrong constant name call -# wrong constant name initialize -# wrong constant name -# wrong constant name initialize -# wrong constant name key -# wrong constant name string -# wrong constant name values -# wrong constant name -# wrong constant name -# undefined method `initialize1' for module `I18n::MissingTranslation::Base' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name key -# wrong constant name keys -# wrong constant name locale -# wrong constant name message -# wrong constant name options -# wrong constant name to_exception -# wrong constant name to_s -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name initialize -# wrong constant name key -# wrong constant name string -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name included -# wrong constant name -# wrong constant name filename -# wrong constant name initialize -# wrong constant name type -# wrong constant name -# wrong constant name -# wrong constant name cache_key_digest -# wrong constant name cache_key_digest= -# wrong constant name cache_namespace -# wrong constant name cache_namespace= -# wrong constant name cache_store -# wrong constant name cache_store= -# wrong constant name fallbacks -# wrong constant name fallbacks= -# wrong constant name interpolate -# wrong constant name interpolate_hash -# wrong constant name new_double_nested_cache -# wrong constant name perform_caching? -# undefined method `read_nonblock1' for class `IO' -# undefined method `read_nonblock2' for class `IO' -# wrong constant name beep -# wrong constant name cooked -# wrong constant name cooked! -# wrong constant name cursor -# wrong constant name cursor= -# wrong constant name echo= -# wrong constant name echo? -# wrong constant name getch -# wrong constant name getpass -# wrong constant name goto -# wrong constant name iflush -# wrong constant name ioflush -# wrong constant name noecho -# wrong constant name nonblock -# wrong constant name nonblock= -# wrong constant name nonblock? -# wrong constant name nread -# wrong constant name oflush -# wrong constant name pathconf -# wrong constant name pressed? -# wrong constant name raw -# wrong constant name raw! -# wrong constant name read_nonblock1 -# wrong constant name read_nonblock2 -# wrong constant name ready? -# wrong constant name wait -# wrong constant name wait_readable -# wrong constant name wait_writable -# wrong constant name winsize -# wrong constant name winsize= -# wrong constant name console -# undefined method `initialize1' for class `IPAddr' -# undefined method `initialize2' for class `IPAddr' -# wrong constant name == -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name -# wrong constant name -# wrong constant name -# undefined method `evaluate1' for class `IRB::Context' -# undefined method `initialize1' for class `IRB::Context' -# undefined method `initialize2' for class `IRB::Context' -# undefined method `initialize3' for class `IRB::Context' -# wrong constant name __exit__ -# wrong constant name __inspect__ -# wrong constant name __to_s__ -# wrong constant name evaluate1 -# wrong constant name evaluate -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize3 -# wrong constant name initialize -# wrong constant name inspect_last_value -# uninitialized constant IRB::DefaultEncodings::Elem -# wrong constant name external -# wrong constant name external= -# wrong constant name internal -# wrong constant name internal= -# wrong constant name -# wrong constant name [] -# wrong constant name members -# wrong constant name irb -# wrong constant name irb_change_workspace -# wrong constant name irb_current_working_workspace -# wrong constant name irb_fg -# wrong constant name irb_help -# wrong constant name irb_jobs -# wrong constant name irb_kill -# wrong constant name irb_pop_workspace -# wrong constant name irb_push_workspace -# wrong constant name irb_source -# wrong constant name irb_workspaces -# wrong constant name irb_original_method_name -# wrong constant name initialize -# undefined method `initialize1' for class `IRB::InputMethod' -# wrong constant name initialize1 -# wrong constant name initialize -# undefined method `initialize1' for class `IRB::Inspector' -# wrong constant name initialize1 -# wrong constant name initialize -# undefined method `initialize1' for class `IRB::Irb' -# undefined method `initialize2' for class `IRB::Irb' -# undefined method `initialize3' for class `IRB::Irb' -# wrong constant name handle_exception -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize3 -# wrong constant name initialize -# wrong constant name output_value -# wrong constant name prompt -# undefined method `find1' for class `IRB::Locale' -# undefined method `initialize1' for class `IRB::Locale' -# undefined method `load1' for class `IRB::Locale' -# undefined method `require1' for class `IRB::Locale' -# uninitialized constant IRB::Locale::String -# wrong constant name encoding -# wrong constant name find1 -# wrong constant name find -# wrong constant name format -# wrong constant name gets -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name lang -# wrong constant name load1 -# wrong constant name load -# wrong constant name modifier -# wrong constant name print -# wrong constant name printf -# wrong constant name puts -# wrong constant name readline -# wrong constant name require1 -# wrong constant name require -# wrong constant name territory -# wrong constant name -# wrong constant name initialize -# wrong constant name initialize -# wrong constant name initialize -# uninitialized constant IRB::ReadlineInputMethod::FILENAME_COMPLETION_PROC -# uninitialized constant IRB::ReadlineInputMethod::HISTORY -# uninitialized constant IRB::ReadlineInputMethod::USERNAME_COMPLETION_PROC -# uninitialized constant IRB::ReadlineInputMethod::VERSION -# wrong constant name initialize -# undefined method `Fail1' for class `IRB::SLex' -# undefined method `Raise1' for class `IRB::SLex' -# undefined method `create1' for class `IRB::SLex' -# undefined method `create2' for class `IRB::SLex' -# undefined method `def_rule1' for class `IRB::SLex' -# undefined method `def_rule2' for class `IRB::SLex' -# wrong constant name -# wrong constant name -# wrong constant name Fail1 -# uninitialized constant IRB::SLex::Fail -# wrong constant name -# wrong constant name Raise1 -# uninitialized constant IRB::SLex::Raise -# wrong constant name create1 -# wrong constant name create2 -# wrong constant name create -# wrong constant name def_rule1 -# wrong constant name def_rule2 -# wrong constant name def_rule -# wrong constant name def_rules -# wrong constant name match -# wrong constant name postproc -# wrong constant name preproc -# wrong constant name search -# wrong constant name -# wrong constant name -# undefined method `create_subnode1' for class `IRB::SLex::Node' -# undefined method `create_subnode2' for class `IRB::SLex::Node' -# undefined method `initialize1' for class `IRB::SLex::Node' -# undefined method `initialize2' for class `IRB::SLex::Node' -# undefined method `match1' for class `IRB::SLex::Node' -# undefined method `match_io1' for class `IRB::SLex::Node' -# undefined method `search1' for class `IRB::SLex::Node' -# wrong constant name create_subnode1 -# wrong constant name create_subnode2 -# wrong constant name create_subnode -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name match1 -# wrong constant name match -# wrong constant name match_io1 -# wrong constant name match_io -# wrong constant name postproc -# wrong constant name postproc= -# wrong constant name preproc -# wrong constant name preproc= -# wrong constant name search1 -# wrong constant name search -# wrong constant name -# wrong constant name -# wrong constant name included -# wrong constant name initialize -# wrong constant name initialize -# wrong constant name local_variable_get -# wrong constant name local_variable_set -# undefined singleton method `Inspector1' for `IRB' -# undefined singleton method `parse_opts1' for `IRB' -# undefined singleton method `rc_file1' for `IRB' -# undefined singleton method `setup1' for `IRB' -# wrong constant name Inspector1 -# wrong constant name delete_caller -# wrong constant name init_config -# wrong constant name init_error -# wrong constant name load_modules -# wrong constant name parse_opts1 -# wrong constant name parse_opts -# wrong constant name rc_file1 -# wrong constant name rc_file -# wrong constant name rc_file_generators -# wrong constant name run_config -# wrong constant name setup1 -# wrong constant name setup -# uninitialized constant Integer::EXABYTE -# uninitialized constant Integer::GIGABYTE -# uninitialized constant Integer::KILOBYTE -# uninitialized constant Integer::MEGABYTE -# uninitialized constant Integer::PETABYTE -# uninitialized constant Integer::TERABYTE -# wrong constant name to_bn -# wrong constant name from_state -# wrong constant name initialize -# uninitialized constant Jacobian -# uninitialized constant Jacobian -# wrong constant name [] -# wrong constant name members -# wrong constant name [] -# wrong constant name members -# wrong constant name class_eval -# 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 -# wrong constant name load -# wrong constant name method_added -# wrong constant name require -# uninitialized constant LUSolve -# uninitialized constant LUSolve -# wrong constant name is_missing? -# uninitialized constant Logger::LogDevice::SiD -# 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 -# wrong constant name initialize -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name initialize -# wrong constant name -# undefined method `add_rpath1' for class `MachO::FatFile' -# undefined method `change_dylib1' for class `MachO::FatFile' -# undefined method `change_dylib_id1' for class `MachO::FatFile' -# undefined method `change_install_name1' for class `MachO::FatFile' -# undefined method `change_rpath1' for class `MachO::FatFile' -# undefined method `delete_rpath1' for class `MachO::FatFile' -# undefined method `dylib_id=1' for class `MachO::FatFile' -# wrong constant name add_rpath1 -# wrong constant name add_rpath -# wrong constant name bundle? -# wrong constant name change_dylib1 -# wrong constant name change_dylib -# wrong constant name change_dylib_id1 -# wrong constant name change_dylib_id -# wrong constant name change_install_name1 -# wrong constant name change_install_name -# wrong constant name change_rpath1 -# wrong constant name change_rpath -# wrong constant name core? -# wrong constant name delete_rpath1 -# wrong constant name delete_rpath -# wrong constant name dsym? -# wrong constant name dylib? -# wrong constant name dylib_id -# wrong constant name dylib_id=1 -# wrong constant name dylib_id= -# wrong constant name dylib_load_commands -# wrong constant name dylinker? -# wrong constant name executable? -# wrong constant name extract -# wrong constant name fat_archs -# wrong constant name filename -# wrong constant name filename= -# wrong constant name filetype -# wrong constant name fvmlib? -# wrong constant name header -# wrong constant name initialize -# wrong constant name initialize_from_bin -# wrong constant name kext? -# wrong constant name linked_dylibs -# wrong constant name machos -# wrong constant name magic -# wrong constant name magic_string -# wrong constant name object? -# wrong constant name options -# wrong constant name populate_fields -# wrong constant name preload? -# wrong constant name rpaths -# wrong constant name serialize -# wrong constant name to_h -# wrong constant name write -# wrong constant name write! -# undefined singleton method `new_from_machos1' for `MachO::FatFile' -# wrong constant name -# wrong constant name new_from_bin -# wrong constant name new_from_machos1 -# wrong constant name new_from_machos -# wrong constant name initialize -# wrong constant name -# 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 align -# wrong constant name cpusubtype -# wrong constant name cputype -# wrong constant name initialize -# wrong constant name offset -# wrong constant name serialize -# wrong constant name size -# wrong constant name -# undefined method `initialize1' for class `MachO::Headers::FatArch64' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name reserved -# wrong constant name -# wrong constant name initialize -# wrong constant name magic -# wrong constant name nfat_arch -# wrong constant name serialize -# wrong constant name -# wrong constant name alignment -# wrong constant name bundle? -# wrong constant name core? -# wrong constant name cpusubtype -# wrong constant name cputype -# wrong constant name dsym? -# wrong constant name dylib? -# wrong constant name dylinker? -# wrong constant name executable? -# wrong constant name filetype -# wrong constant name flag? -# wrong constant name flags -# wrong constant name fvmlib? -# wrong constant name initialize -# wrong constant name kext? -# wrong constant name magic -# wrong constant name magic32? -# wrong constant name magic64? -# wrong constant name ncmds -# wrong constant name object? -# wrong constant name preload? -# wrong constant name sizeofcmds -# wrong constant name -# wrong constant name initialize -# wrong constant name reserved -# wrong constant name -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name initialize -# wrong constant name -# 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 -# 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 minos -# wrong constant name minos_string -# wrong constant name platform -# wrong constant name sdk -# wrong constant name sdk_string -# wrong constant name tool_entries -# wrong constant name -# wrong constant name initialize -# wrong constant name tools -# wrong constant name initialize -# wrong constant name to_h -# wrong constant name tool -# wrong constant name version -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name bind_off -# wrong constant name bind_size -# wrong constant name export_off -# wrong constant name export_size -# wrong constant name initialize -# wrong constant name lazy_bind_off -# wrong constant name lazy_bind_size -# wrong constant name rebase_off -# wrong constant name rebase_size -# wrong constant name weak_bind_off -# wrong constant name weak_bind_size -# wrong constant name -# wrong constant name compatibility_version -# wrong constant name current_version -# wrong constant name initialize -# wrong constant name name -# wrong constant name timestamp -# wrong constant name -# wrong constant name initialize -# wrong constant name name -# wrong constant name -# wrong constant name extrefsymoff -# wrong constant name extreloff -# wrong constant name iextdefsym -# wrong constant name ilocalsym -# wrong constant name indirectsymoff -# wrong constant name initialize -# wrong constant name iundefsym -# wrong constant name locreloff -# wrong constant name modtaboff -# wrong constant name nextdefsym -# wrong constant name nextrefsyms -# wrong constant name nextrel -# wrong constant name nindirectsyms -# wrong constant name nlocalsym -# wrong constant name nlocrel -# wrong constant name nmodtab -# wrong constant name ntoc -# wrong constant name nundefsym -# wrong constant name tocoff -# wrong constant name -# wrong constant name cryptid -# wrong constant name cryptoff -# wrong constant name cryptsize -# wrong constant name initialize -# wrong constant name -# wrong constant name initialize -# wrong constant name pad -# wrong constant name -# wrong constant name entryoff -# wrong constant name initialize -# wrong constant name stacksize -# wrong constant name -# wrong constant name header_addr -# wrong constant name initialize -# wrong constant name name -# wrong constant name -# wrong constant name header_addr -# wrong constant name initialize -# wrong constant name minor_version -# wrong constant name name -# wrong constant name -# wrong constant name -# wrong constant name dataoff -# wrong constant name datasize -# wrong constant name initialize -# wrong constant name -# wrong constant name count -# wrong constant name initialize -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name cmd -# wrong constant name cmdsize -# wrong constant name initialize -# wrong constant name offset -# wrong constant name serializable? -# wrong constant name serialize -# wrong constant name to_sym -# wrong constant name type -# wrong constant name view -# wrong constant name initialize -# wrong constant name to_h -# wrong constant name to_i -# wrong constant name -# wrong constant name alignment -# wrong constant name endianness -# wrong constant name initialize -# wrong constant name -# wrong constant name context_for -# wrong constant name -# wrong constant name create -# wrong constant name new_from_bin -# wrong constant name data_owner -# wrong constant name initialize -# wrong constant name size -# wrong constant name -# wrong constant name cksum -# wrong constant name initialize -# wrong constant name -# wrong constant name initialize -# wrong constant name linked_modules -# wrong constant name name -# wrong constant name nmodules -# wrong constant name -# wrong constant name init_address -# wrong constant name init_module -# wrong constant name initialize -# wrong constant name reserved1 -# wrong constant name reserved2 -# wrong constant name reserved3 -# wrong constant name reserved4 -# wrong constant name reserved5 -# wrong constant name reserved6 -# wrong constant name -# wrong constant name -# wrong constant name initialize -# wrong constant name path -# wrong constant name -# wrong constant name fileoff -# wrong constant name filesize -# wrong constant name flag? -# wrong constant name flags -# wrong constant name guess_align -# wrong constant name initialize -# wrong constant name initprot -# wrong constant name maxprot -# wrong constant name nsects -# wrong constant name sections -# wrong constant name segname -# wrong constant name vmaddr -# wrong constant name vmsize -# wrong constant name -# wrong constant name -# wrong constant name initialize -# wrong constant name version -# wrong constant name version_string -# wrong constant name -# wrong constant name initialize -# wrong constant name sub_client -# wrong constant name -# wrong constant name initialize -# wrong constant name umbrella -# wrong constant name -# wrong constant name initialize -# wrong constant name sub_library -# wrong constant name -# wrong constant name initialize -# wrong constant name sub_umbrella -# wrong constant name -# wrong constant name initialize -# wrong constant name size -# wrong constant name -# wrong constant name initialize -# wrong constant name nsyms -# wrong constant name stroff -# wrong constant name strsize -# wrong constant name symoff -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name htoffset -# wrong constant name initialize -# wrong constant name nhints -# wrong constant name table -# wrong constant name -# wrong constant name hints -# wrong constant name initialize -# wrong constant name initialize -# wrong constant name isub_image -# wrong constant name itoc -# wrong constant name to_h -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name initialize -# wrong constant name uuid -# wrong constant name uuid_string -# wrong constant name -# wrong constant name initialize -# wrong constant name sdk -# wrong constant name sdk_string -# wrong constant name version -# wrong constant name version_string -# wrong constant name -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name -# undefined method `add_command1' for class `MachO::MachOFile' -# undefined method `add_rpath1' for class `MachO::MachOFile' -# undefined method `change_dylib1' for class `MachO::MachOFile' -# undefined method `change_dylib_id1' for class `MachO::MachOFile' -# undefined method `change_install_name1' for class `MachO::MachOFile' -# undefined method `change_rpath1' for class `MachO::MachOFile' -# undefined method `delete_command1' for class `MachO::MachOFile' -# undefined method `delete_rpath1' for class `MachO::MachOFile' -# undefined method `dylib_id=1' for class `MachO::MachOFile' -# undefined method `insert_command1' for class `MachO::MachOFile' -# wrong constant name [] -# wrong constant name add_command1 -# wrong constant name add_command -# wrong constant name add_rpath1 -# wrong constant name add_rpath -# wrong constant name alignment -# wrong constant name bundle? -# wrong constant name change_dylib1 -# wrong constant name change_dylib -# wrong constant name change_dylib_id1 -# wrong constant name change_dylib_id -# wrong constant name change_install_name1 -# wrong constant name change_install_name -# wrong constant name change_rpath1 -# wrong constant name change_rpath -# wrong constant name command -# wrong constant name core? -# wrong constant name cpusubtype -# wrong constant name cputype -# wrong constant name delete_command1 -# wrong constant name delete_command -# wrong constant name delete_rpath1 -# wrong constant name delete_rpath -# wrong constant name dsym? -# wrong constant name dylib? -# wrong constant name dylib_id -# wrong constant name dylib_id=1 -# wrong constant name dylib_id= -# wrong constant name dylib_load_commands -# wrong constant name dylinker? -# wrong constant name endianness -# wrong constant name executable? -# wrong constant name filename -# wrong constant name filename= -# wrong constant name filetype -# wrong constant name flags -# wrong constant name fvmlib? -# wrong constant name header -# wrong constant name initialize -# wrong constant name initialize_from_bin -# wrong constant name insert_command1 -# wrong constant name insert_command -# wrong constant name kext? -# wrong constant name linked_dylibs -# wrong constant name load_commands -# wrong constant name magic -# wrong constant name magic32? -# wrong constant name magic64? -# wrong constant name magic_string -# wrong constant name ncmds -# wrong constant name object? -# wrong constant name options -# wrong constant name populate_fields -# wrong constant name preload? -# wrong constant name replace_command -# wrong constant name rpaths -# wrong constant name segment_alignment -# wrong constant name segments -# wrong constant name serialize -# wrong constant name sizeofcmds -# wrong constant name to_h -# wrong constant name write -# wrong constant name write! -# wrong constant name -# wrong constant name new_from_bin -# wrong constant name to_h -# wrong constant name -# wrong constant name bytesize -# wrong constant name new_from_bin -# wrong constant name endianness -# wrong constant name initialize -# wrong constant name offset -# wrong constant name raw_data -# wrong constant name to_h -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name macho_slice -# wrong constant name macho_slice= -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name addr -# wrong constant name align -# wrong constant name empty? -# wrong constant name flag? -# wrong constant name flags -# wrong constant name initialize -# wrong constant name nreloc -# wrong constant name offset -# wrong constant name reloff -# wrong constant name reserved1 -# wrong constant name reserved2 -# wrong constant name section_name -# wrong constant name sectname -# wrong constant name segment_name -# wrong constant name segname -# wrong constant name size -# wrong constant name -# wrong constant name initialize -# wrong constant name reserved3 -# wrong constant name -# wrong constant name -# undefined singleton method `add_rpath1' for `MachO::Tools' -# undefined singleton method `change_dylib_id1' for `MachO::Tools' -# undefined singleton method `change_install_name1' for `MachO::Tools' -# undefined singleton method `change_rpath1' for `MachO::Tools' -# undefined singleton method `delete_rpath1' for `MachO::Tools' -# undefined singleton method `merge_machos1' for `MachO::Tools' -# wrong constant name -# wrong constant name add_rpath1 -# wrong constant name add_rpath -# wrong constant name change_dylib_id1 -# wrong constant name change_dylib_id -# wrong constant name change_install_name1 -# wrong constant name change_install_name -# wrong constant name change_rpath1 -# wrong constant name change_rpath -# wrong constant name delete_rpath1 -# wrong constant name delete_rpath -# wrong constant name dylibs -# wrong constant name merge_machos1 -# wrong constant name merge_machos -# wrong constant name initialize -# wrong constant name -# wrong constant name initialize -# wrong constant name -# undefined singleton method `pack_strings1' for `MachO::Utils' -# wrong constant name -# wrong constant name big_magic? -# wrong constant name fat_magic32? -# wrong constant name fat_magic64? -# wrong constant name fat_magic? -# wrong constant name little_magic? -# wrong constant name magic32? -# wrong constant name magic64? -# wrong constant name magic? -# wrong constant name nullpad -# wrong constant name pack_strings1 -# wrong constant name pack_strings -# wrong constant name padding_for -# wrong constant name round -# wrong constant name specialize_format -# wrong constant name -# wrong constant name open -# wrong constant name delete_rpath -# wrong constant name dylib_id -# wrong constant name rpaths -# uninitialized constant Matrix -# uninitialized constant Matrix -# uninitialized constant MessagePack -# uninitialized constant MessagePack -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# undefined method `expression_at1' for module `MethodSource::CodeHelpers' -# wrong constant name -# wrong constant name comment_describing -# wrong constant name complete_expression? -# wrong constant name expression_at1 -# wrong constant name expression_at -# wrong constant name -# wrong constant name === -# wrong constant name rbx? -# wrong constant name -# wrong constant name comment -# wrong constant name source -# wrong constant name -# wrong constant name included -# wrong constant name source_location -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name source_location -# wrong constant name -# wrong constant name source_location -# wrong constant name -# wrong constant name source_location -# wrong constant name -# wrong constant name -# wrong constant name -# undefined singleton method `comment_helper1' for `MethodSource' -# undefined singleton method `lines_for1' for `MethodSource' -# undefined singleton method `source_helper1' for `MethodSource' -# wrong constant name -# wrong constant name comment_helper1 -# wrong constant name comment_helper -# wrong constant name extract_code -# wrong constant name lines_for1 -# wrong constant name lines_for -# wrong constant name source_helper1 -# wrong constant name source_helper -# wrong constant name valid_expression? -# 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 -# uninitialized constant Minitest::AbstractReporter::VERSION -# wrong constant name lock -# wrong constant name locked? -# wrong constant name passed? -# wrong constant name prerecord -# wrong constant name record -# wrong constant name report -# wrong constant name start -# wrong constant name synchronize -# wrong constant name try_lock -# wrong constant name unlock -# wrong constant name -# wrong constant name error -# wrong constant name location -# wrong constant name result_code -# wrong constant name result_label -# wrong constant name -# undefined method `assert1' for module `Minitest::Assertions' -# undefined method `assert_empty1' for module `Minitest::Assertions' -# undefined method `assert_equal1' for module `Minitest::Assertions' -# undefined method `assert_in_delta1' for module `Minitest::Assertions' -# undefined method `assert_in_delta2' for module `Minitest::Assertions' -# undefined method `assert_in_epsilon1' for module `Minitest::Assertions' -# undefined method `assert_in_epsilon2' for module `Minitest::Assertions' -# undefined method `assert_includes1' for module `Minitest::Assertions' -# undefined method `assert_instance_of1' for module `Minitest::Assertions' -# undefined method `assert_kind_of1' for module `Minitest::Assertions' -# undefined method `assert_match1' for module `Minitest::Assertions' -# undefined method `assert_nil1' for module `Minitest::Assertions' -# undefined method `assert_operator1' for module `Minitest::Assertions' -# undefined method `assert_operator2' for module `Minitest::Assertions' -# undefined method `assert_output1' for module `Minitest::Assertions' -# undefined method `assert_output2' for module `Minitest::Assertions' -# undefined method `assert_path_exists1' for module `Minitest::Assertions' -# undefined method `assert_predicate1' for module `Minitest::Assertions' -# undefined method `assert_respond_to1' for module `Minitest::Assertions' -# undefined method `assert_same1' for module `Minitest::Assertions' -# undefined method `assert_send1' for module `Minitest::Assertions' -# undefined method `assert_throws1' for module `Minitest::Assertions' -# undefined method `flunk1' for module `Minitest::Assertions' -# undefined method `message1' for module `Minitest::Assertions' -# undefined method `message2' for module `Minitest::Assertions' -# undefined method `pass1' for module `Minitest::Assertions' -# undefined method `refute1' for module `Minitest::Assertions' -# undefined method `refute_empty1' for module `Minitest::Assertions' -# undefined method `refute_equal1' for module `Minitest::Assertions' -# undefined method `refute_in_delta1' for module `Minitest::Assertions' -# undefined method `refute_in_delta2' for module `Minitest::Assertions' -# undefined method `refute_in_epsilon1' for module `Minitest::Assertions' -# undefined method `refute_in_epsilon2' for module `Minitest::Assertions' -# undefined method `refute_includes1' for module `Minitest::Assertions' -# undefined method `refute_instance_of1' for module `Minitest::Assertions' -# undefined method `refute_kind_of1' for module `Minitest::Assertions' -# undefined method `refute_match1' for module `Minitest::Assertions' -# undefined method `refute_nil1' for module `Minitest::Assertions' -# undefined method `refute_operator1' for module `Minitest::Assertions' -# undefined method `refute_operator2' for module `Minitest::Assertions' -# undefined method `refute_path_exists1' for module `Minitest::Assertions' -# undefined method `refute_predicate1' for module `Minitest::Assertions' -# undefined method `refute_respond_to1' for module `Minitest::Assertions' -# undefined method `refute_same1' for module `Minitest::Assertions' -# undefined method `skip1' for module `Minitest::Assertions' -# undefined method `skip2' for module `Minitest::Assertions' -# wrong constant name _synchronize -# wrong constant name assert1 -# wrong constant name assert -# wrong constant name assert_empty1 -# wrong constant name assert_empty -# wrong constant name assert_equal1 -# wrong constant name assert_equal -# wrong constant name assert_in_delta1 -# wrong constant name assert_in_delta2 -# wrong constant name assert_in_delta -# wrong constant name assert_in_epsilon1 -# wrong constant name assert_in_epsilon2 -# wrong constant name assert_in_epsilon -# wrong constant name assert_includes1 -# wrong constant name assert_includes -# wrong constant name assert_instance_of1 -# wrong constant name assert_instance_of -# wrong constant name assert_kind_of1 -# wrong constant name assert_kind_of -# wrong constant name assert_match1 -# wrong constant name assert_match -# wrong constant name assert_mock -# wrong constant name assert_nil1 -# wrong constant name assert_nil -# wrong constant name assert_operator1 -# wrong constant name assert_operator2 -# wrong constant name assert_operator -# wrong constant name assert_output1 -# wrong constant name assert_output2 -# wrong constant name assert_output -# wrong constant name assert_path_exists1 -# wrong constant name assert_path_exists -# wrong constant name assert_predicate1 -# wrong constant name assert_predicate -# wrong constant name assert_raises -# wrong constant name assert_respond_to1 -# wrong constant name assert_respond_to -# wrong constant name assert_same1 -# wrong constant name assert_same -# wrong constant name assert_send1 -# wrong constant name assert_send -# wrong constant name assert_silent -# wrong constant name assert_throws1 -# wrong constant name assert_throws -# wrong constant name capture_io -# wrong constant name capture_subprocess_io -# wrong constant name diff -# wrong constant name exception_details -# wrong constant name fail_after -# wrong constant name flunk1 -# wrong constant name flunk -# wrong constant name message1 -# wrong constant name message2 -# wrong constant name message -# wrong constant name mu_pp -# wrong constant name mu_pp_for_diff -# wrong constant name pass1 -# wrong constant name pass -# wrong constant name refute1 -# wrong constant name refute -# wrong constant name refute_empty1 -# wrong constant name refute_empty -# wrong constant name refute_equal1 -# wrong constant name refute_equal -# wrong constant name refute_in_delta1 -# wrong constant name refute_in_delta2 -# wrong constant name refute_in_delta -# wrong constant name refute_in_epsilon1 -# wrong constant name refute_in_epsilon2 -# wrong constant name refute_in_epsilon -# wrong constant name refute_includes1 -# wrong constant name refute_includes -# wrong constant name refute_instance_of1 -# wrong constant name refute_instance_of -# wrong constant name refute_kind_of1 -# wrong constant name refute_kind_of -# wrong constant name refute_match1 -# wrong constant name refute_match -# wrong constant name refute_nil1 -# wrong constant name refute_nil -# wrong constant name refute_operator1 -# wrong constant name refute_operator2 -# wrong constant name refute_operator -# wrong constant name refute_path_exists1 -# wrong constant name refute_path_exists -# wrong constant name refute_predicate1 -# wrong constant name refute_predicate -# wrong constant name refute_respond_to1 -# wrong constant name refute_respond_to -# wrong constant name refute_same1 -# wrong constant name refute_same -# wrong constant name skip1 -# wrong constant name skip2 -# wrong constant name skip -# wrong constant name skip_until -# wrong constant name skipped? -# wrong constant name things_to_diff -# wrong constant name -# wrong constant name diff -# wrong constant name diff= -# wrong constant name filter -# wrong constant name -# wrong constant name << -# uninitialized constant Minitest::CompositeReporter::VERSION -# wrong constant name initialize -# wrong constant name io -# wrong constant name reporters -# wrong constant name reporters= -# wrong constant name -# uninitialized constant Minitest::Expectation::Elem -# wrong constant name ctx -# wrong constant name ctx= -# wrong constant name target -# wrong constant name target= -# wrong constant name -# wrong constant name [] -# wrong constant name members -# wrong constant name must_be -# wrong constant name must_be_close_to -# wrong constant name must_be_empty -# wrong constant name must_be_instance_of -# wrong constant name must_be_kind_of -# wrong constant name must_be_nil -# wrong constant name must_be_same_as -# wrong constant name must_be_silent -# wrong constant name must_be_within_delta -# wrong constant name must_be_within_epsilon -# wrong constant name must_equal -# wrong constant name must_include -# wrong constant name must_match -# wrong constant name must_output -# wrong constant name must_raise -# wrong constant name must_respond_to -# wrong constant name must_throw -# wrong constant name path_must_exist -# wrong constant name path_wont_exist -# wrong constant name wont_be -# wrong constant name wont_be_close_to -# wrong constant name wont_be_empty -# wrong constant name wont_be_instance_of -# wrong constant name wont_be_kind_of -# wrong constant name wont_be_nil -# wrong constant name wont_be_same_as -# wrong constant name wont_be_within_delta -# wrong constant name wont_be_within_epsilon -# wrong constant name wont_equal -# wrong constant name wont_include -# wrong constant name wont_match -# wrong constant name wont_respond_to -# wrong constant name -# undefined method `jruby?1' for module `Minitest::Guard' -# undefined method `maglev?1' for module `Minitest::Guard' -# undefined method `mri?1' for module `Minitest::Guard' -# undefined method `osx?1' for module `Minitest::Guard' -# undefined method `rubinius?1' for module `Minitest::Guard' -# undefined method `windows?1' for module `Minitest::Guard' -# wrong constant name jruby?1 -# wrong constant name jruby? -# wrong constant name maglev?1 -# wrong constant name maglev? -# wrong constant name mri?1 -# wrong constant name mri? -# wrong constant name osx?1 -# wrong constant name osx? -# wrong constant name rubinius?1 -# wrong constant name rubinius? -# wrong constant name windows?1 -# wrong constant name windows? -# wrong constant name -# undefined method `expect1' for class `Minitest::Mock' -# undefined method `initialize1' for class `Minitest::Mock' -# undefined method `respond_to?1' for class `Minitest::Mock' -# wrong constant name === -# wrong constant name __call -# wrong constant name __respond_to? -# wrong constant name class -# wrong constant name expect1 -# wrong constant name expect -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name inspect -# wrong constant name instance_eval -# wrong constant name instance_variables -# wrong constant name method_missing -# wrong constant name object_id -# wrong constant name public_send -# wrong constant name respond_to?1 -# wrong constant name respond_to? -# wrong constant name send -# wrong constant name to_s -# wrong constant name verify -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name << -# wrong constant name initialize -# wrong constant name shutdown -# wrong constant name size -# wrong constant name start -# wrong constant name -# wrong constant name -# wrong constant name _synchronize -# wrong constant name run_one_method -# wrong constant name test_order -# wrong constant name -# wrong constant name -# wrong constant name -# uninitialized constant Minitest::ProgressReporter::VERSION -# wrong constant name -# wrong constant name class_name -# wrong constant name error? -# wrong constant name location -# wrong constant name passed? -# wrong constant name result_code -# wrong constant name skipped? -# wrong constant name -# undefined method `initialize1' for class `Minitest::Reporter' -# undefined method `initialize2' for class `Minitest::Reporter' -# uninitialized constant Minitest::Reporter::VERSION -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name io -# wrong constant name io= -# wrong constant name options -# wrong constant name options= -# wrong constant name -# uninitialized constant Minitest::Result::SIGNALS -# wrong constant name klass -# wrong constant name klass= -# wrong constant name source_location -# wrong constant name source_location= -# wrong constant name -# wrong constant name from -# wrong constant name assertions -# wrong constant name assertions= -# wrong constant name failure -# wrong constant name failures -# wrong constant name failures= -# wrong constant name initialize -# wrong constant name marshal_dump -# wrong constant name marshal_load -# wrong constant name name -# wrong constant name name= -# wrong constant name passed? -# wrong constant name result_code -# wrong constant name run -# wrong constant name skipped? -# wrong constant name time -# wrong constant name time= -# wrong constant name time_it -# undefined singleton method `run1' for `Minitest::Runnable' -# wrong constant name -# wrong constant name inherited -# wrong constant name methods_matching -# wrong constant name on_signal -# wrong constant name reset -# wrong constant name run1 -# wrong constant name run -# wrong constant name run_one_method -# wrong constant name runnable_methods -# wrong constant name runnables -# wrong constant name with_info_handler -# wrong constant name -# wrong constant name -# uninitialized constant Minitest::Spec::E -# uninitialized constant Minitest::Spec::PASSTHROUGH_EXCEPTIONS -# uninitialized constant Minitest::Spec::SIGNALS -# uninitialized constant Minitest::Spec::TEARDOWN_METHODS -# uninitialized constant Minitest::Spec::UNDEFINED -# undefined method `after1' for module `Minitest::Spec::DSL' -# undefined method `before1' for module `Minitest::Spec::DSL' -# undefined method `it1' for module `Minitest::Spec::DSL' -# undefined method `specify1' for module `Minitest::Spec::DSL' -# wrong constant name -# wrong constant name after1 -# wrong constant name after -# wrong constant name before1 -# wrong constant name before -# wrong constant name children -# wrong constant name create -# wrong constant name desc -# wrong constant name describe_stack -# wrong constant name it1 -# wrong constant name it -# wrong constant name let -# wrong constant name name -# wrong constant name nuke_test_methods! -# wrong constant name register_spec_type -# wrong constant name spec_type -# wrong constant name specify1 -# wrong constant name specify -# wrong constant name subject -# wrong constant name to_s -# undefined method `_1' for module `Minitest::Spec::DSL::InstanceMethods' -# undefined method `expect1' for module `Minitest::Spec::DSL::InstanceMethods' -# undefined method `value1' for module `Minitest::Spec::DSL::InstanceMethods' -# wrong constant name _1 -# wrong constant name _ -# wrong constant name before_setup -# wrong constant name expect1 -# wrong constant name expect -# wrong constant name value1 -# wrong constant name value -# wrong constant name -# wrong constant name -# wrong constant name extended -# wrong constant name -# wrong constant name current -# uninitialized constant Minitest::StatisticsReporter::VERSION -# wrong constant name assertions -# wrong constant name assertions= -# wrong constant name count -# wrong constant name count= -# wrong constant name errors -# wrong constant name errors= -# wrong constant name failures -# wrong constant name failures= -# wrong constant name results -# wrong constant name results= -# wrong constant name skips -# wrong constant name skips= -# wrong constant name start_time -# wrong constant name start_time= -# wrong constant name total_time -# wrong constant name total_time= -# wrong constant name -# uninitialized constant Minitest::SummaryReporter::VERSION -# wrong constant name aggregated_results -# wrong constant name old_sync -# wrong constant name old_sync= -# wrong constant name statistics -# wrong constant name summary -# wrong constant name sync -# wrong constant name sync= -# wrong constant name -# uninitialized constant Minitest::Test::E -# wrong constant name -# uninitialized constant Minitest::Test::SIGNALS -# uninitialized constant Minitest::Test::UNDEFINED -# wrong constant name capture_exceptions -# wrong constant name with_info_handler -# wrong constant name after_setup -# wrong constant name after_teardown -# wrong constant name before_setup -# wrong constant name before_teardown -# wrong constant name setup -# wrong constant name teardown -# wrong constant name -# wrong constant name -# wrong constant name i_suck_and_my_tests_are_order_dependent! -# wrong constant name io_lock -# wrong constant name io_lock= -# wrong constant name make_my_diffs_pretty! -# wrong constant name parallelize_me! -# wrong constant name test_order -# wrong constant name error= -# wrong constant name initialize -# wrong constant name -# wrong constant name -# uninitialized constant Minitest::Unit::TestCase::E -# uninitialized constant Minitest::Unit::TestCase::PASSTHROUGH_EXCEPTIONS -# uninitialized constant Minitest::Unit::TestCase::SIGNALS -# uninitialized constant Minitest::Unit::TestCase::TEARDOWN_METHODS -# uninitialized constant Minitest::Unit::TestCase::UNDEFINED -# wrong constant name -# wrong constant name -# wrong constant name after_tests -# wrong constant name autorun -# undefined singleton method `process_args1' for `Minitest' -# undefined singleton method `run1' for `Minitest' -# wrong constant name -# wrong constant name __run -# wrong constant name after_run -# wrong constant name autorun -# wrong constant name backtrace_filter -# wrong constant name backtrace_filter= -# wrong constant name clock_time -# wrong constant name extensions -# wrong constant name extensions= -# wrong constant name filter_backtrace -# wrong constant name info_signal -# wrong constant name info_signal= -# wrong constant name init_plugins -# wrong constant name load_plugins -# wrong constant name parallel_executor -# wrong constant name parallel_executor= -# wrong constant name process_args1 -# wrong constant name process_args -# wrong constant name reporter -# wrong constant name reporter= -# wrong constant name run1 -# wrong constant name run -# wrong constant name run_one_method -# uninitialized constant Mktemp::LOW_METHODS -# uninitialized constant Mktemp::METHODS -# uninitialized constant Mktemp::OPT_TABLE -# uninitialized constant Mktemp::VERSION -# wrong constant name -# undefined method `cattr_accessor1' for class `Module' -# undefined method `cattr_accessor2' for class `Module' -# undefined method `cattr_accessor3' for class `Module' -# undefined method `cattr_accessor4' for class `Module' -# undefined method `cattr_reader1' for class `Module' -# undefined method `cattr_reader2' for class `Module' -# undefined method `cattr_reader3' for class `Module' -# undefined method `cattr_writer1' for class `Module' -# undefined method `cattr_writer2' for class `Module' -# undefined method `cattr_writer3' for class `Module' -# undefined method `delegate1' for class `Module' -# undefined method `delegate2' for class `Module' -# undefined method `delegate3' for class `Module' -# undefined method `delegate4' for class `Module' -# undefined method `infect_an_assertion1' for class `Module' -# undefined method `mattr_accessor1' for class `Module' -# undefined method `mattr_accessor2' for class `Module' -# undefined method `mattr_accessor3' for class `Module' -# undefined method `mattr_accessor4' for class `Module' -# undefined method `mattr_reader1' for class `Module' -# undefined method `mattr_reader2' for class `Module' -# undefined method `mattr_reader3' for class `Module' -# undefined method `mattr_writer1' for class `Module' -# undefined method `mattr_writer2' for class `Module' -# undefined method `mattr_writer3' for class `Module' -# wrong constant name -# wrong constant name alias_attribute -# wrong constant name anonymous? -# wrong constant name cattr_accessor1 -# wrong constant name cattr_accessor2 -# wrong constant name cattr_accessor3 -# wrong constant name cattr_accessor4 -# wrong constant name cattr_accessor -# wrong constant name cattr_reader1 -# wrong constant name cattr_reader2 -# wrong constant name cattr_reader3 -# wrong constant name cattr_reader -# wrong constant name cattr_writer1 -# wrong constant name cattr_writer2 -# wrong constant name cattr_writer3 -# wrong constant name cattr_writer -# wrong constant name context -# wrong constant name delegate1 -# wrong constant name delegate2 -# wrong constant name delegate3 -# wrong constant name delegate4 -# wrong constant name delegate -# wrong constant name delegate_missing_to -# wrong constant name deprecate -# wrong constant name describe -# wrong constant name example_group -# wrong constant name fcontext -# wrong constant name fdescribe -# wrong constant name infect_an_assertion1 -# wrong constant name infect_an_assertion -# wrong constant name mattr_accessor1 -# wrong constant name mattr_accessor2 -# wrong constant name mattr_accessor3 -# wrong constant name mattr_accessor4 -# wrong constant name mattr_accessor -# wrong constant name mattr_reader1 -# wrong constant name mattr_reader2 -# wrong constant name mattr_reader3 -# wrong constant name mattr_reader -# wrong constant name mattr_writer1 -# wrong constant name mattr_writer2 -# wrong constant name mattr_writer3 -# wrong constant name mattr_writer -# wrong constant name memoize_function -# wrong constant name memoize_method -# wrong constant name method_visibility -# wrong constant name module_parent -# wrong constant name module_parent_name -# wrong constant name module_parents -# wrong constant name parent -# wrong constant name parent_name -# wrong constant name parents -# wrong constant name redefine_method -# wrong constant name redefine_singleton_method -# wrong constant name shared_context -# wrong constant name shared_examples -# wrong constant name shared_examples_for -# wrong constant name silence_redefinition_of_method -# wrong constant name xcontext -# wrong constant name xdescribe -# wrong constant name -# wrong constant name enter -# wrong constant name exit -# wrong constant name try_enter -# wrong constant name initialize -# wrong constant name initialize -# undefined method `initialize1' for class `Mustache' -# undefined method `render1' for class `Mustache' -# undefined method `render2' for class `Mustache' -# undefined method `render_file1' for class `Mustache' -# 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 compiled? -# wrong constant name context -# wrong constant name escape -# wrong constant name escapeHTML -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name initialize_settings -# wrong constant name partial -# wrong constant name path -# wrong constant name raise_on_context_miss= -# wrong constant name raise_on_context_miss? -# wrong constant name render1 -# wrong constant name render2 -# wrong constant name render -# wrong constant name render_file1 -# wrong constant name render_file -# wrong constant name template -# wrong constant name template= -# wrong constant name template_extension -# wrong constant name template_extension= -# wrong constant name template_file -# wrong constant name template_file= -# wrong constant name template_name -# wrong constant name template_name= -# wrong constant name template_path -# wrong constant name template_path= -# undefined method `fetch1' for class `Mustache::Context' -# undefined method `find1' for class `Mustache::Context' -# undefined method `partial1' for class `Mustache::Context' -# wrong constant name [] -# wrong constant name []= -# wrong constant name current -# wrong constant name escape -# wrong constant name fetch1 -# wrong constant name fetch -# wrong constant name find1 -# wrong constant name find -# wrong constant name has_key? -# wrong constant name initialize -# wrong constant name mustache_in_stack -# wrong constant name partial1 -# wrong constant name partial -# wrong constant name pop -# wrong constant name push -# wrong constant name template_for_partial -# wrong constant name -# wrong constant name -# wrong constant name -# undefined method `initialize1' for class `Mustache::Generator' -# wrong constant name compile -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name -# undefined method `initialize1' for class `Mustache::Parser' -# wrong constant name -# wrong constant name compile -# wrong constant name ctag -# wrong constant name ctag= -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name otag -# wrong constant name otag= -# wrong constant name initialize -# wrong constant name -# wrong constant name -# wrong constant name add_type -# wrong constant name valid_types -# undefined method `compile1' for class `Mustache::Template' -# undefined method `initialize1' for class `Mustache::Template' -# undefined method `to_s1' for class `Mustache::Template' -# undefined method `tokens1' for class `Mustache::Template' -# wrong constant name compile1 -# wrong constant name compile -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name partials -# wrong constant name render -# wrong constant name sections -# wrong constant name source -# wrong constant name tags -# wrong constant name to_s1 -# wrong constant name to_s -# wrong constant name tokens1 -# wrong constant name tokens -# wrong constant name -# wrong constant name recursor -# wrong constant name -# wrong constant name classify -# wrong constant name initialize -# wrong constant name underscore -# wrong constant name -# wrong constant name -# undefined singleton method `render_file1' for `Mustache' -# undefined singleton method `templateify1' for `Mustache' -# undefined singleton method `underscore1' for `Mustache' -# wrong constant name -# wrong constant name classify -# wrong constant name compiled? -# wrong constant name const_from_file -# wrong constant name inheritable_config_for -# wrong constant name inherited -# wrong constant name initialize_settings -# wrong constant name partial -# wrong constant name path -# wrong constant name path= -# wrong constant name raise_on_context_miss= -# wrong constant name raise_on_context_miss? -# wrong constant name render -# wrong constant name render_file1 -# wrong constant name render_file -# wrong constant name rescued_const_get -# wrong constant name template -# wrong constant name template= -# wrong constant name template_extension -# wrong constant name template_extension= -# wrong constant name template_file -# wrong constant name template_file= -# wrong constant name template_name -# wrong constant name template_name= -# wrong constant name template_path -# wrong constant name template_path= -# wrong constant name templateify1 -# wrong constant name templateify -# wrong constant name underscore1 -# wrong constant name underscore -# wrong constant name view_class -# wrong constant name view_namespace -# wrong constant name view_namespace= -# wrong constant name view_path -# wrong constant name view_path= -# wrong constant name missing_name -# wrong constant name missing_name? -# undefined method `initialize4' for class `Net::BufferedIO' -# wrong constant name initialize4 -# wrong constant name write_timeout -# wrong constant name write_timeout= -# uninitialized constant Net::DNS -# uninitialized constant Net::DNS -# uninitialized constant Net::FTP -# uninitialized constant Net::FTP -# uninitialized constant Net::FTPConnectionError -# uninitialized constant Net::FTPConnectionError -# uninitialized constant Net::FTPError -# uninitialized constant Net::FTPError -# uninitialized constant Net::FTPPermError -# uninitialized constant Net::FTPPermError -# uninitialized constant Net::FTPProtoError -# uninitialized constant Net::FTPProtoError -# uninitialized constant Net::FTPReplyError -# uninitialized constant Net::FTPReplyError -# uninitialized constant Net::FTPTempError -# uninitialized constant Net::FTPTempError -# wrong constant name -# 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= -# undefined method `initialize1' for class `Net::HTTP::Persistent' -# undefined method `initialize2' for class `Net::HTTP::Persistent' -# undefined method `initialize3' for class `Net::HTTP::Persistent' -# undefined method `request1' for class `Net::HTTP::Persistent' -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name ca_file -# wrong constant name ca_file= -# wrong constant name ca_path -# wrong constant name ca_path= -# wrong constant name cert -# wrong constant name cert= -# wrong constant name cert_store -# wrong constant name cert_store= -# wrong constant name certificate -# wrong constant name certificate= -# wrong constant name ciphers -# wrong constant name ciphers= -# wrong constant name connection_for -# wrong constant name debug_output -# wrong constant name debug_output= -# wrong constant name escape -# wrong constant name expired? -# wrong constant name finish -# wrong constant name generation -# wrong constant name headers -# wrong constant name http_version -# wrong constant name http_versions -# wrong constant name idle_timeout -# wrong constant name idle_timeout= -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize3 -# wrong constant name initialize -# wrong constant name keep_alive -# wrong constant name keep_alive= -# wrong constant name key -# wrong constant name key= -# wrong constant name max_requests -# wrong constant name max_requests= -# 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 name -# wrong constant name no_proxy -# wrong constant name normalize_uri -# wrong constant name open_timeout -# wrong constant name open_timeout= -# wrong constant name override_headers -# wrong constant name pipeline -# wrong constant name pool -# wrong constant name private_key -# wrong constant name private_key= -# wrong constant name proxy= -# wrong constant name proxy_bypass? -# wrong constant name proxy_from_env -# wrong constant name proxy_uri -# wrong constant name read_timeout -# wrong constant name read_timeout= -# wrong constant name reconnect -# wrong constant name reconnect_ssl -# wrong constant name request1 -# wrong constant name request -# wrong constant name request_setup -# wrong constant name reset -# wrong constant name reuse_ssl_sessions -# wrong constant name reuse_ssl_sessions= -# wrong constant name shutdown -# wrong constant name socket_options -# wrong constant name ssl -# wrong constant name ssl_generation -# wrong constant name ssl_timeout -# wrong constant name ssl_timeout= -# wrong constant name ssl_version -# wrong constant name ssl_version= -# wrong constant name start -# wrong constant name timeout_key -# wrong constant name unescape -# wrong constant name verify_callback -# wrong constant name verify_callback= -# wrong constant name verify_depth -# wrong constant name verify_depth= -# wrong constant name verify_mode -# wrong constant name verify_mode= -# wrong constant name write_timeout -# wrong constant name write_timeout= -# wrong constant name finish -# wrong constant name http -# wrong constant name http= -# wrong constant name initialize -# wrong constant name last_use -# wrong constant name last_use= -# wrong constant name requests -# wrong constant name requests= -# wrong constant name reset -# wrong constant name ressl -# wrong constant name ssl_generation -# wrong constant name ssl_generation= -# wrong constant name -# wrong constant name -# uninitialized constant Net::HTTP::Persistent::Pool::DEFAULTS -# uninitialized constant Net::HTTP::Persistent::Pool::VERSION -# wrong constant name checkin -# wrong constant name checkout -# wrong constant name key -# wrong constant name shutdown -# wrong constant name -# wrong constant name -# wrong constant name hash_of_arrays -# undefined singleton method `detect_idle_timeout1' for `Net::HTTP::Persistent' -# wrong constant name -# wrong constant name detect_idle_timeout1 -# wrong constant name detect_idle_timeout -# 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::CODE_CLASS_TO_OBJ -# uninitialized constant Net::HTTPGatewayTimeout::CODE_TO_OBJ -# wrong constant name -# uninitialized constant Net::HTTPLoopDetected::CODE_CLASS_TO_OBJ -# uninitialized constant Net::HTTPLoopDetected::CODE_TO_OBJ -# wrong constant name -# uninitialized constant Net::HTTPMisdirectedRequest::CODE_CLASS_TO_OBJ -# uninitialized constant Net::HTTPMisdirectedRequest::CODE_TO_OBJ -# wrong constant name -# 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::HTTPRequestTimeout::CODE_CLASS_TO_OBJ -# uninitialized constant Net::HTTPRequestTimeout::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::HTTPVariantAlsoNegotiates::CODE_CLASS_TO_OBJ -# uninitialized constant Net::HTTPVariantAlsoNegotiates::CODE_TO_OBJ -# wrong constant name -# uninitialized constant Net::IMAP -# uninitialized constant Net::IMAP -# uninitialized constant Net::NTLM::ChannelBinding -# uninitialized constant Net::NTLM::ChannelBinding -# uninitialized constant Net::NTLM::Client -# uninitialized constant Net::NTLM::Client -# uninitialized constant Net::NTLM::EncodeUtil -# uninitialized constant Net::NTLM::EncodeUtil -# uninitialized constant Net::NTLM::InvalidTargetDataError -# uninitialized constant Net::NTLM::InvalidTargetDataError -# uninitialized constant Net::NTLM::NtlmError -# uninitialized constant Net::NTLM::NtlmError -# uninitialized constant Net::NTLM::TargetInfo -# uninitialized constant Net::NTLM::TargetInfo -# undefined method `initialize1' for class `Net::ReadTimeout' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name io -# uninitialized constant Net::SFTP -# uninitialized constant Net::SFTP -# uninitialized constant Net::SMTP -# uninitialized constant Net::SMTP -# uninitialized constant Net::SMTPAuthenticationError -# uninitialized constant Net::SMTPAuthenticationError -# uninitialized constant Net::SMTPError -# uninitialized constant Net::SMTPError -# uninitialized constant Net::SMTPFatalError -# uninitialized constant Net::SMTPFatalError -# uninitialized constant Net::SMTPServerBusy -# uninitialized constant Net::SMTPServerBusy -# uninitialized constant Net::SMTPSyntaxError -# uninitialized constant Net::SMTPSyntaxError -# uninitialized constant Net::SMTPUnknownError -# uninitialized constant Net::SMTPUnknownError -# uninitialized constant Net::SMTPUnsupportedCommand -# uninitialized constant Net::SMTPUnsupportedCommand -# uninitialized constant Net::SSH -# uninitialized constant Net::SSH -# undefined method `initialize1' for class `Net::WriteTimeout' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name io -# uninitialized constant Newton -# uninitialized constant Newton -# undefined method `try1' for class `NilClass' -# undefined method `try!1' for class `NilClass' -# wrong constant name to_d -# wrong constant name try1 -# wrong constant name try -# wrong constant name try!1 -# wrong constant name try! -# uninitialized constant Nokogiri::CSS::Parser::Racc_Main_Parsing_Routine -# uninitialized constant Nokogiri::CSS::Parser::Racc_Runtime_Core_Id_C -# uninitialized constant Nokogiri::CSS::Parser::Racc_Runtime_Core_Revision -# uninitialized constant Nokogiri::CSS::Parser::Racc_Runtime_Core_Revision_C -# uninitialized constant Nokogiri::CSS::Parser::Racc_Runtime_Core_Revision_R -# uninitialized constant Nokogiri::CSS::Parser::Racc_Runtime_Core_Version -# uninitialized constant Nokogiri::CSS::Parser::Racc_Runtime_Core_Version_C -# uninitialized constant Nokogiri::CSS::Parser::Racc_Runtime_Core_Version_R -# uninitialized constant Nokogiri::CSS::Parser::Racc_Runtime_Revision -# uninitialized constant Nokogiri::CSS::Parser::Racc_Runtime_Type -# uninitialized constant Nokogiri::CSS::Parser::Racc_Runtime_Version -# uninitialized constant Nokogiri::CSS::Parser::Racc_YY_Parse_Method -# wrong constant name byte -# wrong constant name bytes -# wrong constant name day -# wrong constant name days -# wrong constant name exabyte -# wrong constant name exabytes -# wrong constant name fortnight -# wrong constant name fortnights -# wrong constant name gigabyte -# wrong constant name gigabytes -# wrong constant name hour -# wrong constant name hours -# wrong constant name in_milliseconds -# wrong constant name kilobyte -# wrong constant name kilobytes -# wrong constant name megabyte -# wrong constant name megabytes -# wrong constant name minute -# wrong constant name minutes -# wrong constant name petabyte -# wrong constant name petabytes -# wrong constant name second -# wrong constant name seconds -# wrong constant name terabyte -# wrong constant name terabytes -# wrong constant name week -# wrong constant name weeks -# The source says OS::Mac::XQuartz is a STATIC_FIELD but reflection says it is a CLASS_OR_MODULE -# undefined method `as_json1' for class `Object' -# undefined method `pry1' for class `Object' -# undefined method `pry2' for class `Object' -# undefined method `to_yaml1' for class `Object' -# uninitialized constant RUBYGEMS_ACTIVATION_MONITOR -# wrong constant name acts_like? -# wrong constant name as_json1 -# wrong constant name as_json -# wrong constant name blank? -# wrong constant name duplicable? -# wrong constant name html_safe? -# wrong constant name instance_values -# wrong constant name instance_variable_names -# wrong constant name presence -# wrong constant name present? -# wrong constant name pry1 -# wrong constant name pry2 -# wrong constant name pry -# wrong constant name stub -# wrong constant name to_param -# wrong constant name to_query -# wrong constant name to_yaml1 -# wrong constant name to_yaml -# wrong constant name method_added -# wrong constant name yaml_tag -# wrong constant name -# uninitialized constant Observable -# uninitialized constant Observable -# wrong constant name indefinite_length -# wrong constant name indefinite_length= -# wrong constant name +@ -# wrong constant name -@ -# wrong constant name / -# wrong constant name negative? -# uninitialized constant OpenSSL::Digest::DSS -# uninitialized constant OpenSSL::Digest::DSS -# uninitialized constant OpenSSL::Digest::DSS1 -# uninitialized constant OpenSSL::Digest::DSS1 -# uninitialized constant OpenSSL::Digest::SHA -# uninitialized constant OpenSSL::Digest::SHA -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name hkdf -# wrong constant name pbkdf2_hmac -# wrong constant name scrypt -# wrong constant name signed? -# uninitialized constant OpenSSL::PKCS5::PKCS5Error -# uninitialized constant OpenSSL::PKCS5::PKCS5Error -# undefined method `to_bn1' for class `OpenSSL::PKey::EC::Point' -# wrong constant name to_bn1 -# wrong constant name to_octet_string -# wrong constant name add_certificate -# wrong constant name alpn_protocols -# wrong constant name alpn_protocols= -# wrong constant name alpn_select_cb -# wrong constant name alpn_select_cb= -# wrong constant name enable_fallback_scsv -# wrong constant name max_version= -# wrong constant name min_version= -# uninitialized constant OpenSSL::SSL::SSLSocket::BLOCK_SIZE -# wrong constant name alpn_protocol -# wrong constant name tmp_key -# wrong constant name == -# wrong constant name == -# wrong constant name == -# wrong constant name to_utf8 -# wrong constant name == -# wrong constant name == -# wrong constant name to_der -# wrong constant name fips_mode -# uninitialized constant OpenURI -# uninitialized constant OpenURI -# uninitialized constant Opus -# uninitialized constant Opus -# wrong constant name each -# uninitialized constant PStore -# uninitialized constant PStore -# uninitialized constant PTY -# uninitialized constant PTY -# uninitialized constant Parser::Ruby24::Racc_Main_Parsing_Routine -# uninitialized constant Parser::Ruby24::Racc_Runtime_Core_Id_C -# uninitialized constant Parser::Ruby24::Racc_Runtime_Core_Revision -# uninitialized constant Parser::Ruby24::Racc_Runtime_Core_Revision_C -# uninitialized constant Parser::Ruby24::Racc_Runtime_Core_Revision_R -# uninitialized constant Parser::Ruby24::Racc_Runtime_Core_Version -# uninitialized constant Parser::Ruby24::Racc_Runtime_Core_Version_C -# uninitialized constant Parser::Ruby24::Racc_Runtime_Core_Version_R -# uninitialized constant Parser::Ruby24::Racc_Runtime_Revision -# uninitialized constant Parser::Ruby24::Racc_Runtime_Type -# uninitialized constant Parser::Ruby24::Racc_Runtime_Version -# uninitialized constant Parser::Ruby24::Racc_YY_Parse_Method -# wrong constant name _reduce_10 -# wrong constant name _reduce_100 -# wrong constant name _reduce_101 -# wrong constant name _reduce_102 -# wrong constant name _reduce_103 -# wrong constant name _reduce_104 -# wrong constant name _reduce_105 -# wrong constant name _reduce_106 -# wrong constant name _reduce_107 -# wrong constant name _reduce_108 -# wrong constant name _reduce_11 -# wrong constant name _reduce_110 -# wrong constant name _reduce_111 -# wrong constant name _reduce_112 -# wrong constant name _reduce_118 -# wrong constant name _reduce_12 -# wrong constant name _reduce_122 -# wrong constant name _reduce_123 -# wrong constant name _reduce_124 -# wrong constant name _reduce_13 -# wrong constant name _reduce_14 -# wrong constant name _reduce_16 -# wrong constant name _reduce_17 -# wrong constant name _reduce_18 -# wrong constant name _reduce_19 -# wrong constant name _reduce_196 -# wrong constant name _reduce_197 -# wrong constant name _reduce_198 -# wrong constant name _reduce_199 -# wrong constant name _reduce_2 -# wrong constant name _reduce_20 -# wrong constant name _reduce_200 -# wrong constant name _reduce_201 -# wrong constant name _reduce_202 -# wrong constant name _reduce_203 -# wrong constant name _reduce_204 -# wrong constant name _reduce_205 -# wrong constant name _reduce_206 -# wrong constant name _reduce_207 -# wrong constant name _reduce_208 -# wrong constant name _reduce_209 -# wrong constant name _reduce_21 -# wrong constant name _reduce_210 -# wrong constant name _reduce_211 -# wrong constant name _reduce_212 -# wrong constant name _reduce_213 -# wrong constant name _reduce_214 -# wrong constant name _reduce_215 -# wrong constant name _reduce_216 -# wrong constant name _reduce_217 -# wrong constant name _reduce_218 -# wrong constant name _reduce_219 -# wrong constant name _reduce_22 -# wrong constant name _reduce_220 -# wrong constant name _reduce_221 -# wrong constant name _reduce_222 -# wrong constant name _reduce_223 -# wrong constant name _reduce_224 -# wrong constant name _reduce_225 -# wrong constant name _reduce_226 -# wrong constant name _reduce_227 -# wrong constant name _reduce_228 -# wrong constant name _reduce_229 -# wrong constant name _reduce_23 -# wrong constant name _reduce_230 -# wrong constant name _reduce_231 -# wrong constant name _reduce_232 -# wrong constant name _reduce_233 -# wrong constant name _reduce_234 -# wrong constant name _reduce_235 -# wrong constant name _reduce_236 -# wrong constant name _reduce_24 -# wrong constant name _reduce_241 -# wrong constant name _reduce_242 -# wrong constant name _reduce_244 -# wrong constant name _reduce_245 -# wrong constant name _reduce_246 -# wrong constant name _reduce_248 -# wrong constant name _reduce_25 -# wrong constant name _reduce_251 -# wrong constant name _reduce_252 -# wrong constant name _reduce_253 -# wrong constant name _reduce_254 -# wrong constant name _reduce_255 -# wrong constant name _reduce_256 -# wrong constant name _reduce_257 -# wrong constant name _reduce_258 -# wrong constant name _reduce_259 -# wrong constant name _reduce_26 -# wrong constant name _reduce_260 -# wrong constant name _reduce_261 -# wrong constant name _reduce_262 -# wrong constant name _reduce_263 -# wrong constant name _reduce_264 -# wrong constant name _reduce_265 -# wrong constant name _reduce_266 -# wrong constant name _reduce_267 -# wrong constant name _reduce_269 -# wrong constant name _reduce_27 -# wrong constant name _reduce_270 -# wrong constant name _reduce_271 -# wrong constant name _reduce_28 -# wrong constant name _reduce_282 -# wrong constant name _reduce_283 -# wrong constant name _reduce_284 -# wrong constant name _reduce_285 -# wrong constant name _reduce_286 -# wrong constant name _reduce_287 -# wrong constant name _reduce_288 -# wrong constant name _reduce_289 -# wrong constant name _reduce_290 -# wrong constant name _reduce_291 -# wrong constant name _reduce_292 -# wrong constant name _reduce_293 -# wrong constant name _reduce_294 -# wrong constant name _reduce_295 -# wrong constant name _reduce_296 -# wrong constant name _reduce_297 -# wrong constant name _reduce_298 -# wrong constant name _reduce_299 -# wrong constant name _reduce_3 -# wrong constant name _reduce_30 -# wrong constant name _reduce_300 -# wrong constant name _reduce_301 -# wrong constant name _reduce_303 -# wrong constant name _reduce_304 -# wrong constant name _reduce_305 -# wrong constant name _reduce_306 -# wrong constant name _reduce_307 -# wrong constant name _reduce_308 -# wrong constant name _reduce_309 -# wrong constant name _reduce_31 -# wrong constant name _reduce_310 -# wrong constant name _reduce_311 -# wrong constant name _reduce_312 -# wrong constant name _reduce_313 -# wrong constant name _reduce_314 -# wrong constant name _reduce_315 -# wrong constant name _reduce_316 -# wrong constant name _reduce_317 -# wrong constant name _reduce_318 -# wrong constant name _reduce_319 -# wrong constant name _reduce_32 -# wrong constant name _reduce_320 -# wrong constant name _reduce_321 -# wrong constant name _reduce_322 -# wrong constant name _reduce_323 -# wrong constant name _reduce_324 -# wrong constant name _reduce_325 -# wrong constant name _reduce_326 -# wrong constant name _reduce_327 -# wrong constant name _reduce_328 -# wrong constant name _reduce_329 -# wrong constant name _reduce_330 -# wrong constant name _reduce_331 -# wrong constant name _reduce_332 -# wrong constant name _reduce_336 -# wrong constant name _reduce_34 -# wrong constant name _reduce_340 -# wrong constant name _reduce_342 -# wrong constant name _reduce_345 -# wrong constant name _reduce_346 -# wrong constant name _reduce_347 -# wrong constant name _reduce_348 -# wrong constant name _reduce_35 -# wrong constant name _reduce_350 -# wrong constant name _reduce_351 -# wrong constant name _reduce_352 -# wrong constant name _reduce_353 -# wrong constant name _reduce_354 -# wrong constant name _reduce_355 -# wrong constant name _reduce_356 -# wrong constant name _reduce_357 -# wrong constant name _reduce_358 -# wrong constant name _reduce_359 -# wrong constant name _reduce_36 -# wrong constant name _reduce_360 -# wrong constant name _reduce_361 -# wrong constant name _reduce_362 -# wrong constant name _reduce_363 -# wrong constant name _reduce_364 -# wrong constant name _reduce_365 -# wrong constant name _reduce_366 -# wrong constant name _reduce_367 -# wrong constant name _reduce_368 -# wrong constant name _reduce_37 -# wrong constant name _reduce_370 -# wrong constant name _reduce_371 -# wrong constant name _reduce_372 -# wrong constant name _reduce_373 -# wrong constant name _reduce_374 -# wrong constant name _reduce_375 -# wrong constant name _reduce_376 -# wrong constant name _reduce_377 -# wrong constant name _reduce_379 -# wrong constant name _reduce_38 -# wrong constant name _reduce_380 -# wrong constant name _reduce_381 -# wrong constant name _reduce_382 -# wrong constant name _reduce_383 -# wrong constant name _reduce_384 -# wrong constant name _reduce_385 -# wrong constant name _reduce_386 -# wrong constant name _reduce_387 -# wrong constant name _reduce_388 -# wrong constant name _reduce_39 -# wrong constant name _reduce_390 -# wrong constant name _reduce_391 -# wrong constant name _reduce_392 -# wrong constant name _reduce_393 -# wrong constant name _reduce_394 -# wrong constant name _reduce_395 -# wrong constant name _reduce_396 -# wrong constant name _reduce_397 -# wrong constant name _reduce_398 -# wrong constant name _reduce_399 -# wrong constant name _reduce_4 -# wrong constant name _reduce_40 -# wrong constant name _reduce_400 -# wrong constant name _reduce_401 -# wrong constant name _reduce_402 -# wrong constant name _reduce_403 -# wrong constant name _reduce_404 -# wrong constant name _reduce_405 -# wrong constant name _reduce_406 -# wrong constant name _reduce_407 -# wrong constant name _reduce_408 -# wrong constant name _reduce_409 -# wrong constant name _reduce_41 -# wrong constant name _reduce_410 -# wrong constant name _reduce_411 -# wrong constant name _reduce_412 -# wrong constant name _reduce_413 -# wrong constant name _reduce_414 -# wrong constant name _reduce_415 -# wrong constant name _reduce_416 -# wrong constant name _reduce_417 -# wrong constant name _reduce_418 -# wrong constant name _reduce_419 -# wrong constant name _reduce_420 -# wrong constant name _reduce_421 -# wrong constant name _reduce_422 -# wrong constant name _reduce_423 -# wrong constant name _reduce_424 -# wrong constant name _reduce_426 -# wrong constant name _reduce_427 -# wrong constant name _reduce_428 -# wrong constant name _reduce_43 -# wrong constant name _reduce_431 -# wrong constant name _reduce_433 -# wrong constant name _reduce_438 -# wrong constant name _reduce_439 -# wrong constant name _reduce_440 -# wrong constant name _reduce_441 -# wrong constant name _reduce_442 -# wrong constant name _reduce_443 -# wrong constant name _reduce_444 -# wrong constant name _reduce_445 -# wrong constant name _reduce_446 -# wrong constant name _reduce_447 -# wrong constant name _reduce_448 -# wrong constant name _reduce_449 -# wrong constant name _reduce_450 -# wrong constant name _reduce_451 -# wrong constant name _reduce_452 -# wrong constant name _reduce_453 -# wrong constant name _reduce_454 -# wrong constant name _reduce_455 -# wrong constant name _reduce_456 -# wrong constant name _reduce_457 -# wrong constant name _reduce_458 -# wrong constant name _reduce_459 -# wrong constant name _reduce_46 -# wrong constant name _reduce_460 -# wrong constant name _reduce_461 -# wrong constant name _reduce_462 -# wrong constant name _reduce_463 -# wrong constant name _reduce_464 -# wrong constant name _reduce_465 -# wrong constant name _reduce_466 -# wrong constant name _reduce_467 -# wrong constant name _reduce_468 -# wrong constant name _reduce_469 -# wrong constant name _reduce_47 -# wrong constant name _reduce_470 -# wrong constant name _reduce_471 -# wrong constant name _reduce_472 -# wrong constant name _reduce_474 -# wrong constant name _reduce_475 -# wrong constant name _reduce_476 -# wrong constant name _reduce_477 -# wrong constant name _reduce_478 -# wrong constant name _reduce_479 -# wrong constant name _reduce_48 -# wrong constant name _reduce_480 -# wrong constant name _reduce_481 -# wrong constant name _reduce_482 -# wrong constant name _reduce_483 -# wrong constant name _reduce_484 -# wrong constant name _reduce_485 -# wrong constant name _reduce_486 -# wrong constant name _reduce_487 -# wrong constant name _reduce_488 -# wrong constant name _reduce_489 -# wrong constant name _reduce_49 -# wrong constant name _reduce_490 -# wrong constant name _reduce_491 -# wrong constant name _reduce_492 -# wrong constant name _reduce_493 -# wrong constant name _reduce_494 -# wrong constant name _reduce_495 -# wrong constant name _reduce_496 -# wrong constant name _reduce_497 -# wrong constant name _reduce_498 -# wrong constant name _reduce_499 -# wrong constant name _reduce_5 -# wrong constant name _reduce_500 -# wrong constant name _reduce_501 -# wrong constant name _reduce_502 -# wrong constant name _reduce_503 -# wrong constant name _reduce_504 -# wrong constant name _reduce_505 -# wrong constant name _reduce_506 -# wrong constant name _reduce_507 -# wrong constant name _reduce_508 -# wrong constant name _reduce_509 -# wrong constant name _reduce_510 -# wrong constant name _reduce_511 -# wrong constant name _reduce_512 -# wrong constant name _reduce_513 -# wrong constant name _reduce_514 -# wrong constant name _reduce_515 -# wrong constant name _reduce_516 -# wrong constant name _reduce_517 -# wrong constant name _reduce_518 -# wrong constant name _reduce_519 -# wrong constant name _reduce_520 -# wrong constant name _reduce_521 -# wrong constant name _reduce_522 -# wrong constant name _reduce_523 -# wrong constant name _reduce_524 -# wrong constant name _reduce_525 -# wrong constant name _reduce_526 -# wrong constant name _reduce_527 -# wrong constant name _reduce_528 -# wrong constant name _reduce_529 -# wrong constant name _reduce_530 -# wrong constant name _reduce_532 -# wrong constant name _reduce_533 -# wrong constant name _reduce_534 -# wrong constant name _reduce_535 -# wrong constant name _reduce_536 -# wrong constant name _reduce_537 -# wrong constant name _reduce_538 -# wrong constant name _reduce_539 -# wrong constant name _reduce_540 -# wrong constant name _reduce_541 -# wrong constant name _reduce_542 -# wrong constant name _reduce_543 -# wrong constant name _reduce_544 -# wrong constant name _reduce_545 -# wrong constant name _reduce_546 -# wrong constant name _reduce_549 -# wrong constant name _reduce_55 -# wrong constant name _reduce_550 -# wrong constant name _reduce_551 -# wrong constant name _reduce_552 -# wrong constant name _reduce_553 -# wrong constant name _reduce_554 -# wrong constant name _reduce_555 -# wrong constant name _reduce_556 -# wrong constant name _reduce_559 -# wrong constant name _reduce_56 -# wrong constant name _reduce_560 -# wrong constant name _reduce_563 -# wrong constant name _reduce_564 -# wrong constant name _reduce_565 -# wrong constant name _reduce_567 -# wrong constant name _reduce_568 -# wrong constant name _reduce_57 -# wrong constant name _reduce_570 -# wrong constant name _reduce_571 -# wrong constant name _reduce_572 -# wrong constant name _reduce_573 -# wrong constant name _reduce_574 -# wrong constant name _reduce_575 -# wrong constant name _reduce_588 -# wrong constant name _reduce_589 -# wrong constant name _reduce_59 -# wrong constant name _reduce_594 -# wrong constant name _reduce_595 -# wrong constant name _reduce_599 -# wrong constant name _reduce_6 -# wrong constant name _reduce_60 -# wrong constant name _reduce_603 -# wrong constant name _reduce_61 -# wrong constant name _reduce_62 -# wrong constant name _reduce_63 -# wrong constant name _reduce_64 -# wrong constant name _reduce_65 -# wrong constant name _reduce_66 -# wrong constant name _reduce_67 -# wrong constant name _reduce_68 -# wrong constant name _reduce_69 -# wrong constant name _reduce_70 -# wrong constant name _reduce_71 -# wrong constant name _reduce_72 -# wrong constant name _reduce_73 -# wrong constant name _reduce_75 -# wrong constant name _reduce_76 -# wrong constant name _reduce_77 -# wrong constant name _reduce_78 -# wrong constant name _reduce_79 -# wrong constant name _reduce_8 -# wrong constant name _reduce_80 -# wrong constant name _reduce_81 -# wrong constant name _reduce_82 -# wrong constant name _reduce_83 -# wrong constant name _reduce_85 -# wrong constant name _reduce_86 -# wrong constant name _reduce_87 -# wrong constant name _reduce_88 -# wrong constant name _reduce_89 -# wrong constant name _reduce_9 -# wrong constant name _reduce_90 -# wrong constant name _reduce_91 -# wrong constant name _reduce_92 -# wrong constant name _reduce_93 -# wrong constant name _reduce_94 -# wrong constant name _reduce_95 -# wrong constant name _reduce_96 -# wrong constant name _reduce_97 -# wrong constant name _reduce_98 -# wrong constant name _reduce_99 -# wrong constant name _reduce_none -# wrong constant name default_encoding -# wrong constant name version -# wrong constant name -# uninitialized constant Parser::Ruby26::Racc_Main_Parsing_Routine -# uninitialized constant Parser::Ruby26::Racc_Runtime_Core_Id_C -# uninitialized constant Parser::Ruby26::Racc_Runtime_Core_Revision -# uninitialized constant Parser::Ruby26::Racc_Runtime_Core_Revision_C -# uninitialized constant Parser::Ruby26::Racc_Runtime_Core_Revision_R -# uninitialized constant Parser::Ruby26::Racc_Runtime_Core_Version -# uninitialized constant Parser::Ruby26::Racc_Runtime_Core_Version_C -# uninitialized constant Parser::Ruby26::Racc_Runtime_Core_Version_R -# uninitialized constant Parser::Ruby26::Racc_Runtime_Revision -# uninitialized constant Parser::Ruby26::Racc_Runtime_Type -# uninitialized constant Parser::Ruby26::Racc_Runtime_Version -# uninitialized constant Parser::Ruby26::Racc_YY_Parse_Method -# wrong constant name _reduce_10 -# wrong constant name _reduce_100 -# wrong constant name _reduce_101 -# wrong constant name _reduce_102 -# wrong constant name _reduce_103 -# wrong constant name _reduce_104 -# wrong constant name _reduce_105 -# wrong constant name _reduce_106 -# wrong constant name _reduce_107 -# wrong constant name _reduce_108 -# wrong constant name _reduce_109 -# wrong constant name _reduce_11 -# wrong constant name _reduce_110 -# wrong constant name _reduce_111 -# wrong constant name _reduce_113 -# wrong constant name _reduce_114 -# wrong constant name _reduce_115 -# wrong constant name _reduce_12 -# wrong constant name _reduce_121 -# wrong constant name _reduce_125 -# wrong constant name _reduce_126 -# wrong constant name _reduce_127 -# wrong constant name _reduce_13 -# wrong constant name _reduce_14 -# wrong constant name _reduce_15 -# wrong constant name _reduce_17 -# wrong constant name _reduce_18 -# wrong constant name _reduce_19 -# wrong constant name _reduce_199 -# wrong constant name _reduce_2 -# wrong constant name _reduce_20 -# wrong constant name _reduce_200 -# wrong constant name _reduce_201 -# wrong constant name _reduce_202 -# wrong constant name _reduce_203 -# wrong constant name _reduce_204 -# wrong constant name _reduce_205 -# wrong constant name _reduce_206 -# wrong constant name _reduce_207 -# wrong constant name _reduce_208 -# wrong constant name _reduce_209 -# wrong constant name _reduce_21 -# wrong constant name _reduce_210 -# wrong constant name _reduce_211 -# wrong constant name _reduce_212 -# wrong constant name _reduce_213 -# wrong constant name _reduce_214 -# wrong constant name _reduce_215 -# wrong constant name _reduce_216 -# wrong constant name _reduce_217 -# wrong constant name _reduce_218 -# wrong constant name _reduce_219 -# wrong constant name _reduce_22 -# wrong constant name _reduce_220 -# wrong constant name _reduce_221 -# wrong constant name _reduce_222 -# wrong constant name _reduce_223 -# wrong constant name _reduce_224 -# wrong constant name _reduce_226 -# wrong constant name _reduce_227 -# wrong constant name _reduce_228 -# wrong constant name _reduce_229 -# wrong constant name _reduce_23 -# wrong constant name _reduce_230 -# wrong constant name _reduce_231 -# wrong constant name _reduce_232 -# wrong constant name _reduce_233 -# wrong constant name _reduce_234 -# wrong constant name _reduce_235 -# wrong constant name _reduce_236 -# wrong constant name _reduce_237 -# wrong constant name _reduce_238 -# wrong constant name _reduce_24 -# wrong constant name _reduce_244 -# wrong constant name _reduce_245 -# wrong constant name _reduce_249 -# wrong constant name _reduce_25 -# wrong constant name _reduce_250 -# wrong constant name _reduce_252 -# wrong constant name _reduce_253 -# wrong constant name _reduce_254 -# wrong constant name _reduce_256 -# wrong constant name _reduce_259 -# wrong constant name _reduce_26 -# wrong constant name _reduce_260 -# wrong constant name _reduce_261 -# wrong constant name _reduce_262 -# wrong constant name _reduce_263 -# wrong constant name _reduce_264 -# wrong constant name _reduce_265 -# wrong constant name _reduce_266 -# wrong constant name _reduce_267 -# wrong constant name _reduce_268 -# wrong constant name _reduce_269 -# wrong constant name _reduce_27 -# wrong constant name _reduce_270 -# wrong constant name _reduce_271 -# wrong constant name _reduce_272 -# wrong constant name _reduce_273 -# wrong constant name _reduce_274 -# wrong constant name _reduce_275 -# wrong constant name _reduce_277 -# wrong constant name _reduce_278 -# wrong constant name _reduce_279 -# wrong constant name _reduce_28 -# wrong constant name _reduce_29 -# wrong constant name _reduce_290 -# wrong constant name _reduce_291 -# wrong constant name _reduce_292 -# wrong constant name _reduce_293 -# wrong constant name _reduce_294 -# wrong constant name _reduce_295 -# wrong constant name _reduce_296 -# wrong constant name _reduce_297 -# wrong constant name _reduce_298 -# wrong constant name _reduce_299 -# wrong constant name _reduce_3 -# wrong constant name _reduce_300 -# wrong constant name _reduce_301 -# wrong constant name _reduce_302 -# wrong constant name _reduce_303 -# wrong constant name _reduce_304 -# wrong constant name _reduce_305 -# wrong constant name _reduce_306 -# wrong constant name _reduce_307 -# wrong constant name _reduce_308 -# wrong constant name _reduce_309 -# wrong constant name _reduce_31 -# wrong constant name _reduce_311 -# wrong constant name _reduce_312 -# wrong constant name _reduce_313 -# wrong constant name _reduce_314 -# wrong constant name _reduce_315 -# wrong constant name _reduce_316 -# wrong constant name _reduce_317 -# wrong constant name _reduce_318 -# wrong constant name _reduce_319 -# wrong constant name _reduce_32 -# wrong constant name _reduce_320 -# wrong constant name _reduce_321 -# wrong constant name _reduce_322 -# wrong constant name _reduce_323 -# wrong constant name _reduce_324 -# wrong constant name _reduce_325 -# wrong constant name _reduce_326 -# wrong constant name _reduce_327 -# wrong constant name _reduce_328 -# wrong constant name _reduce_329 -# wrong constant name _reduce_33 -# wrong constant name _reduce_330 -# wrong constant name _reduce_331 -# wrong constant name _reduce_332 -# wrong constant name _reduce_333 -# wrong constant name _reduce_334 -# wrong constant name _reduce_336 -# wrong constant name _reduce_339 -# wrong constant name _reduce_343 -# wrong constant name _reduce_345 -# wrong constant name _reduce_348 -# wrong constant name _reduce_349 -# wrong constant name _reduce_35 -# wrong constant name _reduce_350 -# wrong constant name _reduce_351 -# wrong constant name _reduce_353 -# wrong constant name _reduce_354 -# wrong constant name _reduce_355 -# wrong constant name _reduce_356 -# wrong constant name _reduce_357 -# wrong constant name _reduce_358 -# wrong constant name _reduce_359 -# wrong constant name _reduce_36 -# wrong constant name _reduce_360 -# wrong constant name _reduce_361 -# wrong constant name _reduce_362 -# wrong constant name _reduce_363 -# wrong constant name _reduce_364 -# wrong constant name _reduce_365 -# wrong constant name _reduce_366 -# wrong constant name _reduce_367 -# wrong constant name _reduce_368 -# wrong constant name _reduce_369 -# wrong constant name _reduce_37 -# wrong constant name _reduce_370 -# wrong constant name _reduce_371 -# wrong constant name _reduce_373 -# wrong constant name _reduce_374 -# wrong constant name _reduce_375 -# wrong constant name _reduce_376 -# wrong constant name _reduce_377 -# wrong constant name _reduce_378 -# wrong constant name _reduce_379 -# wrong constant name _reduce_38 -# wrong constant name _reduce_380 -# wrong constant name _reduce_382 -# wrong constant name _reduce_383 -# wrong constant name _reduce_384 -# wrong constant name _reduce_385 -# wrong constant name _reduce_386 -# wrong constant name _reduce_387 -# wrong constant name _reduce_388 -# wrong constant name _reduce_389 -# wrong constant name _reduce_39 -# wrong constant name _reduce_390 -# wrong constant name _reduce_391 -# wrong constant name _reduce_393 -# wrong constant name _reduce_394 -# wrong constant name _reduce_395 -# wrong constant name _reduce_396 -# wrong constant name _reduce_397 -# wrong constant name _reduce_398 -# wrong constant name _reduce_399 -# wrong constant name _reduce_4 -# wrong constant name _reduce_40 -# wrong constant name _reduce_400 -# wrong constant name _reduce_401 -# wrong constant name _reduce_402 -# wrong constant name _reduce_403 -# wrong constant name _reduce_404 -# wrong constant name _reduce_405 -# wrong constant name _reduce_406 -# wrong constant name _reduce_407 -# wrong constant name _reduce_408 -# wrong constant name _reduce_409 -# wrong constant name _reduce_41 -# wrong constant name _reduce_410 -# wrong constant name _reduce_411 -# wrong constant name _reduce_412 -# wrong constant name _reduce_413 -# wrong constant name _reduce_414 -# wrong constant name _reduce_415 -# wrong constant name _reduce_416 -# wrong constant name _reduce_417 -# wrong constant name _reduce_418 -# wrong constant name _reduce_419 -# wrong constant name _reduce_42 -# wrong constant name _reduce_420 -# wrong constant name _reduce_421 -# wrong constant name _reduce_422 -# wrong constant name _reduce_423 -# wrong constant name _reduce_424 -# wrong constant name _reduce_425 -# wrong constant name _reduce_426 -# wrong constant name _reduce_427 -# wrong constant name _reduce_429 -# wrong constant name _reduce_430 -# wrong constant name _reduce_431 -# wrong constant name _reduce_434 -# wrong constant name _reduce_436 -# wrong constant name _reduce_44 -# wrong constant name _reduce_441 -# wrong constant name _reduce_442 -# wrong constant name _reduce_443 -# wrong constant name _reduce_444 -# wrong constant name _reduce_445 -# wrong constant name _reduce_446 -# wrong constant name _reduce_447 -# wrong constant name _reduce_448 -# wrong constant name _reduce_449 -# wrong constant name _reduce_450 -# wrong constant name _reduce_451 -# wrong constant name _reduce_452 -# wrong constant name _reduce_453 -# wrong constant name _reduce_454 -# wrong constant name _reduce_455 -# wrong constant name _reduce_456 -# wrong constant name _reduce_457 -# wrong constant name _reduce_458 -# wrong constant name _reduce_459 -# wrong constant name _reduce_460 -# wrong constant name _reduce_461 -# wrong constant name _reduce_462 -# wrong constant name _reduce_463 -# wrong constant name _reduce_464 -# wrong constant name _reduce_465 -# wrong constant name _reduce_466 -# wrong constant name _reduce_467 -# wrong constant name _reduce_468 -# wrong constant name _reduce_469 -# wrong constant name _reduce_47 -# wrong constant name _reduce_470 -# wrong constant name _reduce_471 -# wrong constant name _reduce_472 -# wrong constant name _reduce_473 -# wrong constant name _reduce_474 -# wrong constant name _reduce_475 -# wrong constant name _reduce_477 -# wrong constant name _reduce_478 -# wrong constant name _reduce_479 -# wrong constant name _reduce_48 -# wrong constant name _reduce_480 -# wrong constant name _reduce_481 -# wrong constant name _reduce_482 -# wrong constant name _reduce_483 -# wrong constant name _reduce_484 -# wrong constant name _reduce_485 -# wrong constant name _reduce_486 -# wrong constant name _reduce_487 -# wrong constant name _reduce_488 -# wrong constant name _reduce_489 -# wrong constant name _reduce_49 -# wrong constant name _reduce_490 -# wrong constant name _reduce_491 -# wrong constant name _reduce_492 -# wrong constant name _reduce_493 -# wrong constant name _reduce_494 -# wrong constant name _reduce_495 -# wrong constant name _reduce_496 -# wrong constant name _reduce_497 -# wrong constant name _reduce_498 -# wrong constant name _reduce_499 -# wrong constant name _reduce_5 -# wrong constant name _reduce_50 -# wrong constant name _reduce_500 -# wrong constant name _reduce_501 -# wrong constant name _reduce_502 -# wrong constant name _reduce_503 -# wrong constant name _reduce_504 -# wrong constant name _reduce_505 -# wrong constant name _reduce_506 -# wrong constant name _reduce_507 -# wrong constant name _reduce_508 -# wrong constant name _reduce_509 -# wrong constant name _reduce_510 -# wrong constant name _reduce_511 -# wrong constant name _reduce_512 -# wrong constant name _reduce_513 -# wrong constant name _reduce_514 -# wrong constant name _reduce_515 -# wrong constant name _reduce_516 -# wrong constant name _reduce_517 -# wrong constant name _reduce_518 -# wrong constant name _reduce_519 -# wrong constant name _reduce_520 -# wrong constant name _reduce_521 -# wrong constant name _reduce_522 -# wrong constant name _reduce_523 -# wrong constant name _reduce_524 -# wrong constant name _reduce_525 -# wrong constant name _reduce_526 -# wrong constant name _reduce_527 -# wrong constant name _reduce_528 -# wrong constant name _reduce_529 -# wrong constant name _reduce_53 -# wrong constant name _reduce_530 -# wrong constant name _reduce_531 -# wrong constant name _reduce_532 -# wrong constant name _reduce_533 -# wrong constant name _reduce_535 -# wrong constant name _reduce_536 -# wrong constant name _reduce_537 -# wrong constant name _reduce_538 -# wrong constant name _reduce_539 -# wrong constant name _reduce_54 -# wrong constant name _reduce_540 -# wrong constant name _reduce_541 -# wrong constant name _reduce_542 -# wrong constant name _reduce_543 -# wrong constant name _reduce_544 -# wrong constant name _reduce_545 -# wrong constant name _reduce_546 -# wrong constant name _reduce_547 -# wrong constant name _reduce_548 -# wrong constant name _reduce_549 -# wrong constant name _reduce_552 -# wrong constant name _reduce_553 -# wrong constant name _reduce_554 -# wrong constant name _reduce_555 -# wrong constant name _reduce_556 -# wrong constant name _reduce_557 -# wrong constant name _reduce_558 -# wrong constant name _reduce_559 -# wrong constant name _reduce_562 -# wrong constant name _reduce_563 -# wrong constant name _reduce_566 -# wrong constant name _reduce_567 -# wrong constant name _reduce_568 -# wrong constant name _reduce_570 -# wrong constant name _reduce_571 -# wrong constant name _reduce_573 -# wrong constant name _reduce_574 -# wrong constant name _reduce_575 -# wrong constant name _reduce_576 -# wrong constant name _reduce_577 -# wrong constant name _reduce_578 -# wrong constant name _reduce_58 -# wrong constant name _reduce_59 -# wrong constant name _reduce_591 -# wrong constant name _reduce_592 -# wrong constant name _reduce_597 -# wrong constant name _reduce_598 -# wrong constant name _reduce_6 -# wrong constant name _reduce_60 -# wrong constant name _reduce_602 -# wrong constant name _reduce_606 -# wrong constant name _reduce_62 -# wrong constant name _reduce_63 -# wrong constant name _reduce_64 -# wrong constant name _reduce_65 -# wrong constant name _reduce_66 -# wrong constant name _reduce_67 -# wrong constant name _reduce_68 -# wrong constant name _reduce_69 -# wrong constant name _reduce_70 -# wrong constant name _reduce_71 -# wrong constant name _reduce_72 -# wrong constant name _reduce_73 -# wrong constant name _reduce_74 -# wrong constant name _reduce_75 -# wrong constant name _reduce_76 -# wrong constant name _reduce_78 -# wrong constant name _reduce_79 -# wrong constant name _reduce_8 -# wrong constant name _reduce_80 -# wrong constant name _reduce_81 -# wrong constant name _reduce_82 -# wrong constant name _reduce_83 -# wrong constant name _reduce_84 -# wrong constant name _reduce_85 -# wrong constant name _reduce_86 -# wrong constant name _reduce_88 -# wrong constant name _reduce_89 -# wrong constant name _reduce_9 -# wrong constant name _reduce_90 -# wrong constant name _reduce_91 -# wrong constant name _reduce_92 -# wrong constant name _reduce_93 -# wrong constant name _reduce_94 -# wrong constant name _reduce_95 -# wrong constant name _reduce_96 -# wrong constant name _reduce_97 -# wrong constant name _reduce_98 -# wrong constant name _reduce_99 -# wrong constant name _reduce_none -# wrong constant name default_encoding -# wrong constant name version -# wrong constant name -# undefined method `children1' for class `Pathname' -# undefined method `find1' for class `Pathname' -# wrong constant name children1 -# wrong constant name find1 -# wrong constant name fnmatch? -# wrong constant name glob -# wrong constant name make_symlink -# uninitialized constant Prime -# uninitialized constant Prime -# wrong constant name << -# wrong constant name >> -# wrong constant name clone -# uninitialized constant Proc0 -# uninitialized constant Proc0 -# uninitialized constant Proc1 -# uninitialized constant Proc1 -# uninitialized constant Proc10 -# uninitialized constant Proc10 -# uninitialized constant Proc2 -# uninitialized constant Proc2 -# uninitialized constant Proc3 -# uninitialized constant Proc3 -# uninitialized constant Proc4 -# uninitialized constant Proc4 -# uninitialized constant Proc5 -# uninitialized constant Proc5 -# uninitialized constant Proc6 -# uninitialized constant Proc6 -# uninitialized constant Proc7 -# uninitialized constant Proc7 -# uninitialized constant Proc8 -# uninitialized constant Proc8 -# uninitialized constant Proc9 -# uninitialized constant Proc9 -# undefined method `eval1' for class `Pry' -# undefined method `initialize1' for class `Pry' -# undefined method `push_initial_binding1' for class `Pry' -# undefined method `repl1' for class `Pry' -# undefined method `set_last_result1' for class `Pry' -# 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 -# wrong constant name add_sticky_local -# wrong constant name backtrace -# wrong constant name backtrace= -# wrong constant name binding_stack -# wrong constant name binding_stack= -# wrong constant name color -# wrong constant name color= -# wrong constant name commands -# wrong constant name commands= -# wrong constant name complete -# wrong constant name config -# wrong constant name current_binding -# wrong constant name current_context -# wrong constant name custom_completions -# wrong constant name custom_completions= -# wrong constant name editor -# wrong constant name editor= -# wrong constant name eval1 -# wrong constant name eval -# wrong constant name eval_string -# wrong constant name eval_string= -# wrong constant name evaluate_ruby -# wrong constant name exception_handler -# wrong constant name exception_handler= -# wrong constant name exec_hook -# wrong constant name exit_value -# wrong constant name extra_sticky_locals -# wrong constant name extra_sticky_locals= -# wrong constant name hooks -# wrong constant name hooks= -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name inject_local -# wrong constant name inject_sticky_locals! -# wrong constant name input -# wrong constant name input= -# wrong constant name input_ring -# wrong constant name last_dir -# wrong constant name last_dir= -# wrong constant name last_exception -# wrong constant name last_exception= -# wrong constant name last_file -# wrong constant name last_file= -# wrong constant name last_result -# wrong constant name last_result= -# wrong constant name last_result_is_exception? -# wrong constant name memory_size -# wrong constant name memory_size= -# wrong constant name output -# wrong constant name output= -# wrong constant name output_ring -# wrong constant name pager -# wrong constant name pager= -# wrong constant name pop_prompt -# wrong constant name print -# wrong constant name print= -# wrong constant name process_command -# wrong constant name process_command_safely -# wrong constant name prompt -# wrong constant name prompt= -# wrong constant name push_binding -# wrong constant name push_initial_binding1 -# wrong constant name push_initial_binding -# wrong constant name push_prompt -# wrong constant name quiet? -# wrong constant name raise_up -# wrong constant name raise_up! -# wrong constant name raise_up_common -# wrong constant name repl1 -# wrong constant name repl -# wrong constant name reset_eval_string -# wrong constant name run_command -# wrong constant name select_prompt -# wrong constant name set_last_result1 -# wrong constant name set_last_result -# wrong constant name should_print? -# wrong constant name show_result -# wrong constant name sticky_locals -# wrong constant name suppress_output -# wrong constant name suppress_output= -# wrong constant name update_input_history -# uninitialized constant Pry::BasicObject::RUBYGEMS_ACTIVATION_MONITOR -# wrong constant name -# uninitialized constant Pry::BlockCommand::COLORS -# uninitialized constant Pry::BlockCommand::VOID_VALUE -# wrong constant name call -# wrong constant name help -# wrong constant name -# wrong constant name -# wrong constant name -# undefined singleton method `parse_options1' for `Pry::CLI' -# wrong constant name -# wrong constant name add_option_processor -# wrong constant name add_options -# wrong constant name add_plugin_options -# wrong constant name input_args -# wrong constant name input_args= -# wrong constant name option_processors -# wrong constant name option_processors= -# wrong constant name options -# wrong constant name options= -# wrong constant name parse_options1 -# wrong constant name parse_options -# wrong constant name reset -# wrong constant name start -# uninitialized constant Pry::ClassCommand::COLORS -# uninitialized constant Pry::ClassCommand::VOID_VALUE -# wrong constant name args -# wrong constant name args= -# wrong constant name call -# wrong constant name complete -# wrong constant name help -# wrong constant name options -# wrong constant name opts -# wrong constant name opts= -# wrong constant name process -# wrong constant name setup -# wrong constant name slop -# wrong constant name subcommands -# wrong constant name -# wrong constant name inherited -# wrong constant name source_location -# undefined method `after1' for class `Pry::Code' -# undefined method `around1' for class `Pry::Code' -# undefined method `before1' for class `Pry::Code' -# undefined method `between1' for class `Pry::Code' -# undefined method `expression_at1' for class `Pry::Code' -# undefined method `initialize1' for class `Pry::Code' -# undefined method `initialize2' for class `Pry::Code' -# undefined method `initialize3' for class `Pry::Code' -# undefined method `print_to_output1' for class `Pry::Code' -# undefined method `with_indentation1' for class `Pry::Code' -# undefined method `with_line_numbers1' for class `Pry::Code' -# undefined method `with_marker1' for class `Pry::Code' -# wrong constant name << -# wrong constant name == -# wrong constant name -# wrong constant name -# wrong constant name after1 -# wrong constant name after -# wrong constant name alter -# wrong constant name around1 -# wrong constant name around -# wrong constant name before1 -# wrong constant name before -# wrong constant name between1 -# wrong constant name between -# wrong constant name code_type -# wrong constant name code_type= -# wrong constant name comment_describing -# wrong constant name expression_at1 -# wrong constant name expression_at -# wrong constant name grep -# wrong constant name highlighted -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize3 -# wrong constant name initialize -# wrong constant name length -# wrong constant name max_lineno_width -# wrong constant name method_missing -# wrong constant name nesting_at -# wrong constant name print_to_output1 -# wrong constant name print_to_output -# wrong constant name push -# wrong constant name raw -# wrong constant name reject -# wrong constant name select -# wrong constant name take_lines -# wrong constant name with_indentation1 -# wrong constant name with_indentation -# wrong constant name with_line_numbers1 -# wrong constant name with_line_numbers -# wrong constant name with_marker1 -# wrong constant name with_marker -# undefined method `initialize1' for class `Pry::Code::CodeRange' -# wrong constant name indices_range -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name -# undefined method `add_line_number1' for class `Pry::Code::LOC' -# undefined method `add_line_number2' for class `Pry::Code::LOC' -# wrong constant name == -# wrong constant name add_line_number1 -# wrong constant name add_line_number2 -# wrong constant name add_line_number -# wrong constant name add_marker -# wrong constant name colorize -# wrong constant name handle_multiline_entries_from_edit_command -# wrong constant name indent -# wrong constant name initialize -# wrong constant name line -# wrong constant name lineno -# wrong constant name tuple -# wrong constant name -# undefined singleton method `from_file1' for `Pry::Code' -# undefined singleton method `from_method1' for `Pry::Code' -# undefined singleton method `from_module1' for `Pry::Code' -# undefined singleton method `from_module2' for `Pry::Code' -# wrong constant name -# wrong constant name from_file1 -# wrong constant name from_file -# wrong constant name from_method1 -# wrong constant name from_method -# wrong constant name from_module1 -# wrong constant name from_module2 -# wrong constant name from_module -# undefined method `initialize1' for class `Pry::CodeFile' -# wrong constant name code -# wrong constant name code_type -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name -# undefined method `initialize1' for class `Pry::CodeObject' -# wrong constant name -# wrong constant name command_lookup -# wrong constant name default_lookup -# wrong constant name empty_lookup -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name method_or_class_lookup -# wrong constant name pry_instance -# wrong constant name pry_instance= -# wrong constant name str -# wrong constant name str= -# wrong constant name super_level -# wrong constant name super_level= -# wrong constant name target -# wrong constant name target= -# wrong constant name c_method? -# wrong constant name c_module? -# wrong constant name command? -# wrong constant name module_with_yard_docs? -# wrong constant name real_method_object? -# wrong constant name -# undefined singleton method `lookup1' for `Pry::CodeObject' -# wrong constant name -# wrong constant name lookup1 -# wrong constant name lookup -# undefined method `text1' for class `Pry::ColorPrinter' -# wrong constant name pp -# wrong constant name text1 -# wrong constant name text -# undefined singleton method `pp1' for `Pry::ColorPrinter' -# undefined singleton method `pp2' for `Pry::ColorPrinter' -# wrong constant name -# wrong constant name default -# wrong constant name pp1 -# wrong constant name pp2 -# wrong constant name pp -# undefined method `initialize1' for class `Pry::Command' -# wrong constant name -# wrong constant name -# wrong constant name -# uninitialized constant Pry::Command::COLORS -# 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 _pry_ -# wrong constant name _pry_= -# wrong constant name arg_string -# wrong constant name arg_string= -# wrong constant name block -# wrong constant name captures -# wrong constant name captures= -# wrong constant name check_for_command_collision -# wrong constant name command_block -# wrong constant name command_block= -# wrong constant name command_name -# wrong constant name command_options -# wrong constant name command_set -# wrong constant name command_set= -# wrong constant name commands -# wrong constant name complete -# wrong constant name context -# wrong constant name context= -# wrong constant name description -# wrong constant name eval_string -# wrong constant name eval_string= -# wrong constant name hooks -# wrong constant name hooks= -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name interpolate_string -# wrong constant name match -# wrong constant name name -# wrong constant name output -# wrong constant name output= -# wrong constant name process_line -# wrong constant name pry_instance -# wrong constant name pry_instance= -# wrong constant name run -# wrong constant name source -# wrong constant name state -# wrong constant name target -# wrong constant name target= -# wrong constant name target_self -# wrong constant name tokenize -# wrong constant name void -# uninitialized constant Pry::Command::AmendLine::COLORS -# uninitialized constant Pry::Command::AmendLine::VOID_VALUE -# wrong constant name -# uninitialized constant Pry::Command::Bang::COLORS -# uninitialized constant Pry::Command::Bang::VOID_VALUE -# wrong constant name -# uninitialized constant Pry::Command::BangPry::COLORS -# uninitialized constant Pry::Command::BangPry::VOID_VALUE -# wrong constant name -# wrong constant name -# uninitialized constant Pry::Command::Cat::COLORS -# wrong constant name -# wrong constant name -# wrong constant name -# uninitialized constant Pry::Command::Cat::VOID_VALUE -# wrong constant name load_path_completions -# wrong constant name -# uninitialized constant Pry::Command::Cat::ExceptionFormatter::COLORS -# wrong constant name ex -# wrong constant name format -# wrong constant name initialize -# wrong constant name opts -# wrong constant name pry_instance -# wrong constant name -# wrong constant name file_and_line -# wrong constant name file_with_embedded_line -# wrong constant name format -# wrong constant name initialize -# wrong constant name opts -# wrong constant name pry_instance -# wrong constant name -# wrong constant name format -# wrong constant name initialize -# wrong constant name input_expressions -# wrong constant name input_expressions= -# wrong constant name opts -# wrong constant name opts= -# wrong constant name -# wrong constant name -# uninitialized constant Pry::Command::Cd::COLORS -# uninitialized constant Pry::Command::Cd::VOID_VALUE -# wrong constant name -# uninitialized constant Pry::Command::ChangeInspector::COLORS -# uninitialized constant Pry::Command::ChangeInspector::VOID_VALUE -# wrong constant name process -# wrong constant name -# uninitialized constant Pry::Command::ChangePrompt::COLORS -# uninitialized constant Pry::Command::ChangePrompt::VOID_VALUE -# wrong constant name process -# wrong constant name -# uninitialized constant Pry::Command::ClearScreen::COLORS -# uninitialized constant Pry::Command::ClearScreen::VOID_VALUE -# wrong constant name -# wrong constant name args -# wrong constant name code_object -# wrong constant name content -# wrong constant name file -# wrong constant name file= -# wrong constant name initialize -# wrong constant name line_range -# wrong constant name obj_name -# wrong constant name opts -# wrong constant name pry_input_content -# wrong constant name pry_instance -# wrong constant name pry_output_content -# wrong constant name restrict_to_lines -# wrong constant name -# wrong constant name inject_options -# wrong constant name input_expression_ranges -# wrong constant name input_expression_ranges= -# wrong constant name output_result_ranges -# wrong constant name output_result_ranges= -# uninitialized constant Pry::Command::DisablePry::COLORS -# uninitialized constant Pry::Command::DisablePry::VOID_VALUE -# wrong constant name -# undefined method `reload?1' for class `Pry::Command::Edit' -# uninitialized constant Pry::Command::Edit::COLORS -# wrong constant name -# wrong constant name -# uninitialized constant Pry::Command::Edit::VOID_VALUE -# wrong constant name apply_runtime_patch -# wrong constant name bad_option_combination? -# wrong constant name code_object -# wrong constant name ensure_file_name_is_valid -# wrong constant name file_and_line -# wrong constant name file_and_line_for_current_exception -# wrong constant name file_based_exception? -# wrong constant name file_edit -# wrong constant name filename_argument -# wrong constant name initial_temp_file_content -# wrong constant name input_expression -# wrong constant name never_reload? -# wrong constant name patch_exception? -# wrong constant name previously_patched? -# wrong constant name probably_a_file? -# wrong constant name pry_method? -# wrong constant name reload?1 -# wrong constant name reload? -# wrong constant name reloadable? -# wrong constant name repl_edit -# wrong constant name repl_edit? -# wrong constant name runtime_patch? -# wrong constant name file_and_line -# wrong constant name file_and_line= -# wrong constant name initialize -# wrong constant name perform_patch -# wrong constant name pry_instance -# wrong constant name pry_instance= -# wrong constant name state -# wrong constant name state= -# wrong constant name -# wrong constant name -# wrong constant name from_binding -# wrong constant name from_code_object -# wrong constant name from_exception -# wrong constant name from_filename_argument -# wrong constant name -# uninitialized constant Pry::Command::Exit::COLORS -# uninitialized constant Pry::Command::Exit::VOID_VALUE -# wrong constant name process_pop_and_return -# wrong constant name -# uninitialized constant Pry::Command::ExitAll::COLORS -# uninitialized constant Pry::Command::ExitAll::VOID_VALUE -# wrong constant name -# uninitialized constant Pry::Command::ExitProgram::COLORS -# uninitialized constant Pry::Command::ExitProgram::VOID_VALUE -# wrong constant name -# uninitialized constant Pry::Command::FindMethod::COLORS -# uninitialized constant Pry::Command::FindMethod::VOID_VALUE -# wrong constant name -# uninitialized constant Pry::Command::FixIndent::COLORS -# uninitialized constant Pry::Command::FixIndent::VOID_VALUE -# wrong constant name -# uninitialized constant Pry::Command::Help::COLORS -# uninitialized constant Pry::Command::Help::VOID_VALUE -# wrong constant name command_groups -# wrong constant name display_command -# wrong constant name display_filtered_commands -# wrong constant name display_filtered_search_results -# wrong constant name display_index -# wrong constant name display_search -# wrong constant name group_sort_key -# wrong constant name help_text_for_commands -# wrong constant name normalize -# wrong constant name search_hash -# wrong constant name sorted_commands -# wrong constant name sorted_group_names -# wrong constant name visible_commands -# wrong constant name -# uninitialized constant Pry::Command::Hist::COLORS -# uninitialized constant Pry::Command::Hist::VOID_VALUE -# wrong constant name -# uninitialized constant Pry::Command::ImportSet::COLORS -# uninitialized constant Pry::Command::ImportSet::VOID_VALUE -# wrong constant name process -# wrong constant name -# uninitialized constant Pry::Command::JumpTo::COLORS -# uninitialized constant Pry::Command::JumpTo::VOID_VALUE -# wrong constant name process -# wrong constant name -# uninitialized constant Pry::Command::ListInspectors::COLORS -# uninitialized constant Pry::Command::ListInspectors::VOID_VALUE -# wrong constant name -# uninitialized constant Pry::Command::Ls::COLORS -# 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 -# uninitialized constant Pry::Command::Ls::VOID_VALUE -# wrong constant name no_user_opts? -# wrong constant name initialize -# wrong constant name -# wrong constant name grep= -# wrong constant name initialize -# wrong constant name pry_instance -# wrong constant name write_out -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name initialize -# wrong constant name regexp -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name entities_table -# wrong constant name initialize -# wrong constant name pry_instance -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name -# uninitialized constant Pry::Command::Nesting::COLORS -# uninitialized constant Pry::Command::Nesting::VOID_VALUE -# wrong constant name -# uninitialized constant Pry::Command::Play::COLORS -# uninitialized constant Pry::Command::Play::VOID_VALUE -# wrong constant name code_object -# wrong constant name content -# wrong constant name content_after_options -# wrong constant name content_at_expression -# wrong constant name default_file -# wrong constant name file_content -# wrong constant name perform_play -# wrong constant name should_use_default_file? -# wrong constant name show_input -# wrong constant name -# uninitialized constant Pry::Command::PryBacktrace::COLORS -# uninitialized constant Pry::Command::PryBacktrace::VOID_VALUE -# wrong constant name -# uninitialized constant Pry::Command::RaiseUp::COLORS -# uninitialized constant Pry::Command::RaiseUp::VOID_VALUE -# wrong constant name -# uninitialized constant Pry::Command::ReloadCode::COLORS -# uninitialized constant Pry::Command::ReloadCode::VOID_VALUE -# wrong constant name -# uninitialized constant Pry::Command::Reset::COLORS -# uninitialized constant Pry::Command::Reset::VOID_VALUE -# wrong constant name -# uninitialized constant Pry::Command::Ri::COLORS -# uninitialized constant Pry::Command::Ri::VOID_VALUE -# wrong constant name process -# wrong constant name -# uninitialized constant Pry::Command::SaveFile::COLORS -# uninitialized constant Pry::Command::SaveFile::VOID_VALUE -# wrong constant name display_content -# wrong constant name file_name -# wrong constant name mode -# wrong constant name save_file -# wrong constant name -# uninitialized constant Pry::Command::ShellCommand::COLORS -# uninitialized constant Pry::Command::ShellCommand::VOID_VALUE -# wrong constant name process -# wrong constant name -# uninitialized constant Pry::Command::ShellMode::COLORS -# uninitialized constant Pry::Command::ShellMode::VOID_VALUE -# wrong constant name -# uninitialized constant Pry::Command::ShowDoc::COLORS -# uninitialized constant Pry::Command::ShowDoc::VOID_VALUE -# uninitialized constant Pry::Command::ShowDoc::YARD_TAGS -# wrong constant name content_for -# wrong constant name docs_for -# wrong constant name render_doc_markup_for -# wrong constant name -# uninitialized constant Pry::Command::ShowInfo::COLORS -# uninitialized constant Pry::Command::ShowInfo::VOID_VALUE -# wrong constant name code_object_header -# wrong constant name code_object_with_accessible_source -# wrong constant name complete -# wrong constant name content_and_header_for_code_object -# wrong constant name content_and_headers_for_all_module_candidates -# wrong constant name file_and_line_for -# wrong constant name header -# wrong constant name header_options -# wrong constant name initialize -# wrong constant name method_header -# wrong constant name method_sections -# wrong constant name module_header -# wrong constant name no_definition_message -# wrong constant name obj_name -# wrong constant name show_all_modules? -# wrong constant name start_line_for -# wrong constant name use_line_numbers? -# wrong constant name valid_superclass? -# wrong constant name -# uninitialized constant Pry::Command::ShowInput::COLORS -# uninitialized constant Pry::Command::ShowInput::VOID_VALUE -# wrong constant name -# uninitialized constant Pry::Command::ShowSource::COLORS -# uninitialized constant Pry::Command::ShowSource::VOID_VALUE -# uninitialized constant Pry::Command::ShowSource::YARD_TAGS -# wrong constant name content_for -# wrong constant name docs_for -# wrong constant name render_doc_markup_for -# wrong constant name -# uninitialized constant Pry::Command::Stat::COLORS -# uninitialized constant Pry::Command::Stat::VOID_VALUE -# wrong constant name -# uninitialized constant Pry::Command::SwitchTo::COLORS -# uninitialized constant Pry::Command::SwitchTo::VOID_VALUE -# wrong constant name process -# wrong constant name -# uninitialized constant Pry::Command::ToggleColor::COLORS -# uninitialized constant Pry::Command::ToggleColor::VOID_VALUE -# wrong constant name color_toggle -# wrong constant name -# uninitialized constant Pry::Command::Version::COLORS -# uninitialized constant Pry::Command::Version::VOID_VALUE -# wrong constant name -# uninitialized constant Pry::Command::WatchExpression::COLORS -# wrong constant name -# uninitialized constant Pry::Command::WatchExpression::VOID_VALUE -# wrong constant name changed? -# wrong constant name eval! -# wrong constant name initialize -# wrong constant name previous_value -# wrong constant name pry_instance -# wrong constant name source -# wrong constant name target -# wrong constant name value -# wrong constant name -# wrong constant name -# uninitialized constant Pry::Command::Whereami::COLORS -# uninitialized constant Pry::Command::Whereami::VOID_VALUE -# wrong constant name bad_option_combination? -# wrong constant name code -# wrong constant name code? -# wrong constant name initialize -# wrong constant name location -# wrong constant name -# wrong constant name method_size_cutoff -# wrong constant name method_size_cutoff= -# uninitialized constant Pry::Command::Wtf::COLORS -# uninitialized constant Pry::Command::Wtf::VOID_VALUE -# wrong constant name -# undefined singleton method `banner1' for `Pry::Command' -# undefined singleton method `command_options1' for `Pry::Command' -# undefined singleton method `description1' for `Pry::Command' -# undefined singleton method `group1' for `Pry::Command' -# undefined singleton method `match1' for `Pry::Command' -# undefined singleton method `options1' for `Pry::Command' -# wrong constant name -# wrong constant name banner1 -# wrong constant name banner -# wrong constant name block -# wrong constant name block= -# wrong constant name command_name -# wrong constant name command_options1 -# wrong constant name command_options -# wrong constant name command_options= -# wrong constant name command_regex -# wrong constant name convert_to_regex -# wrong constant name default_options -# wrong constant name description1 -# wrong constant name description -# wrong constant name description= -# wrong constant name doc -# wrong constant name file -# wrong constant name group1 -# wrong constant name group -# wrong constant name line -# wrong constant name match1 -# wrong constant name match -# wrong constant name match= -# wrong constant name match_score -# wrong constant name matches? -# wrong constant name options1 -# wrong constant name options -# wrong constant name options= -# wrong constant name source -# wrong constant name source_file -# wrong constant name source_line -# wrong constant name state -# wrong constant name subclass -# wrong constant name -# undefined method `alias_command1' for class `Pry::CommandSet' -# undefined method `block_command1' for class `Pry::CommandSet' -# undefined method `block_command2' for class `Pry::CommandSet' -# undefined method `command1' for class `Pry::CommandSet' -# undefined method `command2' for class `Pry::CommandSet' -# undefined method `complete1' for class `Pry::CommandSet' -# undefined method `create_command1' for class `Pry::CommandSet' -# undefined method `create_command2' for class `Pry::CommandSet' -# undefined method `desc1' for class `Pry::CommandSet' -# undefined method `process_line1' for class `Pry::CommandSet' -# undefined method `rename_command1' for class `Pry::CommandSet' -# uninitialized constant Pry::CommandSet::Elem -# wrong constant name [] -# wrong constant name []= -# wrong constant name add_command -# wrong constant name alias_command1 -# wrong constant name alias_command -# wrong constant name block_command1 -# wrong constant name block_command2 -# wrong constant name block_command -# wrong constant name command1 -# wrong constant name command2 -# wrong constant name command -# wrong constant name complete1 -# wrong constant name complete -# wrong constant name create_command1 -# wrong constant name create_command2 -# wrong constant name create_command -# wrong constant name delete -# wrong constant name desc1 -# wrong constant name desc -# wrong constant name each -# wrong constant name find_command -# wrong constant name find_command_by_match_or_listing -# wrong constant name find_command_for_help -# wrong constant name helper_module -# wrong constant name import -# wrong constant name import_from -# wrong constant name initialize -# wrong constant name keys -# wrong constant name list_commands -# wrong constant name process_line1 -# wrong constant name process_line -# wrong constant name rename_command1 -# wrong constant name rename_command -# wrong constant name to_h -# wrong constant name to_hash -# wrong constant name valid_command? -# wrong constant name -# wrong constant name reset -# wrong constant name state_for -# wrong constant name -# wrong constant name default -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name [] -# wrong constant name []= -# wrong constant name auto_indent -# wrong constant name auto_indent= -# wrong constant name collision_warning -# wrong constant name collision_warning= -# wrong constant name color -# wrong constant name color= -# wrong constant name command_completions -# wrong constant name command_completions= -# wrong constant name command_prefix -# wrong constant name command_prefix= -# wrong constant name commands -# wrong constant name commands= -# wrong constant name completer -# wrong constant name completer= -# wrong constant name control_d_handler -# wrong constant name control_d_handler= -# wrong constant name correct_indent -# wrong constant name correct_indent= -# wrong constant name default_window_size -# wrong constant name default_window_size= -# wrong constant name disable_auto_reload -# wrong constant name disable_auto_reload= -# wrong constant name editor -# wrong constant name editor= -# wrong constant name exception_handler -# wrong constant name exception_handler= -# wrong constant name exception_whitelist -# wrong constant name exception_whitelist= -# wrong constant name exec_string -# wrong constant name exec_string= -# wrong constant name extra_sticky_locals -# wrong constant name extra_sticky_locals= -# wrong constant name file_completions -# wrong constant name file_completions= -# wrong constant name history -# wrong constant name history= -# wrong constant name history_file -# wrong constant name history_file= -# wrong constant name history_ignorelist -# wrong constant name history_ignorelist= -# wrong constant name history_load -# wrong constant name history_load= -# wrong constant name history_save -# wrong constant name history_save= -# wrong constant name hooks -# wrong constant name hooks= -# wrong constant name input -# wrong constant name input= -# wrong constant name ls -# wrong constant name ls= -# wrong constant name memory_size -# wrong constant name memory_size= -# wrong constant name merge -# wrong constant name merge! -# wrong constant name method_missing -# wrong constant name output -# wrong constant name output= -# wrong constant name output_prefix -# wrong constant name output_prefix= -# wrong constant name pager -# wrong constant name pager= -# wrong constant name print -# wrong constant name print= -# wrong constant name prompt -# wrong constant name prompt= -# wrong constant name prompt_name -# wrong constant name prompt_name= -# wrong constant name prompt_safe_contexts -# wrong constant name prompt_safe_contexts= -# wrong constant name quiet -# wrong constant name quiet= -# wrong constant name rc_file -# wrong constant name rc_file= -# wrong constant name requires -# wrong constant name requires= -# wrong constant name should_load_local_rc -# wrong constant name should_load_local_rc= -# wrong constant name should_load_plugins -# wrong constant name should_load_plugins= -# wrong constant name should_load_rc -# wrong constant name should_load_rc= -# wrong constant name should_load_requires -# wrong constant name should_load_requires= -# wrong constant name should_trap_interrupts -# wrong constant name should_trap_interrupts= -# wrong constant name system -# wrong constant name system= -# wrong constant name unrescued_exceptions -# wrong constant name unrescued_exceptions= -# wrong constant name windows_console_warning -# wrong constant name windows_console_warning= -# wrong constant name attribute -# 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 -# wrong constant name -# wrong constant name -# wrong constant name default -# undefined method `edit_tempfile_with_content1' for class `Pry::Editor' -# undefined method `invoke_editor1' for class `Pry::Editor' -# wrong constant name build_editor_invocation_string -# wrong constant name edit_tempfile_with_content1 -# wrong constant name edit_tempfile_with_content -# wrong constant name initialize -# wrong constant name invoke_editor1 -# wrong constant name invoke_editor -# wrong constant name pry_instance -# wrong constant name -# wrong constant name default -# wrong constant name -# wrong constant name [] -# wrong constant name -# wrong constant name handle_exception -# uninitialized constant Pry::Forwardable::FORWARDABLE_VERSION -# uninitialized constant Pry::Forwardable::VERSION -# wrong constant name def_private_delegators -# 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 -# undefined method `find_command1' for module `Pry::Helpers::BaseHelpers' -# undefined method `highlight1' for module `Pry::Helpers::BaseHelpers' -# undefined method `stagger_output1' for module `Pry::Helpers::BaseHelpers' -# wrong constant name colorize_code -# wrong constant name find_command1 -# wrong constant name find_command -# wrong constant name heading -# wrong constant name highlight1 -# wrong constant name highlight -# wrong constant name not_a_real_file? -# wrong constant name safe_send -# wrong constant name silence_warnings -# wrong constant name stagger_output1 -# wrong constant name stagger_output -# wrong constant name use_ansi_codes? -# wrong constant name -# undefined method `get_method_or_raise1' for module `Pry::Helpers::CommandHelpers' -# undefined method `set_file_and_dir_locals1' for module `Pry::Helpers::CommandHelpers' -# undefined method `set_file_and_dir_locals2' for module `Pry::Helpers::CommandHelpers' -# undefined method `temp_file1' for module `Pry::Helpers::CommandHelpers' -# undefined method `unindent1' for module `Pry::Helpers::CommandHelpers' -# wrong constant name absolute_index_number -# wrong constant name absolute_index_range -# wrong constant name get_method_or_raise1 -# wrong constant name get_method_or_raise -# wrong constant name internal_binding? -# wrong constant name one_index_number -# wrong constant name one_index_range -# wrong constant name one_index_range_or_number -# wrong constant name restrict_to_lines -# wrong constant name set_file_and_dir_locals1 -# wrong constant name set_file_and_dir_locals2 -# wrong constant name set_file_and_dir_locals -# wrong constant name temp_file1 -# wrong constant name temp_file -# wrong constant name unindent1 -# wrong constant name unindent -# wrong constant name -# wrong constant name -# wrong constant name get_comment_content -# wrong constant name process_comment_markup -# wrong constant name process_rdoc -# wrong constant name process_yardoc -# wrong constant name process_yardoc_tag -# wrong constant name strip_comments_from_c_code -# wrong constant name strip_leading_whitespace -# wrong constant name -# wrong constant name method_object -# wrong constant name method_options -# wrong constant name -# wrong constant name jruby? -# wrong constant name jruby_19? -# wrong constant name linux? -# wrong constant name mac_osx? -# wrong constant name mri? -# wrong constant name mri_19? -# wrong constant name mri_2? -# wrong constant name windows? -# wrong constant name windows_ansi? -# undefined method `initialize1' for class `Pry::Helpers::Table' -# undefined method `rows_to_s1' for class `Pry::Helpers::Table' -# wrong constant name == -# wrong constant name column_count -# wrong constant name column_count= -# wrong constant name columns -# wrong constant name fits_on_line? -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name items -# wrong constant name items= -# wrong constant name rows_to_s1 -# wrong constant name rows_to_s -# wrong constant name to_a -# wrong constant name -# undefined method `with_line_numbers1' for module `Pry::Helpers::Text' -# wrong constant name black -# 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_purple -# wrong constant name black_on_red -# wrong constant name black_on_white -# wrong constant name black_on_yellow -# wrong constant name blue -# 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_purple -# 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 bright_black -# wrong constant name bright_black_on_black -# wrong constant name bright_black_on_blue -# wrong constant name bright_black_on_cyan -# wrong constant name bright_black_on_green -# wrong constant name bright_black_on_magenta -# wrong constant name bright_black_on_purple -# wrong constant name bright_black_on_red -# wrong constant name bright_black_on_white -# wrong constant name bright_black_on_yellow -# wrong constant name bright_blue -# wrong constant name bright_blue_on_black -# wrong constant name bright_blue_on_blue -# wrong constant name bright_blue_on_cyan -# wrong constant name bright_blue_on_green -# wrong constant name bright_blue_on_magenta -# wrong constant name bright_blue_on_purple -# wrong constant name bright_blue_on_red -# wrong constant name bright_blue_on_white -# wrong constant name bright_blue_on_yellow -# wrong constant name bright_cyan -# wrong constant name bright_cyan_on_black -# wrong constant name bright_cyan_on_blue -# wrong constant name bright_cyan_on_cyan -# wrong constant name bright_cyan_on_green -# wrong constant name bright_cyan_on_magenta -# wrong constant name bright_cyan_on_purple -# wrong constant name bright_cyan_on_red -# wrong constant name bright_cyan_on_white -# wrong constant name bright_cyan_on_yellow -# wrong constant name bright_green -# wrong constant name bright_green_on_black -# wrong constant name bright_green_on_blue -# wrong constant name bright_green_on_cyan -# wrong constant name bright_green_on_green -# wrong constant name bright_green_on_magenta -# wrong constant name bright_green_on_purple -# wrong constant name bright_green_on_red -# wrong constant name bright_green_on_white -# wrong constant name bright_green_on_yellow -# wrong constant name bright_magenta -# wrong constant name bright_magenta_on_black -# wrong constant name bright_magenta_on_blue -# wrong constant name bright_magenta_on_cyan -# wrong constant name bright_magenta_on_green -# wrong constant name bright_magenta_on_magenta -# wrong constant name bright_magenta_on_purple -# wrong constant name bright_magenta_on_red -# wrong constant name bright_magenta_on_white -# wrong constant name bright_magenta_on_yellow -# wrong constant name bright_purple -# wrong constant name bright_purple_on_black -# wrong constant name bright_purple_on_blue -# wrong constant name bright_purple_on_cyan -# wrong constant name bright_purple_on_green -# wrong constant name bright_purple_on_magenta -# wrong constant name bright_purple_on_purple -# wrong constant name bright_purple_on_red -# wrong constant name bright_purple_on_white -# wrong constant name bright_purple_on_yellow -# wrong constant name bright_red -# wrong constant name bright_red_on_black -# wrong constant name bright_red_on_blue -# wrong constant name bright_red_on_cyan -# wrong constant name bright_red_on_green -# wrong constant name bright_red_on_magenta -# wrong constant name bright_red_on_purple -# wrong constant name bright_red_on_red -# wrong constant name bright_red_on_white -# wrong constant name bright_red_on_yellow -# wrong constant name bright_white -# wrong constant name bright_white_on_black -# wrong constant name bright_white_on_blue -# wrong constant name bright_white_on_cyan -# wrong constant name bright_white_on_green -# wrong constant name bright_white_on_magenta -# wrong constant name bright_white_on_purple -# wrong constant name bright_white_on_red -# wrong constant name bright_white_on_white -# wrong constant name bright_white_on_yellow -# wrong constant name bright_yellow -# wrong constant name bright_yellow_on_black -# wrong constant name bright_yellow_on_blue -# wrong constant name bright_yellow_on_cyan -# wrong constant name bright_yellow_on_green -# wrong constant name bright_yellow_on_magenta -# wrong constant name bright_yellow_on_purple -# wrong constant name bright_yellow_on_red -# wrong constant name bright_yellow_on_white -# wrong constant name bright_yellow_on_yellow -# wrong constant name cyan -# 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_purple -# wrong constant name cyan_on_red -# wrong constant name cyan_on_white -# wrong constant name cyan_on_yellow -# wrong constant name default -# 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_green -# wrong constant name green_on_magenta -# wrong constant name green_on_purple -# wrong constant name green_on_red -# wrong constant name green_on_white -# wrong constant name green_on_yellow -# wrong constant name indent -# 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_magenta -# wrong constant name magenta_on_purple -# wrong constant name magenta_on_red -# wrong constant name magenta_on_white -# wrong constant name magenta_on_yellow -# wrong constant name no_color -# wrong constant name no_pager -# wrong constant name purple -# wrong constant name purple_on_black -# wrong constant name purple_on_blue -# wrong constant name purple_on_cyan -# wrong constant name purple_on_green -# wrong constant name purple_on_magenta -# wrong constant name purple_on_purple -# wrong constant name purple_on_red -# wrong constant name purple_on_white -# wrong constant name purple_on_yellow -# 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_purple -# wrong constant name red_on_red -# wrong constant name red_on_white -# wrong constant name red_on_yellow -# wrong constant name strip_color -# 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_purple -# wrong constant name white_on_red -# wrong constant name white_on_white -# wrong constant name white_on_yellow -# wrong constant name with_line_numbers1 -# wrong constant name with_line_numbers -# 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_purple -# wrong constant name yellow_on_red -# wrong constant name yellow_on_white -# wrong constant name yellow_on_yellow -# wrong constant name -# undefined singleton method `tablify1' for `Pry::Helpers' -# undefined singleton method `tablify_or_one_line1' for `Pry::Helpers' -# undefined singleton method `tablify_to_screen_width1' for `Pry::Helpers' -# wrong constant name -# wrong constant name tablify1 -# wrong constant name tablify -# wrong constant name tablify_or_one_line1 -# wrong constant name tablify_or_one_line -# wrong constant name tablify_to_screen_width1 -# wrong constant name tablify_to_screen_width -# undefined method `initialize1' for class `Pry::History' -# wrong constant name << -# wrong constant name clear -# wrong constant name filter -# wrong constant name history_line_count -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name load -# wrong constant name loader -# wrong constant name loader= -# wrong constant name original_lines -# wrong constant name push -# wrong constant name saver -# wrong constant name saver= -# wrong constant name session_line_count -# wrong constant name to_a -# wrong constant name -# wrong constant name default_file -# undefined method `add_hook1' for class `Pry::Hooks' -# wrong constant name add_hook1 -# wrong constant name add_hook -# wrong constant name clear_event_hooks -# wrong constant name delete_hook -# wrong constant name errors -# wrong constant name exec_hook -# wrong constant name get_hook -# wrong constant name get_hooks -# wrong constant name hook_count -# wrong constant name hook_exists? -# wrong constant name hooks -# wrong constant name merge -# wrong constant name merge! -# wrong constant name -# wrong constant name default -# undefined method `correct_indentation1' for class `Pry::Indent' -# undefined method `initialize1' for class `Pry::Indent' -# undefined method `track_module_nesting_end1' for class `Pry::Indent' -# wrong constant name -# wrong constant name correct_indentation1 -# wrong constant name correct_indentation -# wrong constant name current_prefix -# wrong constant name end_of_statement? -# wrong constant name in_string? -# wrong constant name indent -# wrong constant name indent_level -# wrong constant name indentation_delta -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name module_nesting -# wrong constant name open_delimiters -# wrong constant name open_delimiters_line -# wrong constant name reset -# wrong constant name stack -# wrong constant name tokenize -# wrong constant name track_delimiter -# wrong constant name track_module_nesting -# wrong constant name track_module_nesting_end1 -# wrong constant name track_module_nesting_end -# wrong constant name -# wrong constant name -# wrong constant name indent -# wrong constant name nesting_at -# undefined method `call1' for class `Pry::InputCompleter' -# undefined method `initialize1' for class `Pry::InputCompleter' -# wrong constant name build_path -# wrong constant name call1 -# wrong constant name call -# wrong constant name ignored_modules -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name select_message -# wrong constant name -# wrong constant name -# wrong constant name __with_ownership -# wrong constant name enter_interruptible_region -# wrong constant name interruptible_region -# wrong constant name leave_interruptible_region -# wrong constant name with_ownership -# wrong constant name -# wrong constant name -# wrong constant name for -# wrong constant name global_lock -# wrong constant name global_lock= -# wrong constant name input_locks -# wrong constant name input_locks= -# wrong constant name -# wrong constant name bt_index -# wrong constant name bt_index= -# wrong constant name bt_source_location_for -# wrong constant name file -# wrong constant name inc_bt_index -# wrong constant name initialize -# wrong constant name line -# wrong constant name method_missing -# wrong constant name wrapped_exception -# wrong constant name -# undefined method `initialize1' for class `Pry::Method' -# undefined method `respond_to?1' for class `Pry::Method' -# undefined method `super1' for class `Pry::Method' -# wrong constant name == -# wrong constant name -# wrong constant name -# wrong constant name -# uninitialized constant Pry::Method::YARD_TAGS -# wrong constant name alias? -# wrong constant name aliases -# wrong constant name bound_method? -# wrong constant name comment -# wrong constant name doc -# wrong constant name dynamically_defined? -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name is_a? -# wrong constant name kind_of? -# wrong constant name method_missing -# wrong constant name name -# wrong constant name name_with_owner -# wrong constant name original_name -# wrong constant name owner -# wrong constant name parameters -# wrong constant name pry_method? -# wrong constant name receiver -# wrong constant name redefine -# wrong constant name respond_to?1 -# wrong constant name respond_to? -# wrong constant name signature -# wrong constant name singleton_method? -# wrong constant name source -# wrong constant name source? -# wrong constant name source_file -# wrong constant name source_line -# wrong constant name source_range -# wrong constant name source_type -# wrong constant name super1 -# wrong constant name super -# wrong constant name unbound_method? -# wrong constant name undefined? -# wrong constant name visibility -# wrong constant name wrapped -# wrong constant name wrapped_owner -# uninitialized constant Pry::Method::Disowned::YARD_TAGS -# wrong constant name initialize -# wrong constant name owner -# wrong constant name receiver -# wrong constant name -# wrong constant name initialize -# wrong constant name method -# wrong constant name method= -# wrong constant name patch_in_ram -# wrong constant name -# wrong constant name code_for -# wrong constant name find_method -# wrong constant name initialize -# wrong constant name lost_method? -# wrong constant name method -# wrong constant name method= -# wrong constant name target -# wrong constant name target= -# wrong constant name -# wrong constant name normal_method? -# wrong constant name weird_method? -# undefined singleton method `all_from_class1' for `Pry::Method' -# undefined singleton method `all_from_obj1' for `Pry::Method' -# undefined singleton method `from_class1' for `Pry::Method' -# undefined singleton method `from_module1' for `Pry::Method' -# undefined singleton method `from_obj1' for `Pry::Method' -# undefined singleton method `from_str1' for `Pry::Method' -# undefined singleton method `from_str2' for `Pry::Method' -# undefined singleton method `lookup_method_via_binding1' for `Pry::Method' -# wrong constant name -# wrong constant name all_from_class1 -# wrong constant name all_from_class -# wrong constant name all_from_obj1 -# wrong constant name all_from_obj -# wrong constant name from_binding -# wrong constant name from_class1 -# wrong constant name from_class -# wrong constant name from_module1 -# wrong constant name from_module -# wrong constant name from_obj1 -# wrong constant name from_obj -# wrong constant name from_str1 -# wrong constant name from_str2 -# wrong constant name from_str -# wrong constant name instance_method_definition? -# wrong constant name instance_resolution_order -# wrong constant name lookup_method_via_binding1 -# wrong constant name lookup_method_via_binding -# wrong constant name method_definition? -# wrong constant name resolution_order -# wrong constant name singleton_class_of -# wrong constant name singleton_class_resolution_order -# wrong constant name singleton_method_definition? -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name initialize -# wrong constant name resolve -# wrong constant name -# wrong constant name -# wrong constant name << -# wrong constant name decolorize_maybe -# wrong constant name height -# wrong constant name initialize -# wrong constant name method_missing -# wrong constant name print -# wrong constant name pry_instance -# wrong constant name puts -# wrong constant name size -# wrong constant name tty? -# wrong constant name width -# wrong constant name write -# 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 open -# wrong constant name page -# wrong constant name pry_instance -# wrong constant name << -# wrong constant name close -# wrong constant name initialize -# wrong constant name print -# wrong constant name puts -# wrong constant name write -# wrong constant name -# wrong constant name initialize -# wrong constant name page? -# wrong constant name record -# wrong constant name reset -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name available? -# wrong constant name default_pager -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name load_plugins -# wrong constant name locate_plugins -# wrong constant name plugins -# wrong constant name initialize -# wrong constant name -# wrong constant name activate! -# wrong constant name active -# wrong constant name active= -# wrong constant name active? -# wrong constant name disable! -# wrong constant name enable! -# wrong constant name enabled -# wrong constant name enabled= -# wrong constant name enabled? -# wrong constant name gem_name -# wrong constant name gem_name= -# wrong constant name initialize -# wrong constant name load_cli_options -# wrong constant name name -# wrong constant name name= -# wrong constant name spec -# wrong constant name spec= -# wrong constant name supported? -# wrong constant name -# wrong constant name -# wrong constant name [] -# wrong constant name description -# wrong constant name incomplete_proc -# wrong constant name initialize -# wrong constant name name -# wrong constant name prompt_procs -# wrong constant name wait_proc -# undefined singleton method `add1' for `Pry::Prompt' -# undefined singleton method `add2' for `Pry::Prompt' -# wrong constant name -# wrong constant name [] -# wrong constant name add1 -# wrong constant name add2 -# wrong constant name add -# wrong constant name all -# undefined method `initialize1' for class `Pry::REPL' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name input -# wrong constant name output -# wrong constant name pry -# wrong constant name pry= -# wrong constant name start -# wrong constant name -# wrong constant name start -# wrong constant name define_additional_commands -# wrong constant name initialize -# wrong constant name interactive_mode -# wrong constant name load -# wrong constant name non_interactive_mode -# wrong constant name -# wrong constant name -# wrong constant name === -# undefined method `initialize1' for class `Pry::Result' -# wrong constant name command? -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name retval -# wrong constant name void_command? -# wrong constant name -# wrong constant name << -# wrong constant name [] -# wrong constant name clear -# wrong constant name count -# wrong constant name initialize -# wrong constant name max_size -# wrong constant name size -# wrong constant name to_a -# wrong constant name -# undefined method `banner1' for class `Pry::Slop' -# undefined method `command1' for class `Pry::Slop' -# undefined method `description1' for class `Pry::Slop' -# undefined method `initialize1' for class `Pry::Slop' -# undefined method `parse1' for class `Pry::Slop' -# undefined method `parse!1' for class `Pry::Slop' -# undefined method `run1' for class `Pry::Slop' -# undefined method `to_h1' for class `Pry::Slop' -# undefined method `to_hash1' for class `Pry::Slop' -# wrong constant name -# uninitialized constant Pry::Slop::Elem -# 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_callback -# wrong constant name banner1 -# wrong constant name banner -# wrong constant name banner= -# wrong constant name command1 -# wrong constant name command -# wrong constant name config -# wrong constant name description1 -# wrong constant name description -# wrong constant name description= -# wrong constant name each -# wrong constant name fetch_command -# wrong constant name fetch_option -# wrong constant name get -# wrong constant name help -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name missing -# wrong constant name on -# wrong constant name opt -# wrong constant name option -# wrong constant name options -# wrong constant name parse1 -# wrong constant name parse -# wrong constant name parse!1 -# wrong constant name parse! -# wrong constant name present? -# wrong constant name run1 -# wrong constant name run -# wrong constant name separator -# wrong constant name strict? -# wrong constant name to_h1 -# wrong constant name to_h -# wrong constant name to_hash1 -# wrong constant name to_hash -# undefined method `banner1' for class `Pry::Slop::Commands' -# undefined method `default1' for class `Pry::Slop::Commands' -# undefined method `global1' for class `Pry::Slop::Commands' -# undefined method `initialize1' for class `Pry::Slop::Commands' -# undefined method `on1' for class `Pry::Slop::Commands' -# undefined method `parse1' for class `Pry::Slop::Commands' -# undefined method `parse!1' for class `Pry::Slop::Commands' -# uninitialized constant Pry::Slop::Commands::Elem -# wrong constant name [] -# wrong constant name arguments -# wrong constant name banner1 -# wrong constant name banner -# wrong constant name banner= -# wrong constant name commands -# wrong constant name config -# wrong constant name default1 -# wrong constant name default -# wrong constant name each -# wrong constant name get -# wrong constant name global1 -# wrong constant name global -# wrong constant name help -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name on1 -# wrong constant name on -# wrong constant name parse1 -# wrong constant name parse -# wrong constant name parse!1 -# wrong constant name parse! -# wrong constant name present? -# wrong constant name to_hash -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# undefined method `initialize1' for class `Pry::Slop::Option' -# wrong constant name accepts_optional_argument? -# wrong constant name argument? -# wrong constant name argument_in_value -# wrong constant name argument_in_value= -# wrong constant name as? -# wrong constant name autocreated? -# wrong constant name call -# wrong constant name callback? -# wrong constant name config -# wrong constant name count -# wrong constant name count= -# wrong constant name default? -# wrong constant name delimiter? -# wrong constant name description -# wrong constant name expects_argument? -# wrong constant name help -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name key -# wrong constant name limit? -# wrong constant name long -# wrong constant name match? -# wrong constant name optional? -# wrong constant name optional_argument? -# wrong constant name required? -# wrong constant name short -# wrong constant name tail? -# wrong constant name types -# wrong constant name value -# wrong constant name value= -# wrong constant name -# undefined singleton method `optspec1' for `Pry::Slop' -# undefined singleton method `parse1' for `Pry::Slop' -# undefined singleton method `parse2' for `Pry::Slop' -# undefined singleton method `parse!1' for `Pry::Slop' -# undefined singleton method `parse!2' for `Pry::Slop' -# wrong constant name -# wrong constant name optspec1 -# wrong constant name optspec -# wrong constant name parse1 -# wrong constant name parse2 -# wrong constant name parse -# wrong constant name parse!1 -# wrong constant name parse!2 -# wrong constant name parse! -# undefined singleton method `highlight1' for `Pry::SyntaxHighlighter' -# undefined singleton method `tokenize1' for `Pry::SyntaxHighlighter' -# wrong constant name -# wrong constant name highlight1 -# wrong constant name highlight -# wrong constant name keyword_token_color -# wrong constant name overwrite_coderay_comment_token! -# wrong constant name tokenize1 -# wrong constant name tokenize -# wrong constant name -# wrong constant name default -# wrong constant name -# wrong constant name === -# wrong constant name -# wrong constant name -# wrong constant name warn -# undefined method `constants1' for class `Pry::WrappedModule' -# undefined method `super1' for class `Pry::WrappedModule' -# wrong constant name -# wrong constant name candidate -# wrong constant name candidates -# wrong constant name class? -# wrong constant name constants1 -# wrong constant name constants -# wrong constant name doc -# wrong constant name file -# wrong constant name initialize -# wrong constant name line -# wrong constant name method_missing -# wrong constant name method_prefix -# wrong constant name module? -# wrong constant name nonblank_name -# wrong constant name number_of_candidates -# wrong constant name singleton_class? -# wrong constant name singleton_instance -# wrong constant name source -# wrong constant name source_file -# wrong constant name source_line -# wrong constant name source_location -# wrong constant name super1 -# wrong constant name super -# wrong constant name wrapped -# wrong constant name yard_doc -# wrong constant name yard_docs? -# wrong constant name yard_file -# wrong constant name yard_line -# uninitialized constant Pry::WrappedModule::Candidate::YARD_TAGS -# wrong constant name class? -# wrong constant name doc -# wrong constant name file -# wrong constant name initialize -# wrong constant name line -# wrong constant name module? -# wrong constant name nonblank_name -# wrong constant name number_of_candidates -# wrong constant name source -# wrong constant name source_file -# wrong constant name source_line -# wrong constant name source_location -# wrong constant name wrapped -# wrong constant name -# undefined singleton method `from_str1' for `Pry::WrappedModule' -# wrong constant name -# wrong constant name from_str1 -# wrong constant name from_str -# undefined singleton method `run_command1' for `Pry' -# undefined singleton method `start1' for `Pry' -# undefined singleton method `start2' for `Pry' -# undefined singleton method `view_clip1' for `Pry' -# wrong constant name -# wrong constant name auto_resize! -# wrong constant name binding_for -# wrong constant name cli -# wrong constant name cli= -# wrong constant name color -# wrong constant name color= -# wrong constant name commands -# wrong constant name commands= -# wrong constant name config -# wrong constant name config= -# wrong constant name configure -# wrong constant name critical_section -# wrong constant name current -# wrong constant name current_line -# wrong constant name current_line= -# wrong constant name custom_completions -# wrong constant name custom_completions= -# wrong constant name editor -# wrong constant name editor= -# wrong constant name eval_path -# wrong constant name eval_path= -# wrong constant name exception_handler -# wrong constant name exception_handler= -# wrong constant name extra_sticky_locals -# wrong constant name extra_sticky_locals= -# wrong constant name final_session_setup -# wrong constant name history -# wrong constant name history= -# wrong constant name hooks -# wrong constant name hooks= -# wrong constant name in_critical_section? -# wrong constant name init -# wrong constant name initial_session? -# wrong constant name initial_session_setup -# wrong constant name input -# wrong constant name input= -# wrong constant name last_internal_error -# wrong constant name last_internal_error= -# wrong constant name line_buffer -# wrong constant name line_buffer= -# wrong constant name load_file_at_toplevel -# wrong constant name load_file_through_repl -# wrong constant name load_history -# wrong constant name load_plugins -# wrong constant name load_rc_files -# wrong constant name load_requires -# wrong constant name load_traps -# wrong constant name load_win32console -# wrong constant name locate_plugins -# wrong constant name main -# wrong constant name memory_size -# wrong constant name memory_size= -# wrong constant name output -# wrong constant name output= -# wrong constant name pager -# wrong constant name pager= -# wrong constant name plugins -# wrong constant name print -# wrong constant name print= -# wrong constant name prompt -# wrong constant name prompt= -# wrong constant name quiet -# wrong constant name quiet= -# wrong constant name rc_files_to_load -# wrong constant name real_path_to -# wrong constant name reset_defaults -# wrong constant name run_command1 -# wrong constant name run_command -# wrong constant name start1 -# wrong constant name start2 -# wrong constant name start -# wrong constant name toplevel_binding -# wrong constant name toplevel_binding= -# wrong constant name view_clip1 -# wrong constant name view_clip -# uninitialized constant Psych::UnsafeYAML -# uninitialized constant Psych::UnsafeYAML -# wrong constant name add_builtin_type -# wrong constant name add_domain_type -# wrong constant name add_tag -# wrong constant name domain_types -# wrong constant name domain_types= -# wrong constant name dump_tags -# wrong constant name dump_tags= -# wrong constant name libyaml_version -# wrong constant name load_tags -# wrong constant name load_tags= -# wrong constant name remove_type -# wrong constant name autolink -# wrong constant name autolink= -# wrong constant name filter_html -# wrong constant name filter_html= -# wrong constant name filter_styles -# wrong constant name filter_styles= -# wrong constant name fold_lines -# wrong constant name fold_lines= -# wrong constant name footnotes -# wrong constant name footnotes= -# wrong constant name generate_toc -# wrong constant name generate_toc= -# wrong constant name initialize -# wrong constant name no_image -# wrong constant name no_image= -# wrong constant name no_links -# wrong constant name no_links= -# wrong constant name no_pseudo_protocols -# wrong constant name no_pseudo_protocols= -# wrong constant name no_strikethrough -# wrong constant name no_strikethrough= -# wrong constant name no_superscript -# wrong constant name no_superscript= -# wrong constant name no_tables -# wrong constant name no_tables= -# wrong constant name safelink -# wrong constant name safelink= -# wrong constant name smart -# wrong constant name smart= -# wrong constant name strict -# wrong constant name strict= -# wrong constant name text -# wrong constant name to_html -# wrong constant name toc_content -# wrong constant name -# uninitialized constant RDoc -# uninitialized constant RDoc -# uninitialized constant REXML::QuickPath -# uninitialized constant REXML::QuickPath -# uninitialized constant REXML::SAX2Listener -# uninitialized constant REXML::SAX2Listener -# uninitialized constant REXML::SyncEnumerator -# uninitialized constant REXML::SyncEnumerator -# wrong constant name initialize -# wrong constant name initialize -# undefined singleton method `match1' for `REXML::XPath' -# undefined singleton method `match2' for `REXML::XPath' -# undefined singleton method `match3' for `REXML::XPath' -# undefined singleton method `match4' for `REXML::XPath' -# wrong constant name match1 -# wrong constant name match2 -# wrong constant name match3 -# wrong constant name match4 -# wrong constant name match -# uninitialized constant REXML::XPathParser::NAME -# uninitialized constant REXML::XPathParser::NAMECHAR -# uninitialized constant REXML::XPathParser::NAME_CHAR -# uninitialized constant REXML::XPathParser::NAME_START_CHAR -# uninitialized constant REXML::XPathParser::NAME_STR -# uninitialized constant REXML::XPathParser::NCNAME_STR -# uninitialized constant REXML::XPathParser::NMTOKEN -# uninitialized constant REXML::XPathParser::NMTOKENS -# uninitialized constant REXML::XPathParser::REFERENCE -# wrong constant name clear_lets_on_failure -# wrong constant name default_retry_count -# wrong constant name default_sleep_interval -# wrong constant name display_try_failure_messages -# wrong constant name exceptions_to_hard_fail -# wrong constant name exceptions_to_retry -# wrong constant name exponential_backoff -# wrong constant name retry_callback -# wrong constant name retry_count_condition -# wrong constant name verbose_retry -# wrong constant name wait_delay -# wrong constant name wait_timeout -# wrong constant name attempts -# wrong constant name attempts= -# wrong constant name clear_exception -# undefined method `run_with_retry1' for class `RSpec::Core::Example::Procsy' -# wrong constant name attempts -# wrong constant name run_with_retry1 -# wrong constant name run_with_retry -# uninitialized constant RSpec::Core::ExampleGroup::BE_PREDICATE_REGEX -# uninitialized constant RSpec::Core::ExampleGroup::DYNAMIC_MATCHER_REGEX -# uninitialized constant RSpec::Core::ExampleGroup::HAS_REGEX -# uninitialized constant RSpec::Core::ExampleGroup::NOT_YET_IMPLEMENTED -# uninitialized constant RSpec::Core::ExampleGroup::NO_REASON_GIVEN -# wrong constant name clear_lets -# wrong constant name clear_memoized -# wrong constant name assert_valid_keys -# wrong constant name deep_merge -# wrong constant name deep_merge! -# wrong constant name deep_stringify_keys -# wrong constant name deep_stringify_keys! -# wrong constant name deep_symbolize_keys -# wrong constant name deep_symbolize_keys! -# wrong constant name deep_transform_keys -# wrong constant name deep_transform_keys! -# wrong constant name except -# wrong constant name except! -# wrong constant name extract! -# wrong constant name extractable_options? -# wrong constant name save_plist -# wrong constant name slice! -# wrong constant name stringify_keys -# wrong constant name stringify_keys! -# wrong constant name symbolize_keys -# wrong constant name symbolize_keys! -# wrong constant name to_options -# wrong constant name to_options! -# wrong constant name to_plist -# wrong constant name -# wrong constant name setup_mocks_for_rspec -# wrong constant name teardown_mocks_for_rspec -# wrong constant name verify_mocks_for_rspec -# wrong constant name -# wrong constant name configuration -# wrong constant name framework_name -# wrong constant name -# wrong constant name as_json -# wrong constant name nonblock -# wrong constant name nonblock= -# wrong constant name nonblock? -# wrong constant name nread -# wrong constant name ready? -# wrong constant name wait -# wrong constant name wait_readable -# wrong constant name wait_writable -# uninitialized constant RSpec::Core::SharedContext::VERSION -# wrong constant name its -# wrong constant name -# undefined method `initialize1' for class `RSpec::Retry' -# wrong constant name attempts -# wrong constant name attempts= -# wrong constant name clear_lets -# wrong constant name context -# wrong constant name current_example -# wrong constant name display_try_failure_messages? -# wrong constant name ex -# wrong constant name exceptions_to_hard_fail -# wrong constant name exceptions_to_retry -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name retry_count -# wrong constant name run -# wrong constant name sleep_interval -# wrong constant name verbose_retry? -# wrong constant name -# wrong constant name setup -# 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 handle_matcher -# wrong constant name -# wrong constant name -# wrong constant name -# undefined method `for1' for class `RSpec::Wait::Proxy' -# wrong constant name for1 -# wrong constant name for -# wrong constant name initialize -# wrong constant name -# wrong constant name -# wrong constant name initialize -# wrong constant name -# undefined singleton method `for1' for `RSpec::Wait::Target' -# wrong constant name -# wrong constant name for1 -# wrong constant name for -# wrong constant name -# undefined singleton method `wait1' for `RSpec::Wait' -# undefined singleton method `wait2' for `RSpec::Wait' -# undefined singleton method `wait_for1' for `RSpec::Wait' -# wrong constant name -# wrong constant name wait1 -# wrong constant name wait2 -# wrong constant name wait -# wrong constant name wait_for1 -# wrong constant name wait_for -# wrong constant name with_wait -# wrong constant name -# wrong constant name -# wrong constant name bytes -# wrong constant name % -# wrong constant name entries -# wrong constant name to_a -# undefined singleton method `expand1' for `RbConfig' -# undefined singleton method `fire_update!1' for `RbConfig' -# undefined singleton method `fire_update!2' for `RbConfig' -# wrong constant name expand1 -# wrong constant name expand -# wrong constant name fire_update!1 -# wrong constant name fire_update!2 -# wrong constant name fire_update! -# wrong constant name ruby -# wrong constant name completion_quote_character -# undefined singleton method `cask1' for `Requirement' -# undefined singleton method `download1' for `Requirement' -# undefined singleton method `fatal1' for `Requirement' -# wrong constant name cask1 -# wrong constant name cask -# wrong constant name download1 -# wrong constant name download -# wrong constant name fatal1 -# wrong constant name fatal -# wrong constant name extract_resources -# wrong constant name getname -# undefined method `initialize1' for class `Resolv::DNS::Config' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name initialize -# undefined method `initialize1' for class `Resolv::DNS::Message' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name initialize -# undefined method `initialize1' for class `Resolv::DNS::Requester::ConnectedUDP' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name lazy_initialize -# wrong constant name initialize -# undefined method `initialize1' for class `Resolv::DNS::Requester::TCP' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name initialize -# wrong constant name lazy_initialize -# wrong constant name initialize -# uninitialized constant Resolv::DNS::Resource::LOC::ClassHash -# uninitialized constant Resolv::DNS::Resource::LOC::ClassInsensitiveTypes -# uninitialized constant Resolv::DNS::Resource::LOC::ClassValue -# wrong constant name initialize -# undefined singleton method `bind_random_port1' for `Resolv::DNS' -# wrong constant name allocate_request_id -# wrong constant name bind_random_port1 -# wrong constant name bind_random_port -# wrong constant name free_request_id -# wrong constant name random -# uninitialized constant Resource::LOW_METHODS -# uninitialized constant Resource::METHODS -# uninitialized constant Resource::OPT_TABLE -# uninitialized constant Resource::VERSION -# wrong constant name sha256 -# wrong constant name [] -# wrong constant name members -# wrong constant name mirrors -# wrong constant name retain! -# wrong constant name source_modified_time -# wrong constant name specs -# wrong constant name url -# wrong constant name using -# wrong constant name version -# uninitialized constant Rinda -# uninitialized constant Rinda -# uninitialized constant Ripper -# uninitialized constant Ripper -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# undefined method `basename1' for class `Ronn::Document' -# undefined method `initialize1' for class `Ronn::Document' -# undefined method `initialize2' for class `Ronn::Document' -# undefined method `path_for1' for class `Ronn::Document' -# undefined method `to_html_fragment1' for class `Ronn::Document' -# uninitialized constant Ronn::Document::HTML -# uninitialized constant Ronn::Document::HTML_BLOCK -# uninitialized constant Ronn::Document::HTML_EMPTY -# uninitialized constant Ronn::Document::HTML_INLINE -# wrong constant name basename1 -# wrong constant name basename -# wrong constant name convert -# wrong constant name data -# wrong constant name date -# wrong constant name date= -# wrong constant name html -# wrong constant name html_filter_angle_quotes -# wrong constant name html_filter_annotate_bare_links -# wrong constant name html_filter_definition_lists -# wrong constant name html_filter_heading_anchors -# wrong constant name html_filter_inject_name_section -# wrong constant name html_filter_manual_reference_links -# wrong constant name index -# wrong constant name index= -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name input_html -# wrong constant name manual -# wrong constant name manual= -# wrong constant name markdown -# wrong constant name markdown_filter_angle_quotes -# wrong constant name markdown_filter_heading_anchors -# wrong constant name markdown_filter_link_index -# wrong constant name name -# wrong constant name name= -# wrong constant name name? -# wrong constant name organization -# wrong constant name organization= -# wrong constant name path -# wrong constant name path_for1 -# wrong constant name path_for -# wrong constant name path_name -# wrong constant name path_section -# wrong constant name preprocess! -# wrong constant name process_html! -# wrong constant name process_markdown! -# wrong constant name reference_name -# wrong constant name section -# wrong constant name section= -# wrong constant name section? -# wrong constant name section_heads -# wrong constant name sniff -# wrong constant name strip_heading -# wrong constant name styles -# wrong constant name styles= -# wrong constant name tagline -# wrong constant name tagline= -# wrong constant name title -# wrong constant name title? -# wrong constant name to_h -# wrong constant name to_html -# wrong constant name to_html_fragment1 -# wrong constant name to_html_fragment -# wrong constant name to_json -# wrong constant name to_markdown -# wrong constant name to_roff -# wrong constant name to_yaml -# wrong constant name toc -# wrong constant name -# wrong constant name << -# uninitialized constant Ronn::Index::Elem -# wrong constant name [] -# wrong constant name add_manual -# wrong constant name each -# wrong constant name empty? -# wrong constant name exist? -# wrong constant name first -# wrong constant name initialize -# wrong constant name last -# wrong constant name manual -# wrong constant name manuals -# wrong constant name path -# wrong constant name read! -# wrong constant name reference -# wrong constant name references -# wrong constant name relative_to_index -# wrong constant name size -# wrong constant name to_a -# wrong constant name to_h -# wrong constant name to_text -# wrong constant name -# wrong constant name [] -# wrong constant name index_path_for_file -# undefined method `initialize1' for class `Ronn::Template' -# undefined method `inline_stylesheet1' for class `Ronn::Template' -# undefined method `remote_stylesheet1' for class `Ronn::Template' -# undefined method `render1' for class `Ronn::Template' -# undefined method `stylesheet1' for class `Ronn::Template' -# wrong constant name custom_title? -# wrong constant name date -# wrong constant name generator -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name inline_stylesheet1 -# wrong constant name inline_stylesheet -# wrong constant name manual -# wrong constant name missing_styles -# wrong constant name name -# wrong constant name name_and_section? -# wrong constant name organization -# wrong constant name page_name -# wrong constant name remote_stylesheet1 -# wrong constant name remote_stylesheet -# wrong constant name render1 -# wrong constant name render -# wrong constant name section -# wrong constant name section_heads -# wrong constant name style_files -# wrong constant name style_path -# wrong constant name style_path= -# wrong constant name styles -# wrong constant name stylesheet1 -# wrong constant name stylesheet -# wrong constant name stylesheet_tags -# wrong constant name stylesheets -# wrong constant name tagline -# wrong constant name tagline? -# wrong constant name title -# wrong constant name wrap_class_name -# wrong constant name -# wrong constant name block_element? -# wrong constant name child_of? -# wrong constant name empty_element? -# wrong constant name html_element? -# wrong constant name inline_element? -# wrong constant name -# undefined singleton method `new1' for `Ronn' -# wrong constant name -# wrong constant name new1 -# wrong constant name new -# wrong constant name release? -# wrong constant name revision -# wrong constant name version -# wrong constant name extract_options! -# wrong constant name save_plist -# wrong constant name to_default_s -# wrong constant name to_formatted_s -# wrong constant name to_plist -# wrong constant name to_sentence -# wrong constant name to_xml -# undefined method `block_args1' for class `RuboCop::AST::Node' -# undefined method `block_body1' for class `RuboCop::AST::Node' -# undefined method `cask_block?1' for class `RuboCop::AST::Node' -# undefined method `key_node1' for class `RuboCop::AST::Node' -# undefined method `method_node1' for class `RuboCop::AST::Node' -# undefined method `val_node1' for class `RuboCop::AST::Node' -# uninitialized constant RuboCop::AST::Node::STANZA_GROUPS -# uninitialized constant RuboCop::AST::Node::STANZA_GROUP_HASH -# uninitialized constant RuboCop::AST::Node::STANZA_ORDER -# wrong constant name block_args1 -# wrong constant name block_args -# wrong constant name block_body1 -# wrong constant name block_body -# wrong constant name cask_block?1 -# wrong constant name cask_block? -# wrong constant name key_node1 -# wrong constant name key_node -# wrong constant name method_node1 -# wrong constant name method_node -# wrong constant name val_node1 -# wrong constant name val_node -# wrong constant name cask_body -# wrong constant name app? -# wrong constant name appcast? -# wrong constant name artifact? -# wrong constant name audio_unit_plugin? -# wrong constant name auto_updates? -# wrong constant name binary? -# wrong constant name caveats? -# wrong constant name colorpicker? -# wrong constant name conflicts_with? -# wrong constant name container? -# wrong constant name depends_on? -# wrong constant name dictionary? -# wrong constant name font? -# wrong constant name homepage? -# wrong constant name input_method? -# wrong constant name installer? -# wrong constant name internet_plugin? -# wrong constant name manpage? -# wrong constant name mdimporter? -# wrong constant name name? -# wrong constant name parent_node -# wrong constant name pkg? -# wrong constant name postflight? -# wrong constant name preflight? -# wrong constant name prefpane? -# wrong constant name qlplugin? -# wrong constant name screen_saver? -# wrong constant name service? -# wrong constant name sha256? -# wrong constant name source -# wrong constant name source_with_comments -# wrong constant name stage_only? -# wrong constant name stanza_name -# wrong constant name suite? -# wrong constant name uninstall? -# wrong constant name uninstall_postflight? -# wrong constant name uninstall_preflight? -# wrong constant name url? -# wrong constant name version? -# wrong constant name vst_plugin? -# wrong constant name zap? -# uninitialized constant RuboCop::Cop::Cask::HomepageMatchesUrl::LITERAL_REGEX -# wrong constant name cask_node -# wrong constant name sorted_toplevel_stanzas -# wrong constant name toplevel_stanzas -# uninitialized constant RuboCop::Cop::Cask::NoDslVersion::LITERAL_REGEX -# wrong constant name header_range -# wrong constant name header_str -# wrong constant name preferred_header_str -# wrong constant name toplevel_stanzas -# uninitialized constant RuboCop::Cop::Cask::StanzaGrouping::BYTE_ORDER_MARK -# uninitialized constant RuboCop::Cop::Cask::StanzaGrouping::LITERAL_REGEX -# wrong constant name cask_node -# wrong constant name toplevel_stanzas -# uninitialized constant RuboCop::Cop::Cask::StanzaOrder::LITERAL_REGEX -# wrong constant name cask_node -# wrong constant name sorted_toplevel_stanzas -# wrong constant name toplevel_stanzas -# uninitialized constant RuboCop::Cop::Cop::LITERAL_REGEX -# wrong constant name highlights -# wrong constant name messages -# undefined method `depends_on_node?1' for class `RuboCop::Cop::FormulaAudit::ComponentsOrder' -# uninitialized constant RuboCop::Cop::FormulaAudit::ComponentsOrder::BYTE_ORDER_MARK -# uninitialized constant RuboCop::Cop::FormulaAudit::ComponentsOrder::LITERAL_REGEX -# wrong constant name depends_on_node?1 -# wrong constant name depends_on_node? -# undefined method `depends_on_node?1' for class `RuboCop::Cop::FormulaAudit::DependencyOrder' -# undefined method `uses_from_macos_node?1' for class `RuboCop::Cop::FormulaAudit::DependencyOrder' -# uninitialized constant RuboCop::Cop::FormulaAudit::DependencyOrder::BYTE_ORDER_MARK -# uninitialized constant RuboCop::Cop::FormulaAudit::DependencyOrder::LITERAL_REGEX -# wrong constant name build_with_dependency_node -# wrong constant name buildtime_dependency? -# wrong constant name dependency_name_node -# wrong constant name depends_on_node?1 -# wrong constant name depends_on_node? -# wrong constant name negate_normal_dependency? -# wrong constant name optional_dependency? -# wrong constant name recommended_dependency? -# wrong constant name test_dependency? -# wrong constant name uses_from_macos_node?1 -# wrong constant name uses_from_macos_node? -# undefined method `destructure_hash1' for class `RuboCop::Cop::FormulaAudit::Miscellaneous' -# undefined method `hash_dep1' for class `RuboCop::Cop::FormulaAudit::Miscellaneous' -# uninitialized constant RuboCop::Cop::FormulaAudit::Miscellaneous::BYTE_ORDER_MARK -# uninitialized constant RuboCop::Cop::FormulaAudit::Miscellaneous::LITERAL_REGEX -# wrong constant name conditional_dependencies -# wrong constant name destructure_hash1 -# wrong constant name destructure_hash -# wrong constant name formula_path_strings -# wrong constant name hash_dep1 -# wrong constant name hash_dep -# wrong constant name languageNodeModule? -# uninitialized constant RuboCop::Cop::FormulaAudit::Test::BYTE_ORDER_MARK -# uninitialized constant RuboCop::Cop::FormulaAudit::Test::LITERAL_REGEX -# wrong constant name test_calls -# uninitialized constant RuboCop::Cop::FormulaCop::BYTE_ORDER_MARK -# uninitialized constant RuboCop::Cop::FormulaCop::LITERAL_REGEX -# wrong constant name dependency_name_hash_match? -# wrong constant name dependency_type_hash_match? -# wrong constant name required_dependency? -# wrong constant name required_dependency_name? -# undefined method `expect_correction1' for module `RuboCop::RSpec::ExpectOffense' -# undefined method `expect_no_offenses1' for module `RuboCop::RSpec::ExpectOffense' -# undefined method `expect_offense1' for module `RuboCop::RSpec::ExpectOffense' -# wrong constant name -# wrong constant name expect_correction1 -# wrong constant name expect_correction -# wrong constant name expect_no_corrections -# wrong constant name expect_no_offenses1 -# wrong constant name expect_no_offenses -# wrong constant name expect_offense1 -# wrong constant name expect_offense -# wrong constant name format_offense -# wrong constant name initialize -# wrong constant name plain_source -# wrong constant name with_offense_annotations -# wrong constant name -# wrong constant name parse -# wrong constant name -# undefined method `Fail1' for class `RubyLex' -# undefined method `Raise1' for class `RubyLex' -# undefined method `identify_string1' for class `RubyLex' -# undefined method `peek1' for class `RubyLex' -# undefined method `set_input1' for class `RubyLex' -# undefined method `set_prompt1' for class `RubyLex' -# undefined method `ungetc1' for class `RubyLex' -# wrong constant name -# uninitialized constant RubyLex::EXPR_ARG -# uninitialized constant RubyLex::EXPR_BEG -# uninitialized constant RubyLex::EXPR_CLASS -# uninitialized constant RubyLex::EXPR_DOT -# uninitialized constant RubyLex::EXPR_END -# uninitialized constant RubyLex::EXPR_FNAME -# uninitialized constant RubyLex::EXPR_MID -# wrong constant name Fail1 -# uninitialized constant RubyLex::Fail -# wrong constant name Raise1 -# uninitialized constant RubyLex::Raise -# wrong constant name -# wrong constant name -# uninitialized constant RubyLex::TkReading2Token -# wrong constant name -# wrong constant name -# uninitialized constant RubyLex::TkSymbol2Token -# wrong constant name -# uninitialized constant RubyLex::TokenDefinitions -# wrong constant name char_no -# wrong constant name each_top_level_statement -# wrong constant name eof? -# wrong constant name exception_on_syntax_error -# wrong constant name exception_on_syntax_error= -# wrong constant name get_readed -# wrong constant name getc -# wrong constant name getc_of_rests -# wrong constant name gets -# wrong constant name identify_comment -# wrong constant name identify_gvar -# wrong constant name identify_here_document -# wrong constant name identify_identifier -# wrong constant name identify_number -# wrong constant name identify_quotation -# wrong constant name identify_string1 -# wrong constant name identify_string -# wrong constant name identify_string_dvar -# wrong constant name indent -# wrong constant name initialize_input -# wrong constant name lex -# wrong constant name lex_init -# wrong constant name lex_int2 -# wrong constant name line_no -# wrong constant name peek1 -# wrong constant name peek -# wrong constant name peek_equal? -# wrong constant name peek_match? -# wrong constant name prompt -# wrong constant name read_escape -# wrong constant name readed_auto_clean_up -# wrong constant name readed_auto_clean_up= -# wrong constant name seek -# wrong constant name set_input1 -# wrong constant name set_input -# wrong constant name set_prompt1 -# wrong constant name set_prompt -# wrong constant name skip_space -# wrong constant name skip_space= -# wrong constant name token -# wrong constant name ungetc1 -# wrong constant name ungetc -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name debug? -# wrong constant name debug_level -# wrong constant name debug_level= -# wrong constant name included -# undefined method `Token1' for module `RubyToken' -# 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 -# 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 -# 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 Token1 -# 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 -# 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 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 node -# wrong constant name -# wrong constant name initialize -# wrong constant name op -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name name -# wrong constant name 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 name -# wrong constant name -# undefined method `initialize1' for class `RubyToken::TkVal' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name value -# 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 char_no -# wrong constant name initialize -# wrong constant name line_no -# wrong constant name seek -# wrong constant name -# undefined singleton method `def_token1' for `RubyToken' -# undefined singleton method `def_token2' for `RubyToken' -# wrong constant name -# wrong constant name def_token1 -# wrong constant name def_token2 -# wrong constant name def_token -# wrong constant name -# undefined method `pretty_print_children1' for class `RubyVM::AbstractSyntaxTree::Node' -# wrong constant name children -# wrong constant name first_column -# wrong constant name first_lineno -# wrong constant name last_column -# wrong constant name last_lineno -# wrong constant name pretty_print_children1 -# wrong constant name pretty_print_children -# wrong constant name type -# wrong constant name -# wrong constant name -# wrong constant name of -# wrong constant name parse -# wrong constant name parse_file -# wrong constant name -# wrong constant name enabled? -# wrong constant name pause -# wrong constant name resume -# wrong constant name resolve_feature_path -# uninitialized constant SDBM -# uninitialized constant SDBM -# uninitialized constant SDBMError -# uninitialized constant SDBMError -# uninitialized constant Scanf -# uninitialized constant Scanf -# undefined method `flatten_merge1' for class `Set' -# wrong constant name == -# wrong constant name === -# wrong constant name compare_by_identity -# wrong constant name compare_by_identity? -# wrong constant name divide -# wrong constant name eql? -# wrong constant name flatten_merge1 -# wrong constant name flatten_merge -# wrong constant name pretty_print -# wrong constant name pretty_print_cycle -# wrong constant name reset -# uninitialized constant SharedEnvExtension::COMPILERS -# uninitialized constant SharedEnvExtension::COMPILER_SYMBOL_MAP -# uninitialized constant SharedEnvExtension::GNU_GCC_REGEXP -# uninitialized constant SharedEnvExtension::GNU_GCC_VERSIONS -# wrong constant name clang -# wrong constant name gcc -# wrong constant name llvm_clang -# uninitialized constant Shell -# uninitialized constant Shell -# 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 matches? -# wrong constant name -# wrong constant name matches? -# wrong constant name -# wrong constant name -# wrong constant name guess -# wrong constant name original_run_command -# wrong constant name original_run_command= -# undefined method `add_filter1' for module `SimpleCov::Configuration' -# undefined method `add_group1' for module `SimpleCov::Configuration' -# undefined method `command_name1' for module `SimpleCov::Configuration' -# undefined method `coverage_dir1' for module `SimpleCov::Configuration' -# undefined method `formatter1' for module `SimpleCov::Configuration' -# undefined method `maximum_coverage_drop1' for module `SimpleCov::Configuration' -# undefined method `merge_timeout1' for module `SimpleCov::Configuration' -# undefined method `minimum_coverage1' for module `SimpleCov::Configuration' -# undefined method `minimum_coverage_by_file1' for module `SimpleCov::Configuration' -# undefined method `nocov_token1' for module `SimpleCov::Configuration' -# undefined method `project_name1' for module `SimpleCov::Configuration' -# undefined method `root1' for module `SimpleCov::Configuration' -# undefined method `skip_token1' for module `SimpleCov::Configuration' -# undefined method `use_merging1' for module `SimpleCov::Configuration' -# wrong constant name adapters -# wrong constant name add_filter1 -# wrong constant name add_filter -# wrong constant name add_group1 -# wrong constant name add_group -# wrong constant name at_exit -# wrong constant name command_name1 -# wrong constant name command_name -# wrong constant name configure -# wrong constant name coverage_dir1 -# wrong constant name coverage_dir -# wrong constant name coverage_path -# wrong constant name filters -# wrong constant name filters= -# wrong constant name formatter1 -# wrong constant name formatter -# wrong constant name formatter= -# wrong constant name formatters -# wrong constant name formatters= -# wrong constant name groups -# wrong constant name groups= -# wrong constant name maximum_coverage_drop1 -# wrong constant name maximum_coverage_drop -# wrong constant name merge_timeout1 -# wrong constant name merge_timeout -# wrong constant name minimum_coverage1 -# wrong constant name minimum_coverage -# wrong constant name minimum_coverage_by_file1 -# wrong constant name minimum_coverage_by_file -# wrong constant name nocov_token1 -# wrong constant name nocov_token -# wrong constant name profiles -# wrong constant name project_name1 -# wrong constant name project_name -# wrong constant name refuse_coverage_drop -# wrong constant name root1 -# wrong constant name root -# wrong constant name skip_token1 -# wrong constant name skip_token -# wrong constant name track_files -# wrong constant name tracked_files -# wrong constant name use_merging1 -# wrong constant name use_merging -# wrong constant name -# wrong constant name -# uninitialized constant SimpleCov::FileList::DEFAULT_INDENT -# uninitialized constant SimpleCov::FileList::Elem -# wrong constant name covered_lines -# wrong constant name covered_percent -# wrong constant name covered_percentages -# wrong constant name covered_strength -# wrong constant name least_covered_file -# wrong constant name lines_of_code -# wrong constant name missed_lines -# wrong constant name never_lines -# wrong constant name skipped_lines -# wrong constant name -# wrong constant name filter_argument -# wrong constant name initialize -# wrong constant name matches? -# wrong constant name passes? -# wrong constant name -# wrong constant name build_filter -# wrong constant name class_for_argument -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name format -# wrong constant name output_message -# wrong constant name -# wrong constant name -# wrong constant name format -# wrong constant name -# undefined singleton method `new1' for `SimpleCov::Formatter::MultiFormatter' -# wrong constant name -# wrong constant name [] -# wrong constant name new1 -# wrong constant name new -# wrong constant name format -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name last_run_path -# wrong constant name read -# wrong constant name write -# wrong constant name classify -# wrong constant name -# wrong constant name no_cov_line -# wrong constant name no_cov_line? -# wrong constant name whitespace_line? -# uninitialized constant SimpleCov::Profiles::DEFAULT_INDENT -# uninitialized constant SimpleCov::Profiles::Elem -# uninitialized constant SimpleCov::Profiles::K -# uninitialized constant SimpleCov::Profiles::V -# wrong constant name define -# wrong constant name load -# wrong constant name -# wrong constant name -# wrong constant name merge_file_coverage -# wrong constant name merge_line_coverage -# wrong constant name merge_results -# wrong constant name merge_resultsets -# wrong constant name matches? -# wrong constant name -# wrong constant name command_name -# wrong constant name command_name= -# wrong constant name covered_lines -# wrong constant name covered_percent -# wrong constant name covered_percentages -# wrong constant name covered_strength -# wrong constant name created_at -# wrong constant name created_at= -# wrong constant name filenames -# wrong constant name files -# wrong constant name format! -# wrong constant name groups -# wrong constant name initialize -# wrong constant name least_covered_file -# wrong constant name missed_lines -# wrong constant name original_result -# wrong constant name source_files -# wrong constant name to_hash -# wrong constant name total_lines -# wrong constant name -# wrong constant name from_hash -# wrong constant name -# wrong constant name clear_resultset -# wrong constant name merge_results -# wrong constant name merged_result -# wrong constant name results -# wrong constant name resultset -# wrong constant name resultset_path -# wrong constant name resultset_writelock -# wrong constant name store_result -# wrong constant name stored_data -# wrong constant name synchronize_resultset -# wrong constant name -# wrong constant name build_lines -# wrong constant name coverage -# wrong constant name coverage_exceeding_source_warn -# wrong constant name covered_lines -# wrong constant name covered_percent -# wrong constant name covered_strength -# wrong constant name filename -# wrong constant name initialize -# wrong constant name line -# wrong constant name lines -# wrong constant name lines_of_code -# wrong constant name lines_strength -# wrong constant name missed_lines -# wrong constant name never_lines -# wrong constant name no_lines? -# wrong constant name process_skipped_lines -# wrong constant name project_filename -# wrong constant name relevant_lines -# wrong constant name skipped_lines -# wrong constant name source -# wrong constant name source_lines -# wrong constant name src -# wrong constant name coverage -# wrong constant name covered? -# wrong constant name initialize -# wrong constant name line -# wrong constant name line_number -# wrong constant name missed? -# wrong constant name never? -# wrong constant name number -# wrong constant name skipped -# wrong constant name skipped! -# wrong constant name skipped? -# wrong constant name source -# wrong constant name src -# wrong constant name status -# wrong constant name -# wrong constant name -# wrong constant name matches? -# wrong constant name -# undefined singleton method `start1' for `SimpleCov' -# wrong constant name -# wrong constant name add_not_loaded_files -# wrong constant name clear_result -# wrong constant name exit_exception -# wrong constant name exit_status_from_exception -# wrong constant name filtered -# wrong constant name grouped -# wrong constant name load_adapter -# wrong constant name load_profile -# wrong constant name pid -# wrong constant name pid= -# wrong constant name process_result -# wrong constant name result -# wrong constant name result? -# wrong constant name result_exit_status -# wrong constant name run_exit_tasks! -# wrong constant name running -# wrong constant name running= -# wrong constant name set_exit_exception -# wrong constant name start1 -# wrong constant name start -# wrong constant name usable? -# wrong constant name write_last_run -# undefined method `_dump1' for module `Singleton' -# wrong constant name _dump1 -# wrong constant name _dump -# wrong constant name clone -# wrong constant name dup -# wrong constant name _load -# wrong constant name clone -# wrong constant name __init__ -# uninitialized constant Socket::APPEND -# uninitialized constant Socket::BINARY -# uninitialized constant Socket::CREAT -# uninitialized constant Socket::DSYNC -# uninitialized constant Socket::EXCL -# uninitialized constant Socket::FNM_CASEFOLD -# uninitialized constant Socket::FNM_DOTMATCH -# uninitialized constant Socket::FNM_EXTGLOB -# uninitialized constant Socket::FNM_NOESCAPE -# uninitialized constant Socket::FNM_PATHNAME -# uninitialized constant Socket::FNM_SHORTNAME -# uninitialized constant Socket::FNM_SYSCASE -# uninitialized constant Socket::LOCK_EX -# uninitialized constant Socket::LOCK_NB -# uninitialized constant Socket::LOCK_SH -# uninitialized constant Socket::LOCK_UN -# uninitialized constant Socket::NOCTTY -# uninitialized constant Socket::NOFOLLOW -# uninitialized constant Socket::NONBLOCK -# uninitialized constant Socket::NULL -# uninitialized constant Socket::RDONLY -# uninitialized constant Socket::RDWR -# uninitialized constant Socket::SEEK_CUR -# uninitialized constant Socket::SEEK_DATA -# uninitialized constant Socket::SEEK_END -# uninitialized constant Socket::SEEK_HOLE -# uninitialized constant Socket::SEEK_SET -# uninitialized constant Socket::SHARE_DELETE -# uninitialized constant Socket::SYNC -# uninitialized constant Socket::TRUNC -# uninitialized constant Socket::WRONLY -# uninitialized constant SortedSet::InspectKey -# wrong constant name initialize -# wrong constant name setup -# undefined method `generic_setup_build_environment1' for module `Stdenv' -# uninitialized constant Stdenv::CC_FLAG_VARS -# uninitialized constant Stdenv::COMPILERS -# uninitialized constant Stdenv::COMPILER_SYMBOL_MAP -# uninitialized constant Stdenv::FC_FLAG_VARS -# uninitialized constant Stdenv::GNU_GCC_REGEXP -# uninitialized constant Stdenv::GNU_GCC_VERSIONS -# uninitialized constant Stdenv::O0 -# uninitialized constant Stdenv::O1 -# uninitialized constant Stdenv::O2 -# uninitialized constant Stdenv::O3 -# uninitialized constant Stdenv::Os -# uninitialized constant Stdenv::SANITIZED_VARS -# wrong constant name generic_setup_build_environment1 -# undefined method `camelcase1' for class `String' -# undefined method `camelize1' for class `String' -# undefined method `first1' for class `String' -# undefined method `foreign_key1' for class `String' -# undefined method `humanize1' for class `String' -# undefined method `humanize2' for class `String' -# undefined method `kconv1' for class `String' -# undefined method `last1' for class `String' -# undefined method `parameterize1' for class `String' -# undefined method `parameterize2' for class `String' -# undefined method `parameterize3' for class `String' -# undefined method `pluralize1' for class `String' -# undefined method `pluralize2' for class `String' -# undefined method `singularize1' for class `String' -# undefined method `titlecase1' for class `String' -# undefined method `titleize1' for class `String' -# undefined method `to_time1' for class `String' -# undefined method `truncate1' for class `String' -# undefined method `truncate_bytes1' for class `String' -# undefined method `truncate_words1' for class `String' -# wrong constant name acts_like_string? -# wrong constant name at -# wrong constant name camelcase1 -# wrong constant name camelcase -# wrong constant name camelize1 -# wrong constant name camelize -# wrong constant name classify -# wrong constant name constantize -# wrong constant name dasherize -# wrong constant name deconstantize -# wrong constant name demodulize -# wrong constant name ends_with? -# wrong constant name fast_xs -# wrong constant name first1 -# wrong constant name first -# wrong constant name foreign_key1 -# wrong constant name foreign_key -# wrong constant name from -# wrong constant name html_safe -# wrong constant name humanize1 -# wrong constant name humanize2 -# wrong constant name humanize -# wrong constant name is_utf8? -# wrong constant name iseuc -# wrong constant name isjis -# wrong constant name issjis -# wrong constant name isutf8 -# wrong constant name kconv1 -# wrong constant name kconv -# wrong constant name last1 -# wrong constant name last -# wrong constant name mb_chars -# wrong constant name parameterize1 -# wrong constant name parameterize2 -# wrong constant name parameterize3 -# wrong constant name parameterize -# wrong constant name pluralize1 -# wrong constant name pluralize2 -# wrong constant name pluralize -# wrong constant name remove -# wrong constant name remove! -# wrong constant name safe_constantize -# wrong constant name shellescape -# wrong constant name shellsplit -# wrong constant name singularize1 -# wrong constant name singularize -# wrong constant name squish -# wrong constant name squish! -# wrong constant name starts_with? -# wrong constant name tableize -# wrong constant name titlecase1 -# wrong constant name titlecase -# wrong constant name titleize1 -# wrong constant name titleize -# wrong constant name to -# wrong constant name to_date -# wrong constant name to_datetime -# wrong constant name to_nfc -# wrong constant name to_nfd -# wrong constant name to_nfkc -# wrong constant name to_nfkd -# wrong constant name to_time1 -# wrong constant name to_time -# wrong constant name toeuc -# wrong constant name tojis -# wrong constant name tolocale -# wrong constant name tosjis -# wrong constant name toutf16 -# wrong constant name toutf32 -# wrong constant name toutf8 -# wrong constant name truncate1 -# wrong constant name truncate -# wrong constant name truncate_bytes1 -# wrong constant name truncate_bytes -# wrong constant name truncate_words1 -# wrong constant name truncate_words -# wrong constant name underscore -# wrong constant name upcase_first -# wrong constant name bol? -# wrong constant name initialize -# wrong constant name -# wrong constant name filter -# uninitialized constant Struct::HTMLElementDescription::Elem -# wrong constant name attrs_depr -# wrong constant name attrs_depr= -# wrong constant name attrs_opt -# wrong constant name attrs_opt= -# wrong constant name attrs_req -# wrong constant name attrs_req= -# wrong constant name defaultsubelt -# wrong constant name defaultsubelt= -# wrong constant name depr -# wrong constant name depr= -# wrong constant name desc -# wrong constant name desc= -# wrong constant name dtd -# wrong constant name dtd= -# wrong constant name empty -# wrong constant name empty= -# wrong constant name endTag -# wrong constant name endTag= -# wrong constant name isinline -# wrong constant name isinline= -# wrong constant name name -# wrong constant name name= -# wrong constant name saveEndTag -# wrong constant name saveEndTag= -# wrong constant name startTag -# wrong constant name startTag= -# wrong constant name subelts -# wrong constant name subelts= -# wrong constant name -# wrong constant name [] -# wrong constant name members -# wrong constant name -# undefined method `generic_setup_build_environment1' for module `Superenv' -# uninitialized constant Superenv::CC_FLAG_VARS -# uninitialized constant Superenv::COMPILERS -# uninitialized constant Superenv::COMPILER_SYMBOL_MAP -# uninitialized constant Superenv::FC_FLAG_VARS -# uninitialized constant Superenv::GNU_GCC_REGEXP -# uninitialized constant Superenv::GNU_GCC_VERSIONS -# uninitialized constant Superenv::O0 -# uninitialized constant Superenv::O1 -# uninitialized constant Superenv::O2 -# uninitialized constant Superenv::O3 -# uninitialized constant Superenv::Os -# uninitialized constant Superenv::SANITIZED_VARS -# wrong constant name generic_setup_build_environment1 -# uninitialized constant Sync::EX -# uninitialized constant Sync::SH -# uninitialized constant Sync::UN -# wrong constant name initialize -# wrong constant name method_missing -# wrong constant name setup -# wrong constant name teardown -# wrong constant name -# uninitialized constant Syslog -# uninitialized constant Syslog -# wrong constant name must_succeed? -# wrong constant name print_stderr? -# wrong constant name print_stdout? -# wrong constant name sudo? -# wrong constant name verbose? -# wrong constant name T.noreturn -# wrong constant name T.noreturn -# wrong constant name T.untyped -# 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 _dump -# wrong constant name code -# wrong constant name eql? -# wrong constant name name -# wrong constant name zone_identifiers -# wrong constant name zone_info -# wrong constant name zone_names -# wrong constant name zones -# wrong constant name -# wrong constant name _load -# wrong constant name all -# wrong constant name all_codes -# wrong constant name data_source -# wrong constant name get -# wrong constant name init_countries -# wrong constant name new -# wrong constant name -# wrong constant name countries -# wrong constant name country -# wrong constant name -# wrong constant name -# wrong constant name append_features -# wrong constant name code -# wrong constant name initialize -# wrong constant name name -# wrong constant name zone_identifiers -# wrong constant name zones -# wrong constant name -# undefined method `initialize1' for class `TZInfo::CountryTimezone' -# wrong constant name == -# wrong constant name description -# wrong constant name description_or_friendly_identifier -# wrong constant name eql? -# wrong constant name identifier -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name latitude -# wrong constant name longitude -# wrong constant name timezone -# undefined singleton method `new1' for `TZInfo::CountryTimezone' -# wrong constant name -# wrong constant name new1 -# wrong constant name new -# wrong constant name new! -# wrong constant name country_codes -# wrong constant name data_timezone_identifiers -# wrong constant name linked_timezone_identifiers -# wrong constant name load_country_info -# wrong constant name load_timezone_info -# wrong constant name timezone_identifiers -# wrong constant name -# wrong constant name create_default_data_source -# wrong constant name get -# wrong constant name set -# wrong constant name -# wrong constant name -# undefined method `transitions_up_to1' for class `TZInfo::DataTimezoneInfo' -# wrong constant name period_for_utc -# wrong constant name periods_for_local -# wrong constant name transitions_up_to1 -# wrong constant name transitions_up_to -# wrong constant name -# wrong constant name info -# wrong constant name setup -# wrong constant name -# wrong constant name new -# 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 link_to_identifier -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name rational_for_offset -# wrong constant name -# undefined singleton method `datetime_new1' for `TZInfo::RubyCoreSupport' -# undefined singleton method `datetime_new2' for `TZInfo::RubyCoreSupport' -# undefined singleton method `datetime_new3' for `TZInfo::RubyCoreSupport' -# undefined singleton method `datetime_new4' for `TZInfo::RubyCoreSupport' -# undefined singleton method `datetime_new5' for `TZInfo::RubyCoreSupport' -# undefined singleton method `datetime_new6' for `TZInfo::RubyCoreSupport' -# undefined singleton method `datetime_new7' for `TZInfo::RubyCoreSupport' -# undefined singleton method `datetime_new8' for `TZInfo::RubyCoreSupport' -# undefined singleton method `datetime_new!1' for `TZInfo::RubyCoreSupport' -# undefined singleton method `datetime_new!2' for `TZInfo::RubyCoreSupport' -# undefined singleton method `datetime_new!3' for `TZInfo::RubyCoreSupport' -# undefined singleton method `rational_new!1' for `TZInfo::RubyCoreSupport' -# wrong constant name -# wrong constant name datetime_new1 -# wrong constant name datetime_new2 -# wrong constant name datetime_new3 -# wrong constant name datetime_new4 -# wrong constant name datetime_new5 -# wrong constant name datetime_new6 -# wrong constant name datetime_new7 -# wrong constant name datetime_new8 -# wrong constant name datetime_new -# wrong constant name datetime_new!1 -# wrong constant name datetime_new!2 -# wrong constant name datetime_new!3 -# wrong constant name datetime_new! -# wrong constant name force_encoding -# wrong constant name open_file -# wrong constant name rational_new!1 -# wrong constant name rational_new! -# wrong constant name time_nsec -# wrong constant name time_supports_64bit -# wrong constant name time_supports_negative -# wrong constant name -# wrong constant name initialize -# undefined method `timezone1' for class `TZInfo::RubyCountryInfo::Zones' -# wrong constant name list -# wrong constant name timezone1 -# wrong constant name timezone -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name + -# wrong constant name - -# wrong constant name <=> -# wrong constant name add_with_convert -# wrong constant name day -# wrong constant name eql? -# wrong constant name hour -# wrong constant name initialize -# wrong constant name mday -# wrong constant name min -# wrong constant name mon -# wrong constant name month -# wrong constant name sec -# wrong constant name to_datetime -# wrong constant name to_i -# wrong constant name to_orig -# wrong constant name to_time -# wrong constant name usec -# wrong constant name year -# wrong constant name -# wrong constant name wrap -# undefined method `friendly_identifier1' for class `TZInfo::Timezone' -# undefined method `local_to_utc1' for class `TZInfo::Timezone' -# undefined method `offsets_up_to1' for class `TZInfo::Timezone' -# undefined method `period_for_local1' for class `TZInfo::Timezone' -# undefined method `strftime1' for class `TZInfo::Timezone' -# undefined method `transitions_up_to1' for class `TZInfo::Timezone' -# wrong constant name <=> -# wrong constant name _dump -# wrong constant name canonical_identifier -# wrong constant name canonical_zone -# wrong constant name current_period -# wrong constant name current_period_and_time -# wrong constant name current_time_and_period -# wrong constant name eql? -# wrong constant name friendly_identifier1 -# wrong constant name friendly_identifier -# wrong constant name identifier -# wrong constant name local_to_utc1 -# wrong constant name local_to_utc -# wrong constant name name -# wrong constant name now -# wrong constant name offsets_up_to1 -# wrong constant name offsets_up_to -# wrong constant name period_for_local1 -# wrong constant name period_for_local -# wrong constant name period_for_utc -# wrong constant name periods_for_local -# wrong constant name strftime1 -# wrong constant name strftime -# wrong constant name transitions_up_to1 -# wrong constant name transitions_up_to -# wrong constant name utc_to_local -# undefined singleton method `new1' for `TZInfo::Timezone' -# wrong constant name -# wrong constant name _load -# wrong constant name all -# wrong constant name all_country_zone_identifiers -# wrong constant name all_country_zones -# wrong constant name all_data_zone_identifiers -# wrong constant name all_data_zones -# wrong constant name all_identifiers -# wrong constant name all_linked_zone_identifiers -# wrong constant name all_linked_zones -# wrong constant name data_source -# wrong constant name default_dst -# wrong constant name default_dst= -# wrong constant name get -# wrong constant name get_proxies -# wrong constant name get_proxy -# wrong constant name init_loaded_zones -# wrong constant name new1 -# wrong constant name new -# wrong constant name us_zone_identifiers -# wrong constant name us_zones -# wrong constant name -# wrong constant name get -# wrong constant name linked_timezone -# wrong constant name timezone -# wrong constant name -# wrong constant name -# wrong constant name append_features -# wrong constant name -# wrong constant name data_timezones -# wrong constant name linked_timezone -# wrong constant name linked_timezones -# wrong constant name timezone -# wrong constant name timezones -# wrong constant name -# wrong constant name -# wrong constant name append_features -# wrong constant name create_timezone -# wrong constant name identifier -# wrong constant name initialize -# wrong constant name -# wrong constant name == -# wrong constant name abbreviation -# wrong constant name dst? -# wrong constant name eql? -# wrong constant name initialize -# wrong constant name std_offset -# wrong constant name to_local -# wrong constant name to_utc -# wrong constant name utc_offset -# wrong constant name utc_total_offset -# wrong constant name -# undefined method `initialize1' for class `TZInfo::TimezonePeriod' -# wrong constant name == -# wrong constant name abbreviation -# wrong constant name dst? -# wrong constant name end_transition -# wrong constant name eql? -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name local_after_start? -# wrong constant name local_before_end? -# wrong constant name local_end -# wrong constant name local_end_time -# wrong constant name local_start -# wrong constant name local_start_time -# wrong constant name offset -# wrong constant name start_transition -# wrong constant name std_offset -# wrong constant name to_local -# wrong constant name to_utc -# wrong constant name utc_after_start? -# wrong constant name utc_before_end? -# wrong constant name utc_end -# wrong constant name utc_end_time -# wrong constant name utc_offset -# wrong constant name utc_start -# wrong constant name utc_start_time -# wrong constant name utc_total_offset -# wrong constant name utc_total_offset_rational -# wrong constant name valid_for_local? -# wrong constant name valid_for_utc? -# wrong constant name zone_identifier -# wrong constant name -# undefined method `transitions_up_to1' for class `TZInfo::TimezoneProxy' -# wrong constant name transitions_up_to1 -# wrong constant name transitions_up_to -# wrong constant name -# wrong constant name new -# wrong constant name == -# wrong constant name at -# wrong constant name datetime -# wrong constant name eql? -# wrong constant name initialize -# wrong constant name local_end -# wrong constant name local_end_at -# wrong constant name local_end_time -# wrong constant name local_start -# wrong constant name local_start_at -# wrong constant name local_start_time -# wrong constant name offset -# wrong constant name previous_offset -# wrong constant name time -# wrong constant name -# undefined method `initialize1' for class `TZInfo::TimezoneTransitionDefinition' -# undefined method `initialize2' for class `TZInfo::TimezoneTransitionDefinition' -# wrong constant name denominator -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name numerator_or_time -# wrong constant name -# undefined method `transition1' for class `TZInfo::TransitionDataTimezoneInfo' -# undefined method `transition2' for class `TZInfo::TransitionDataTimezoneInfo' -# wrong constant name offset -# wrong constant name transition1 -# wrong constant name transition2 -# wrong constant name transition -# wrong constant name -# wrong constant name -# wrong constant name initialize -# wrong constant name -# undefined method `initialize1' for class `TZInfo::ZoneinfoDataSource' -# undefined method `initialize2' for class `TZInfo::ZoneinfoDataSource' -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name zoneinfo_dir -# wrong constant name -# wrong constant name alternate_iso3166_tab_search_path -# wrong constant name alternate_iso3166_tab_search_path= -# wrong constant name process_search_path -# wrong constant name search_path -# wrong constant name search_path= -# wrong constant name -# 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 -# uninitialized constant Tapioca::Cli::Correctable -# uninitialized constant Tapioca::Cli::HELP_MAPPINGS -# uninitialized constant Tapioca::Cli::SHELL_DELEGATED_METHODS -# uninitialized constant Tapioca::Cli::TEMPLATE_EXTNAME -# uninitialized constant Tapioca::Cli::THOR_RESERVED_WORDS -# uninitialized constant Tapioca::Cli::WARNINGS -# wrong constant name generate -# wrong constant name generator -# wrong constant name init -# wrong constant name sync -# wrong constant name todo -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name run -# wrong constant name sorbet_path -# wrong constant name -# wrong constant name -# wrong constant name gem -# wrong constant name generate -# wrong constant name indent -# wrong constant name initialize -# wrong constant name -# wrong constant name -# undefined singleton method `parse1' for `Tapioca::Compilers::SymbolTable::SymbolLoader::SymbolTableParser' -# wrong constant name -# wrong constant name parse1 -# wrong constant name parse -# wrong constant name -# wrong constant name ignore_symbol? -# wrong constant name list_from_paths -# wrong constant name -# wrong constant name compile -# wrong constant name -# wrong constant name compile -# wrong constant name -# wrong constant name -# wrong constant name exclude -# wrong constant name generate_command -# wrong constant name initialize -# wrong constant name outdir -# wrong constant name outpath -# wrong constant name postrequire -# wrong constant name prerequire -# wrong constant name todos_path -# wrong constant name typed_overrides -# wrong constant name -# wrong constant name inherited -# wrong constant name -# wrong constant name from_options -# wrong constant name -# wrong constant name files_for -# wrong constant name -# wrong constant name -# wrong constant name dependencies -# wrong constant name gem -# wrong constant name initialize -# wrong constant name require -# wrong constant name contains_path? -# wrong constant name files -# wrong constant name full_gem_path -# wrong constant name ignore? -# wrong constant name initialize -# wrong constant name name -# wrong constant name rbi_file_name -# wrong constant name version -# wrong constant name -# wrong constant name -# uninitialized constant Tapioca::Generator::BLACK -# uninitialized constant Tapioca::Generator::BLUE -# uninitialized constant Tapioca::Generator::BOLD -# uninitialized constant Tapioca::Generator::CLEAR -# uninitialized constant Tapioca::Generator::CYAN -# uninitialized constant Tapioca::Generator::DEFAULT_TERMINAL_WIDTH -# uninitialized constant Tapioca::Generator::GREEN -# uninitialized constant Tapioca::Generator::MAGENTA -# uninitialized constant Tapioca::Generator::ON_BLACK -# uninitialized constant Tapioca::Generator::ON_BLUE -# uninitialized constant Tapioca::Generator::ON_CYAN -# uninitialized constant Tapioca::Generator::ON_GREEN -# uninitialized constant Tapioca::Generator::ON_MAGENTA -# uninitialized constant Tapioca::Generator::ON_RED -# uninitialized constant Tapioca::Generator::ON_WHITE -# uninitialized constant Tapioca::Generator::ON_YELLOW -# uninitialized constant Tapioca::Generator::RED -# uninitialized constant Tapioca::Generator::WHITE -# uninitialized constant Tapioca::Generator::YELLOW -# wrong constant name build_gem_rbis -# wrong constant name build_todos -# wrong constant name config -# wrong constant name initialize -# wrong constant name sync_rbis_with_gemfile -# wrong constant name -# wrong constant name initialize -# wrong constant name load_bundle -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name _close -# wrong constant name inspect -# wrong constant name call -# wrong constant name initialize -# wrong constant name -# wrong constant name -# undefined method `black1' for module `Term::ANSIColor' -# undefined method `blink1' for module `Term::ANSIColor' -# undefined method `blue1' for module `Term::ANSIColor' -# undefined method `bold1' for module `Term::ANSIColor' -# undefined method `bright_black1' for module `Term::ANSIColor' -# undefined method `bright_blue1' for module `Term::ANSIColor' -# undefined method `bright_cyan1' for module `Term::ANSIColor' -# undefined method `bright_green1' for module `Term::ANSIColor' -# undefined method `bright_magenta1' for module `Term::ANSIColor' -# undefined method `bright_red1' for module `Term::ANSIColor' -# undefined method `bright_white1' for module `Term::ANSIColor' -# undefined method `bright_yellow1' for module `Term::ANSIColor' -# undefined method `clear1' for module `Term::ANSIColor' -# undefined method `color1' for module `Term::ANSIColor' -# undefined method `conceal1' for module `Term::ANSIColor' -# undefined method `concealed1' for module `Term::ANSIColor' -# undefined method `cyan1' for module `Term::ANSIColor' -# undefined method `dark1' for module `Term::ANSIColor' -# undefined method `faint1' for module `Term::ANSIColor' -# undefined method `green1' for module `Term::ANSIColor' -# undefined method `intense_black1' for module `Term::ANSIColor' -# undefined method `intense_blue1' for module `Term::ANSIColor' -# undefined method `intense_cyan1' for module `Term::ANSIColor' -# undefined method `intense_green1' for module `Term::ANSIColor' -# undefined method `intense_magenta1' for module `Term::ANSIColor' -# undefined method `intense_red1' for module `Term::ANSIColor' -# undefined method `intense_white1' for module `Term::ANSIColor' -# undefined method `intense_yellow1' for module `Term::ANSIColor' -# undefined method `italic1' for module `Term::ANSIColor' -# undefined method `magenta1' for module `Term::ANSIColor' -# undefined method `negative1' for module `Term::ANSIColor' -# undefined method `on_black1' for module `Term::ANSIColor' -# undefined method `on_blue1' for module `Term::ANSIColor' -# undefined method `on_bright_black1' for module `Term::ANSIColor' -# undefined method `on_bright_blue1' for module `Term::ANSIColor' -# undefined method `on_bright_cyan1' for module `Term::ANSIColor' -# undefined method `on_bright_green1' for module `Term::ANSIColor' -# undefined method `on_bright_magenta1' for module `Term::ANSIColor' -# undefined method `on_bright_red1' for module `Term::ANSIColor' -# undefined method `on_bright_white1' for module `Term::ANSIColor' -# undefined method `on_bright_yellow1' for module `Term::ANSIColor' -# undefined method `on_color1' for module `Term::ANSIColor' -# undefined method `on_cyan1' for module `Term::ANSIColor' -# undefined method `on_green1' for module `Term::ANSIColor' -# undefined method `on_intense_black1' for module `Term::ANSIColor' -# undefined method `on_intense_blue1' for module `Term::ANSIColor' -# undefined method `on_intense_cyan1' for module `Term::ANSIColor' -# undefined method `on_intense_green1' for module `Term::ANSIColor' -# undefined method `on_intense_magenta1' for module `Term::ANSIColor' -# undefined method `on_intense_red1' for module `Term::ANSIColor' -# undefined method `on_intense_white1' for module `Term::ANSIColor' -# undefined method `on_intense_yellow1' for module `Term::ANSIColor' -# undefined method `on_magenta1' for module `Term::ANSIColor' -# undefined method `on_red1' for module `Term::ANSIColor' -# undefined method `on_white1' for module `Term::ANSIColor' -# undefined method `on_yellow1' for module `Term::ANSIColor' -# undefined method `rapid_blink1' for module `Term::ANSIColor' -# undefined method `red1' for module `Term::ANSIColor' -# undefined method `reset1' for module `Term::ANSIColor' -# undefined method `reverse1' for module `Term::ANSIColor' -# undefined method `strikethrough1' for module `Term::ANSIColor' -# undefined method `uncolor1' for module `Term::ANSIColor' -# undefined method `uncolored1' for module `Term::ANSIColor' -# undefined method `underline1' for module `Term::ANSIColor' -# undefined method `underscore1' for module `Term::ANSIColor' -# undefined method `white1' for module `Term::ANSIColor' -# undefined method `yellow1' for module `Term::ANSIColor' -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name attributes -# wrong constant name black1 -# wrong constant name black -# wrong constant name blink1 -# wrong constant name blink -# wrong constant name blue1 -# wrong constant name blue -# wrong constant name bold1 -# wrong constant name bold -# wrong constant name bright_black1 -# wrong constant name bright_black -# wrong constant name bright_blue1 -# wrong constant name bright_blue -# wrong constant name bright_cyan1 -# wrong constant name bright_cyan -# wrong constant name bright_green1 -# wrong constant name bright_green -# wrong constant name bright_magenta1 -# wrong constant name bright_magenta -# wrong constant name bright_red1 -# wrong constant name bright_red -# wrong constant name bright_white1 -# wrong constant name bright_white -# wrong constant name bright_yellow1 -# wrong constant name bright_yellow -# wrong constant name clear1 -# wrong constant name clear -# wrong constant name color1 -# wrong constant name color -# wrong constant name conceal1 -# wrong constant name conceal -# wrong constant name concealed1 -# wrong constant name concealed -# wrong constant name cyan1 -# wrong constant name cyan -# wrong constant name dark1 -# wrong constant name dark -# wrong constant name faint1 -# wrong constant name faint -# wrong constant name green1 -# wrong constant name green -# wrong constant name intense_black1 -# wrong constant name intense_black -# wrong constant name intense_blue1 -# wrong constant name intense_blue -# wrong constant name intense_cyan1 -# wrong constant name intense_cyan -# wrong constant name intense_green1 -# wrong constant name intense_green -# wrong constant name intense_magenta1 -# wrong constant name intense_magenta -# wrong constant name intense_red1 -# wrong constant name intense_red -# wrong constant name intense_white1 -# wrong constant name intense_white -# wrong constant name intense_yellow1 -# wrong constant name intense_yellow -# wrong constant name italic1 -# wrong constant name italic -# wrong constant name magenta1 -# wrong constant name magenta -# wrong constant name negative1 -# wrong constant name negative -# wrong constant name on_black1 -# wrong constant name on_black -# wrong constant name on_blue1 -# wrong constant name on_blue -# wrong constant name on_bright_black1 -# wrong constant name on_bright_black -# wrong constant name on_bright_blue1 -# wrong constant name on_bright_blue -# wrong constant name on_bright_cyan1 -# wrong constant name on_bright_cyan -# wrong constant name on_bright_green1 -# wrong constant name on_bright_green -# wrong constant name on_bright_magenta1 -# wrong constant name on_bright_magenta -# wrong constant name on_bright_red1 -# wrong constant name on_bright_red -# wrong constant name on_bright_white1 -# wrong constant name on_bright_white -# wrong constant name on_bright_yellow1 -# wrong constant name on_bright_yellow -# wrong constant name on_color1 -# wrong constant name on_color -# wrong constant name on_cyan1 -# wrong constant name on_cyan -# wrong constant name on_green1 -# wrong constant name on_green -# wrong constant name on_intense_black1 -# wrong constant name on_intense_black -# wrong constant name on_intense_blue1 -# wrong constant name on_intense_blue -# wrong constant name on_intense_cyan1 -# wrong constant name on_intense_cyan -# wrong constant name on_intense_green1 -# wrong constant name on_intense_green -# wrong constant name on_intense_magenta1 -# wrong constant name on_intense_magenta -# wrong constant name on_intense_red1 -# wrong constant name on_intense_red -# wrong constant name on_intense_white1 -# wrong constant name on_intense_white -# wrong constant name on_intense_yellow1 -# wrong constant name on_intense_yellow -# wrong constant name on_magenta1 -# wrong constant name on_magenta -# wrong constant name on_red1 -# wrong constant name on_red -# wrong constant name on_white1 -# wrong constant name on_white -# wrong constant name on_yellow1 -# wrong constant name on_yellow -# wrong constant name rapid_blink1 -# wrong constant name rapid_blink -# wrong constant name red1 -# wrong constant name red -# wrong constant name reset1 -# wrong constant name reset -# wrong constant name reverse1 -# wrong constant name reverse -# wrong constant name strikethrough1 -# wrong constant name strikethrough -# wrong constant name support? -# wrong constant name term_ansicolor_attributes -# wrong constant name uncolor1 -# wrong constant name uncolor -# wrong constant name uncolored1 -# wrong constant name uncolored -# wrong constant name underline1 -# wrong constant name underline -# wrong constant name underscore1 -# wrong constant name underscore -# wrong constant name white1 -# wrong constant name white -# wrong constant name yellow1 -# wrong constant name yellow -# undefined method `apply1' for class `Term::ANSIColor::Attribute' -# undefined method `distance_to1' for class `Term::ANSIColor::Attribute' -# undefined method `gradient_to1' for class `Term::ANSIColor::Attribute' -# undefined method `initialize1' for class `Term::ANSIColor::Attribute' -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name apply1 -# wrong constant name apply -# wrong constant name background? -# wrong constant name code -# wrong constant name distance_to1 -# wrong constant name distance_to -# wrong constant name gradient_to1 -# wrong constant name gradient_to -# wrong constant name gray? -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name name -# wrong constant name rgb -# wrong constant name rgb_color? -# wrong constant name to_rgb_triple -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# undefined singleton method `nearest_rgb_color1' for `Term::ANSIColor::Attribute' -# undefined singleton method `nearest_rgb_on_color1' for `Term::ANSIColor::Attribute' -# undefined singleton method `rgb_colors1' for `Term::ANSIColor::Attribute' -# undefined singleton method `set1' for `Term::ANSIColor::Attribute' -# wrong constant name -# wrong constant name [] -# wrong constant name attributes -# wrong constant name get -# wrong constant name named_attributes -# wrong constant name nearest_rgb_color1 -# wrong constant name nearest_rgb_color -# wrong constant name nearest_rgb_on_color1 -# wrong constant name nearest_rgb_on_color -# wrong constant name rgb_colors1 -# wrong constant name rgb_colors -# wrong constant name set1 -# wrong constant name set -# wrong constant name == -# wrong constant name adjust_hue -# wrong constant name complement -# wrong constant name css -# wrong constant name darken -# wrong constant name desaturate -# wrong constant name grayscale -# wrong constant name hue -# wrong constant name initialize -# wrong constant name lighten -# wrong constant name lightness -# wrong constant name method_missing -# wrong constant name saturate -# wrong constant name saturation -# wrong constant name to_hsl_triple -# wrong constant name to_rgb_triple -# wrong constant name -# wrong constant name [] -# wrong constant name from_css -# wrong constant name from_hash -# wrong constant name from_rgb_triple -# undefined method `clear_screen1' for module `Term::ANSIColor::Movement' -# undefined method `erase_in_display1' for module `Term::ANSIColor::Movement' -# undefined method `erase_in_display2' for module `Term::ANSIColor::Movement' -# undefined method `erase_in_line1' for module `Term::ANSIColor::Movement' -# undefined method `erase_in_line2' for module `Term::ANSIColor::Movement' -# undefined method `hide_cursor1' for module `Term::ANSIColor::Movement' -# undefined method `move_backward1' for module `Term::ANSIColor::Movement' -# undefined method `move_backward2' for module `Term::ANSIColor::Movement' -# undefined method `move_down1' for module `Term::ANSIColor::Movement' -# undefined method `move_down2' for module `Term::ANSIColor::Movement' -# undefined method `move_forward1' for module `Term::ANSIColor::Movement' -# undefined method `move_forward2' for module `Term::ANSIColor::Movement' -# undefined method `move_home1' for module `Term::ANSIColor::Movement' -# undefined method `move_to1' for module `Term::ANSIColor::Movement' -# undefined method `move_to2' for module `Term::ANSIColor::Movement' -# undefined method `move_to3' for module `Term::ANSIColor::Movement' -# undefined method `move_to_column1' for module `Term::ANSIColor::Movement' -# undefined method `move_to_column2' for module `Term::ANSIColor::Movement' -# undefined method `move_to_line1' for module `Term::ANSIColor::Movement' -# undefined method `move_to_line2' for module `Term::ANSIColor::Movement' -# undefined method `move_to_next_line1' for module `Term::ANSIColor::Movement' -# undefined method `move_to_next_line2' for module `Term::ANSIColor::Movement' -# undefined method `move_to_previous_line1' for module `Term::ANSIColor::Movement' -# undefined method `move_to_previous_line2' for module `Term::ANSIColor::Movement' -# undefined method `move_up1' for module `Term::ANSIColor::Movement' -# undefined method `move_up2' for module `Term::ANSIColor::Movement' -# undefined method `restore_position1' for module `Term::ANSIColor::Movement' -# undefined method `return_to_position1' for module `Term::ANSIColor::Movement' -# undefined method `save_position1' for module `Term::ANSIColor::Movement' -# undefined method `scroll_down1' for module `Term::ANSIColor::Movement' -# undefined method `scroll_down2' for module `Term::ANSIColor::Movement' -# undefined method `scroll_up1' for module `Term::ANSIColor::Movement' -# undefined method `scroll_up2' for module `Term::ANSIColor::Movement' -# undefined method `show_cursor1' for module `Term::ANSIColor::Movement' -# wrong constant name clear_screen1 -# wrong constant name clear_screen -# wrong constant name erase_in_display1 -# wrong constant name erase_in_display2 -# wrong constant name erase_in_display -# wrong constant name erase_in_line1 -# wrong constant name erase_in_line2 -# wrong constant name erase_in_line -# wrong constant name hide_cursor1 -# wrong constant name hide_cursor -# wrong constant name move_backward1 -# wrong constant name move_backward2 -# wrong constant name move_backward -# wrong constant name move_down1 -# wrong constant name move_down2 -# wrong constant name move_down -# wrong constant name move_forward1 -# wrong constant name move_forward2 -# wrong constant name move_forward -# wrong constant name move_home1 -# wrong constant name move_home -# wrong constant name move_to1 -# wrong constant name move_to2 -# wrong constant name move_to3 -# wrong constant name move_to -# wrong constant name move_to_column1 -# wrong constant name move_to_column2 -# wrong constant name move_to_column -# wrong constant name move_to_line1 -# wrong constant name move_to_line2 -# wrong constant name move_to_line -# wrong constant name move_to_next_line1 -# wrong constant name move_to_next_line2 -# wrong constant name move_to_next_line -# wrong constant name move_to_previous_line1 -# wrong constant name move_to_previous_line2 -# wrong constant name move_to_previous_line -# wrong constant name move_up1 -# wrong constant name move_up2 -# wrong constant name move_up -# wrong constant name restore_position1 -# wrong constant name restore_position -# wrong constant name return_to_position1 -# wrong constant name return_to_position -# wrong constant name save_position1 -# wrong constant name save_position -# wrong constant name scroll_down1 -# wrong constant name scroll_down2 -# wrong constant name scroll_down -# wrong constant name scroll_up1 -# wrong constant name scroll_up2 -# wrong constant name scroll_up -# wrong constant name show_cursor1 -# wrong constant name show_cursor -# wrong constant name terminal_columns -# wrong constant name terminal_lines -# wrong constant name -# undefined method `initialize1' for class `Term::ANSIColor::PPMReader' -# uninitialized constant Term::ANSIColor::PPMReader::ATTRIBUTE_NAMES -# uninitialized constant Term::ANSIColor::PPMReader::COLORED_REGEXP -# uninitialized constant Term::ANSIColor::PPMReader::VERSION -# uninitialized constant Term::ANSIColor::PPMReader::VERSION_ARRAY -# uninitialized constant Term::ANSIColor::PPMReader::VERSION_BUILD -# uninitialized constant Term::ANSIColor::PPMReader::VERSION_MAJOR -# uninitialized constant Term::ANSIColor::PPMReader::VERSION_MINOR -# wrong constant name each_row -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name reset_io -# wrong constant name to_a -# 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 from_rgb_triple -# wrong constant name -# wrong constant name distance -# wrong constant name -# wrong constant name -# wrong constant name from_rgb_triple -# wrong constant name -# wrong constant name distance -# wrong constant name -# wrong constant name distance -# wrong constant name -# wrong constant name distance -# wrong constant name -# wrong constant name distance -# wrong constant name -# wrong constant name -# wrong constant name from_rgb_triple -# wrong constant name -# wrong constant name distance -# wrong constant name -# wrong constant name metric -# wrong constant name metric? -# wrong constant name metrics -# wrong constant name -# wrong constant name -# wrong constant name -# undefined method `weighted_euclidean_distance_to1' for module `#' -# wrong constant name weighted_euclidean_distance_to1 -# wrong constant name weighted_euclidean_distance_to -# wrong constant name -# wrong constant name -# undefined method `css1' for class `Term::ANSIColor::RGBTriple' -# undefined method `distance_to1' for class `Term::ANSIColor::RGBTriple' -# undefined method `gradient_to1' for class `Term::ANSIColor::RGBTriple' -# wrong constant name == -# wrong constant name blue -# wrong constant name blue_p -# wrong constant name color -# wrong constant name css1 -# wrong constant name css -# wrong constant name distance_to1 -# wrong constant name distance_to -# wrong constant name gradient_to1 -# wrong constant name gradient_to -# wrong constant name gray? -# wrong constant name green -# wrong constant name green_p -# wrong constant name html -# wrong constant name initialize -# wrong constant name invert -# wrong constant name method_missing -# wrong constant name percentages -# wrong constant name red -# wrong constant name red_p -# wrong constant name to_a -# wrong constant name to_hsl_triple -# wrong constant name to_rgb_triple -# wrong constant name values -# wrong constant name -# wrong constant name [] -# wrong constant name from_array -# wrong constant name from_css -# wrong constant name from_hash -# wrong constant name from_html -# wrong constant name -# wrong constant name coloring= -# wrong constant name coloring? -# wrong constant name create_color_method -# wrong constant name -# wrong constant name banner -# wrong constant name self_command -# wrong constant name self_task -# undefined singleton method `banner1' for `Thor' -# undefined singleton method `banner2' for `Thor' -# wrong constant name banner1 -# wrong constant name banner2 -# wrong constant name banner -# wrong constant name disable_required_check -# wrong constant name dispatch -# wrong constant name dynamic_command_class -# wrong constant name find_command_possibilities -# wrong constant name find_task_possibilities -# wrong constant name normalize_command_name -# wrong constant name normalize_task_name -# wrong constant name retrieve_command_name -# wrong constant name retrieve_task_name -# wrong constant name stop_on_unknown_option -# wrong constant name subcommand_help -# wrong constant name subtask_help -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# undefined method `get_or_default1' for class `ThreadSafe::AtomicReferenceCacheBackend' -# undefined method `initialize1' for class `ThreadSafe::AtomicReferenceCacheBackend' -# wrong constant name -# wrong constant name -# wrong constant name [] -# wrong constant name []= -# wrong constant name clear -# wrong constant name compute -# wrong constant name compute_if_absent -# wrong constant name compute_if_present -# wrong constant name delete -# wrong constant name delete_pair -# wrong constant name each_pair -# wrong constant name empty? -# wrong constant name get_and_set -# wrong constant name get_or_default1 -# wrong constant name get_or_default -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name key? -# wrong constant name merge_pair -# wrong constant name replace_if_exists -# wrong constant name replace_pair -# wrong constant name size -# undefined method `initialize1' for class `ThreadSafe::AtomicReferenceCacheBackend::Node' -# undefined method `try_lock_via_hash1' for class `ThreadSafe::AtomicReferenceCacheBackend::Node' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name key -# wrong constant name key? -# wrong constant name locked? -# wrong constant name matches? -# wrong constant name pure_hash -# wrong constant name try_await_lock -# wrong constant name try_lock_via_hash1 -# wrong constant name try_lock_via_hash -# wrong constant name unlock_via_hash -# wrong constant name -# wrong constant name locked_hash? -# uninitialized constant ThreadSafe::AtomicReferenceCacheBackend::Table::Elem -# wrong constant name cas_new_node -# wrong constant name delete_node_at -# wrong constant name try_lock_via_hash -# wrong constant name try_to_cas_in_computed -# wrong constant name -# wrong constant name -# undefined method `fetch1' for class `ThreadSafe::Cache' -# undefined method `fetch_or_store1' for class `ThreadSafe::Cache' -# undefined method `initialize1' for class `ThreadSafe::Cache' -# uninitialized constant ThreadSafe::Cache::WRITE_LOCK -# wrong constant name each_key -# wrong constant name each_value -# wrong constant name empty? -# wrong constant name fetch1 -# wrong constant name fetch -# wrong constant name fetch_or_store1 -# wrong constant name fetch_or_store -# wrong constant name get -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name key -# wrong constant name keys -# wrong constant name marshal_dump -# wrong constant name marshal_load -# wrong constant name put -# wrong constant name put_if_absent -# wrong constant name values -# wrong constant name -# wrong constant name -# undefined method `initialize1' for class `ThreadSafe::NonConcurrentCacheBackend' -# wrong constant name [] -# wrong constant name []= -# wrong constant name clear -# wrong constant name compute -# wrong constant name compute_if_absent -# wrong constant name compute_if_present -# wrong constant name delete -# wrong constant name delete_pair -# wrong constant name each_pair -# wrong constant name get_and_set -# wrong constant name get_or_default -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name key? -# wrong constant name merge_pair -# wrong constant name replace_if_exists -# wrong constant name replace_pair -# wrong constant name size -# wrong constant name value? -# wrong constant name -# uninitialized constant ThreadSafe::SynchronizedCacheBackend::VERSION -# wrong constant name lock -# wrong constant name locked? -# wrong constant name synchronize -# wrong constant name try_lock -# wrong constant name unlock -# 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 -# uninitialized constant ThreadSafe::Util::Adder::THREAD_LOCAL_KEY -# wrong constant name add -# wrong constant name decrement -# wrong constant name increment -# wrong constant name reset -# wrong constant name sum -# wrong constant name -# undefined method `initialize1' for class `ThreadSafe::Util::FullLockingAtomicReference' -# wrong constant name compare_and_set -# wrong constant name get -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name set -# wrong constant name value -# wrong constant name value= -# wrong constant name -# wrong constant name cas_mutex -# wrong constant name compare_and_set_mutex -# wrong constant name lazy_set_mutex -# wrong constant name mutex -# wrong constant name mutex= -# wrong constant name -# uninitialized constant ThreadSafe::Util::PowerOfTwoTuple::Elem -# wrong constant name hash_to_index -# wrong constant name next_in_size_table -# wrong constant name volatile_get_by_hash -# wrong constant name volatile_set_by_hash -# wrong constant name -# wrong constant name -# wrong constant name busy? -# wrong constant name initialize -# wrong constant name retry_update -# wrong constant name cas -# wrong constant name cas_computed -# wrong constant name padding_ -# wrong constant name -# wrong constant name -# wrong constant name attr_volatile -# wrong constant name -# uninitialized constant ThreadSafe::Util::VolatileTuple::Elem -# wrong constant name cas -# wrong constant name compare_and_set -# wrong constant name each -# wrong constant name initialize -# wrong constant name size -# wrong constant name volatile_get -# wrong constant name volatile_set -# wrong constant name -# wrong constant name get -# wrong constant name xorshift -# wrong constant name -# wrong constant name -# wrong constant name -# uninitialized constant ThreadsWait -# uninitialized constant ThreadsWait -# wrong constant name -# wrong constant name const_missing -# undefined method `formatted_offset1' for class `Time' -# undefined method `formatted_offset2' for class `Time' -# undefined method `next_day1' for class `Time' -# undefined method `next_month1' for class `Time' -# undefined method `next_year1' for class `Time' -# undefined method `prev_day1' for class `Time' -# undefined method `prev_month1' for class `Time' -# undefined method `prev_year1' for class `Time' -# undefined method `rfc33391' for class `Time' -# undefined method `to_formatted_s1' for class `Time' -# undefined method `to_s1' for class `Time' -# uninitialized constant Time::DAYS_INTO_WEEK -# uninitialized constant Time::WEEKEND_DAYS -# wrong constant name acts_like_time? -# wrong constant name advance -# wrong constant name ago -# wrong constant name at_beginning_of_day -# wrong constant name at_beginning_of_hour -# wrong constant name at_beginning_of_minute -# wrong constant name at_end_of_day -# wrong constant name at_end_of_hour -# wrong constant name at_end_of_minute -# wrong constant name at_midday -# wrong constant name at_middle_of_day -# wrong constant name at_midnight -# wrong constant name at_noon -# wrong constant name beginning_of_day -# wrong constant name beginning_of_hour -# wrong constant name beginning_of_minute -# wrong constant name change -# wrong constant name compare_with_coercion -# wrong constant name compare_without_coercion -# wrong constant name end_of_day -# wrong constant name end_of_hour -# wrong constant name end_of_minute -# wrong constant name eql_with_coercion -# wrong constant name eql_without_coercion -# wrong constant name formatted_offset1 -# wrong constant name formatted_offset2 -# wrong constant name formatted_offset -# wrong constant name in -# wrong constant name midday -# wrong constant name middle_of_day -# wrong constant name midnight -# wrong constant name minus_with_coercion -# wrong constant name minus_with_duration -# wrong constant name minus_without_coercion -# wrong constant name minus_without_duration -# wrong constant name next_day1 -# wrong constant name next_day -# wrong constant name next_month1 -# wrong constant name next_month -# wrong constant name next_year1 -# wrong constant name next_year -# wrong constant name noon -# wrong constant name plus_with_duration -# wrong constant name plus_without_duration -# wrong constant name prev_day1 -# wrong constant name prev_day -# wrong constant name prev_month1 -# wrong constant name prev_month -# wrong constant name prev_year1 -# wrong constant name prev_year -# wrong constant name rfc33391 -# wrong constant name rfc3339 -# wrong constant name sec_fraction -# wrong constant name seconds_since_midnight -# wrong constant name seconds_until_end_of_day -# wrong constant name since -# wrong constant name to_default_s -# wrong constant name to_formatted_s1 -# wrong constant name to_formatted_s -# wrong constant name to_s1 -# undefined singleton method `days_in_month1' for `Time' -# undefined singleton method `days_in_year1' for `Time' -# undefined singleton method `zone_offset1' for `Time' -# wrong constant name === -# wrong constant name at_with_coercion -# wrong constant name at_without_coercion -# wrong constant name current -# wrong constant name days_in_month1 -# wrong constant name days_in_month -# wrong constant name days_in_year1 -# wrong constant name days_in_year -# wrong constant name find_zone -# wrong constant name find_zone! -# wrong constant name rfc3339 -# wrong constant name use_zone -# wrong constant name zone -# wrong constant name zone= -# wrong constant name zone_default -# wrong constant name zone_default= -# wrong constant name zone_offset1 -# 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 -# 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 annotate -# wrong constant name -# undefined method `attempt1' for module `Tins::Attempt' -# wrong constant name attempt1 -# wrong constant name attempt -# wrong constant name -# undefined method `initialize1' for class `Tins::Bijection' -# uninitialized constant Tins::Bijection::DEFAULT_INDENT -# uninitialized constant Tins::Bijection::Elem -# uninitialized constant Tins::Bijection::K -# uninitialized constant Tins::Bijection::V -# wrong constant name []= -# wrong constant name fill -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name inverted -# 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 included -# wrong constant name blank? -# wrong constant name -# wrong constant name -# wrong constant name included -# wrong constant name blank? -# wrong constant name -# wrong constant name blank? -# wrong constant name -# wrong constant name blank? -# wrong constant name present? -# wrong constant name -# wrong constant name blank? -# wrong constant name -# wrong constant name blank? -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name with -# wrong constant name -# wrong constant name block_self -# wrong constant name case? -# wrong constant name -# wrong constant name class_attr_accessor -# wrong constant name class_attr_reader -# wrong constant name class_attr_writer -# wrong constant name class_define_method -# wrong constant name -# undefined singleton method `complete1' for `Tins::Complete' -# undefined singleton method `complete2' for `Tins::Complete' -# wrong constant name -# wrong constant name complete1 -# wrong constant name complete2 -# wrong constant name complete -# undefined method `included1' for module `Tins::Concern' -# wrong constant name append_features -# wrong constant name included1 -# wrong constant name included -# wrong constant name -# wrong constant name extended -# undefined method `constant1' for module `Tins::Constant' -# wrong constant name constant1 -# wrong constant name constant -# wrong constant name -# wrong constant name const_missing -# wrong constant name -# wrong constant name count_by -# wrong constant name -# wrong constant name dsl_accessor -# wrong constant name dsl_reader -# wrong constant name -# wrong constant name -# wrong constant name included -# wrong constant name -# wrong constant name included -# undefined method `deep_const_get1' for module `Tins::DeepConstGet' -# wrong constant name deep_const_get1 -# wrong constant name deep_const_get -# undefined singleton method `deep_const_get1' for `Tins::DeepConstGet' -# wrong constant name -# wrong constant name const_defined_in? -# wrong constant name deep_const_get1 -# wrong constant name deep_const_get -# wrong constant name deep_dup -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name deflect -# wrong constant name deflect? -# wrong constant name deflect_start -# wrong constant name deflect_stop -# wrong constant name -# wrong constant name -# wrong constant name add -# wrong constant name delete -# wrong constant name find -# wrong constant name member? -# wrong constant name -# wrong constant name -# wrong constant name deflect? -# wrong constant name deflecting -# wrong constant name deflecting= -# undefined method `delegate1' for module `Tins::Delegate' -# wrong constant name delegate1 -# wrong constant name delegate -# wrong constant name -# undefined method `format1' for class `Tins::Duration' -# undefined method `format2' for class `Tins::Duration' -# wrong constant name <=> -# wrong constant name days? -# wrong constant name format1 -# wrong constant name format2 -# wrong constant name format -# wrong constant name fractional_seconds? -# wrong constant name hours? -# wrong constant name initialize -# wrong constant name minutes? -# wrong constant name negative? -# wrong constant name seconds? -# wrong constant name to_f -# wrong constant name -# wrong constant name -# wrong constant name dynamic_defined? -# wrong constant name dynamic_scope -# wrong constant name dynamic_scope_name -# wrong constant name dynamic_scope_name= -# wrong constant name method_missing -# uninitialized constant Tins::DynamicScope::Context::DEFAULT_INDENT -# uninitialized constant Tins::DynamicScope::Context::Elem -# uninitialized constant Tins::DynamicScope::Context::K -# uninitialized constant Tins::DynamicScope::Context::V -# wrong constant name [] -# wrong constant name []= -# wrong constant name -# wrong constant name -# wrong constant name eigenclass -# wrong constant name eigenclass_eval -# wrong constant name -# undefined method `expose1' for module `Tins::Expose' -# wrong constant name expose1 -# wrong constant name expose -# wrong constant name -# wrong constant name extract_last_argument_options -# wrong constant name -# undefined method `ascii?1' for module `Tins::FileBinary' -# undefined method `binary?1' for module `Tins::FileBinary' -# wrong constant name -# wrong constant name -# wrong constant name ascii?1 -# wrong constant name ascii? -# wrong constant name binary?1 -# wrong constant name binary? -# undefined method `ascii?1' for module `Tins::FileBinary::ClassMethods' -# undefined method `binary?1' for module `Tins::FileBinary::ClassMethods' -# wrong constant name ascii?1 -# wrong constant name ascii? -# wrong constant name binary?1 -# wrong constant name binary? -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name default_options -# wrong constant name default_options= -# wrong constant name included -# wrong constant name -# wrong constant name -# wrong constant name -# undefined method `initialize1' for class `Tins::Find::Finder' -# undefined method `protect_from_errors1' for class `Tins::Find::Finder' -# wrong constant name -# wrong constant name find -# wrong constant name follow_symlinks -# wrong constant name follow_symlinks= -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name prepare_path -# wrong constant name protect_from_errors1 -# wrong constant name protect_from_errors -# wrong constant name raise_errors -# wrong constant name raise_errors= -# wrong constant name show_hidden -# wrong constant name show_hidden= -# wrong constant name suffix -# wrong constant name suffix= -# wrong constant name visit_path? -# wrong constant name directory? -# wrong constant name exist? -# wrong constant name file -# wrong constant name file? -# wrong constant name finder -# wrong constant name finder= -# wrong constant name finder_stat -# wrong constant name lstat -# wrong constant name pathname -# wrong constant name stat -# wrong constant name suffix -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name find -# wrong constant name prune -# undefined method `parameterize1' for module `Tins::FromModule' -# wrong constant name from -# wrong constant name parameterize1 -# wrong constant name parameterize -# wrong constant name -# undefined method `full?1' for module `Tins::Full' -# wrong constant name all_full? -# wrong constant name full?1 -# wrong constant name full? -# wrong constant name -# wrong constant name -# wrong constant name << -# uninitialized constant Tins::GO::EnumerableExtension::Elem -# wrong constant name each -# wrong constant name push -# wrong constant name -# undefined singleton method `go1' for `Tins::GO' -# undefined singleton method `go2' for `Tins::GO' -# wrong constant name -# wrong constant name go1 -# wrong constant name go2 -# wrong constant name go -# undefined method `add_dimension1' for class `Tins::Generator' -# uninitialized constant Tins::Generator::Elem -# wrong constant name add_dimension1 -# wrong constant name add_dimension -# wrong constant name each -# wrong constant name initialize -# wrong constant name size -# wrong constant name -# wrong constant name [] -# undefined method `symbolize_keys_recursive1' for module `Tins::HashSymbolizeKeysRecursive' -# undefined method `symbolize_keys_recursive!1' for module `Tins::HashSymbolizeKeysRecursive' -# wrong constant name seen -# wrong constant name seen= -# wrong constant name symbolize_keys_recursive1 -# wrong constant name symbolize_keys_recursive -# wrong constant name symbolize_keys_recursive!1 -# wrong constant name symbolize_keys_recursive! -# wrong constant name -# wrong constant name | -# wrong constant name -# undefined method `implement1' for module `Tins::Implement' -# wrong constant name implement1 -# wrong constant name implement -# wrong constant name implement_in_submodule -# wrong constant name -# wrong constant name -# wrong constant name included -# wrong constant name interpret -# wrong constant name interpret_with_binding -# wrong constant name -# wrong constant name execute -# wrong constant name initialize -# wrong constant name maximum -# wrong constant name wait -# wrong constant name -# undefined method `initialize1' for class `Tins::LinesFile' -# undefined method `match_backward1' for class `Tins::LinesFile' -# undefined method `match_forward1' for class `Tins::LinesFile' -# uninitialized constant Tins::LinesFile::Elem -# wrong constant name -# wrong constant name each -# wrong constant name empty? -# wrong constant name file_linenumber -# wrong constant name filename -# wrong constant name filename= -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name last_line_number -# wrong constant name line -# wrong constant name line_number -# wrong constant name line_number= -# wrong constant name match_backward1 -# wrong constant name match_backward -# wrong constant name match_forward1 -# wrong constant name match_forward -# wrong constant name next! -# wrong constant name previous! -# wrong constant name rewind -# wrong constant name filename -# wrong constant name line_number -# wrong constant name -# undefined singleton method `for_file1' for `Tins::LinesFile' -# undefined singleton method `for_filename1' for `Tins::LinesFile' -# undefined singleton method `for_lines1' for `Tins::LinesFile' -# wrong constant name -# wrong constant name for_file1 -# wrong constant name for_file -# wrong constant name for_filename1 -# wrong constant name for_filename -# wrong constant name for_lines1 -# wrong constant name for_lines -# wrong constant name -# wrong constant name __memoize_cache__ -# wrong constant name memoize_apply_visibility -# wrong constant name memoize_cache_clear -# wrong constant name -# wrong constant name -# undefined method `description1' for module `Tins::MethodDescription' -# wrong constant name -# wrong constant name -# wrong constant name description1 -# wrong constant name description -# wrong constant name signature -# 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 build -# wrong constant name == -# wrong constant name === -# wrong constant name eql? -# wrong constant name initialize -# wrong constant name parameters -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name method_missing -# wrong constant name method_missing_delegator -# wrong constant name method_missing_delegator= -# wrong constant name -# wrong constant name initialize -# wrong constant name -# wrong constant name -# wrong constant name minimize -# wrong constant name minimize! -# wrong constant name unminimize -# wrong constant name unminimize! -# wrong constant name -# wrong constant name -# wrong constant name [] -# wrong constant name -# uninitialized constant Tins::NamedSet::Elem -# uninitialized constant Tins::NamedSet::InspectKey -# wrong constant name initialize -# wrong constant name name -# wrong constant name name= -# wrong constant name -# wrong constant name -# wrong constant name as_json -# wrong constant name blank? -# wrong constant name const_missing -# wrong constant name inspect -# wrong constant name method_missing -# wrong constant name nil? -# wrong constant name to_a -# wrong constant name to_ary -# wrong constant name to_f -# wrong constant name to_i -# wrong constant name to_int -# wrong constant name to_json -# wrong constant name to_s -# wrong constant name to_str -# undefined method `Null1' for module `Tins::Null::Kernel' -# undefined method `NullPlus1' for module `Tins::Null::Kernel' -# undefined method `null1' for module `Tins::Null::Kernel' -# undefined method `null_plus1' for module `Tins::Null::Kernel' -# wrong constant name Null1 -# uninitialized constant Tins::Null::Kernel::Null -# wrong constant name NullPlus1 -# uninitialized constant Tins::Null::Kernel::NullPlus -# wrong constant name null1 -# wrong constant name null -# wrong constant name null_plus1 -# wrong constant name null_plus -# wrong constant name -# wrong constant name -# uninitialized constant Tins::NullClass::DELEGATION_RESERVED_KEYWORDS -# uninitialized constant Tins::NullClass::DELEGATION_RESERVED_METHOD_NAMES -# uninitialized constant Tins::NullClass::RUBY_RESERVED_KEYWORDS -# wrong constant name -# undefined method `initialize1' for class `Tins::NullPlus' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name -# uninitialized constant Tins::Once::APPEND -# uninitialized constant Tins::Once::BINARY -# uninitialized constant Tins::Once::CREAT -# uninitialized constant Tins::Once::DSYNC -# uninitialized constant Tins::Once::EXCL -# uninitialized constant Tins::Once::FNM_CASEFOLD -# uninitialized constant Tins::Once::FNM_DOTMATCH -# uninitialized constant Tins::Once::FNM_EXTGLOB -# uninitialized constant Tins::Once::FNM_NOESCAPE -# uninitialized constant Tins::Once::FNM_PATHNAME -# uninitialized constant Tins::Once::FNM_SHORTNAME -# uninitialized constant Tins::Once::FNM_SYSCASE -# uninitialized constant Tins::Once::LOCK_EX -# uninitialized constant Tins::Once::LOCK_NB -# uninitialized constant Tins::Once::LOCK_SH -# uninitialized constant Tins::Once::LOCK_UN -# uninitialized constant Tins::Once::NOCTTY -# uninitialized constant Tins::Once::NOFOLLOW -# uninitialized constant Tins::Once::NONBLOCK -# uninitialized constant Tins::Once::NULL -# uninitialized constant Tins::Once::RDONLY -# uninitialized constant Tins::Once::RDWR -# uninitialized constant Tins::Once::SHARE_DELETE -# uninitialized constant Tins::Once::SYNC -# uninitialized constant Tins::Once::TRUNC -# uninitialized constant Tins::Once::WRONLY -# undefined singleton method `only_once1' for `Tins::Once' -# undefined singleton method `only_once2' for `Tins::Once' -# undefined singleton method `try_only_once1' for `Tins::Once' -# undefined singleton method `try_only_once2' for `Tins::Once' -# wrong constant name -# wrong constant name only_once1 -# wrong constant name only_once2 -# wrong constant name only_once -# wrong constant name try_only_once1 -# wrong constant name try_only_once2 -# wrong constant name try_only_once -# wrong constant name -# wrong constant name parameterize_for -# wrong constant name -# wrong constant name partial -# wrong constant name -# wrong constant name included -# wrong constant name * -# wrong constant name compose -# wrong constant name -# undefined method `const1' for module `Tins::ProcPrelude' -# undefined method `rotate1' for module `Tins::ProcPrelude' -# undefined method `swap1' for module `Tins::ProcPrelude' -# wrong constant name apply -# wrong constant name array -# wrong constant name call -# wrong constant name const1 -# wrong constant name const -# wrong constant name first -# wrong constant name from -# wrong constant name head -# wrong constant name id1 -# wrong constant name last -# wrong constant name map_apply -# wrong constant name nth -# wrong constant name rotate1 -# wrong constant name rotate -# wrong constant name second -# wrong constant name swap1 -# wrong constant name swap -# wrong constant name tail -# wrong constant name -# wrong constant name + -# wrong constant name -# wrong constant name require_maybe -# wrong constant name -# wrong constant name responding? -# wrong constant name -# undefined method `scope1' for module `Tins::Scope' -# undefined method `scope_block1' for module `Tins::Scope' -# undefined method `scope_get1' for module `Tins::Scope' -# undefined method `scope_pop1' for module `Tins::Scope' -# undefined method `scope_push1' for module `Tins::Scope' -# undefined method `scope_reverse1' for module `Tins::Scope' -# undefined method `scope_top1' for module `Tins::Scope' -# wrong constant name scope1 -# wrong constant name scope -# wrong constant name scope_block1 -# wrong constant name scope_block -# wrong constant name scope_get1 -# wrong constant name scope_get -# wrong constant name scope_pop1 -# wrong constant name scope_pop -# wrong constant name scope_push1 -# wrong constant name scope_push -# wrong constant name scope_reverse1 -# wrong constant name scope_reverse -# wrong constant name scope_top1 -# wrong constant name scope_top -# wrong constant name -# undefined method `secure_write1' for module `Tins::SecureWrite' -# undefined method `secure_write2' for module `Tins::SecureWrite' -# wrong constant name secure_write1 -# wrong constant name secure_write2 -# wrong constant name secure_write -# wrong constant name -# undefined method `_dump1' for module `Tins::SexySingleton' -# wrong constant name _dump1 -# wrong constant name _dump -# wrong constant name clone -# wrong constant name dup -# wrong constant name -# wrong constant name __init__ -# wrong constant name included -# wrong constant name bom_encoding -# wrong constant name -# undefined method `camelcase1' for module `Tins::StringCamelize' -# undefined method `camelize1' for module `Tins::StringCamelize' -# wrong constant name camelcase1 -# wrong constant name camelcase -# wrong constant name camelize1 -# wrong constant name camelize -# wrong constant name -# wrong constant name underscore -# wrong constant name -# wrong constant name -# wrong constant name version -# undefined method `bump1' for class `Tins::StringVersion::Version' -# wrong constant name <=> -# wrong constant name == -# wrong constant name [] -# wrong constant name []= -# wrong constant name array -# wrong constant name build -# wrong constant name build= -# wrong constant name bump1 -# wrong constant name bump -# wrong constant name initialize -# wrong constant name level_of -# wrong constant name major -# wrong constant name major= -# wrong constant name minor -# wrong constant name minor= -# wrong constant name pred! -# wrong constant name revision -# wrong constant name revision= -# wrong constant name succ! -# wrong constant name to_a -# wrong constant name -# wrong constant name -# wrong constant name subhash -# wrong constant name -# wrong constant name method_missing -# wrong constant name -# undefined method `temp_io1' for module `Tins::TempIO' -# undefined method `temp_io2' for module `Tins::TempIO' -# wrong constant name -# wrong constant name temp_io1 -# wrong constant name temp_io2 -# wrong constant name temp_io -# undefined method `initialize1' for class `Tins::TempIO::Enum' -# undefined method `initialize2' for class `Tins::TempIO::Enum' -# uninitialized constant Tins::TempIO::Enum::Elem -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name cols -# wrong constant name columns -# wrong constant name lines -# wrong constant name rows -# wrong constant name winsize -# undefined method `instance_thread_global1' for module `Tins::ThreadGlobal' -# undefined method `thread_global1' for module `Tins::ThreadGlobal' -# wrong constant name instance_thread_global1 -# wrong constant name instance_thread_global -# wrong constant name thread_global1 -# wrong constant name thread_global -# wrong constant name -# undefined method `instance_thread_local1' for module `Tins::ThreadLocal' -# undefined method `thread_local1' for module `Tins::ThreadLocal' -# wrong constant name instance_thread_local1 -# wrong constant name instance_thread_local -# wrong constant name thread_local1 -# wrong constant name thread_local -# wrong constant name -# wrong constant name -# wrong constant name included -# wrong constant name to -# wrong constant name -# wrong constant name to_proc -# wrong constant name -# undefined method `initialize1' for class `Tins::Token' -# undefined method `initialize2' for class `Tins::Token' -# undefined method `initialize3' for class `Tins::Token' -# undefined method `initialize4' for class `Tins::Token' -# uninitialized constant Tins::Token::BLANK_RE -# uninitialized constant Tins::Token::ENCODED_BLANKS -# wrong constant name bits -# wrong constant name bits= -# wrong constant name initialize1 -# wrong constant name initialize2 -# wrong constant name initialize3 -# wrong constant name initialize4 -# wrong constant name initialize -# wrong constant name -# wrong constant name uniq_by -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# wrong constant name -# uninitialized constant Tins::Unit::FormatParser::Id -# uninitialized constant Tins::Unit::FormatParser::Version -# wrong constant name initialize -# wrong constant name parse -# wrong constant name -# wrong constant name -# uninitialized constant Tins::Unit::Prefix::Elem -# wrong constant name fraction -# wrong constant name fraction= -# wrong constant name multiplier -# wrong constant name multiplier= -# wrong constant name name -# wrong constant name name= -# wrong constant name step -# wrong constant name step= -# wrong constant name -# wrong constant name [] -# wrong constant name members -# undefined method `initialize1' for class `Tins::Unit::UnitParser' -# uninitialized constant Tins::Unit::UnitParser::Id -# uninitialized constant Tins::Unit::UnitParser::Version -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name number -# wrong constant name parse -# wrong constant name scan -# wrong constant name scan_char -# wrong constant name scan_number -# wrong constant name scan_unit -# wrong constant name -# undefined singleton method `format1' for `Tins::Unit' -# undefined singleton method `format2' for `Tins::Unit' -# undefined singleton method `format3' for `Tins::Unit' -# undefined singleton method `parse1' for `Tins::Unit' -# undefined singleton method `parse2' for `Tins::Unit' -# undefined singleton method `parse3' for `Tins::Unit' -# wrong constant name -# wrong constant name format1 -# wrong constant name format2 -# wrong constant name format3 -# wrong constant name format -# wrong constant name parse1 -# wrong constant name parse2 -# wrong constant name parse3 -# wrong constant name parse -# wrong constant name parse? -# wrong constant name prefixes -# wrong constant name -# wrong constant name extended -# wrong constant name -# undefined method `enable1' for class `TracePoint' -# undefined method `enable2' for class `TracePoint' -# wrong constant name __enable -# wrong constant name enable1 -# wrong constant name enable2 -# wrong constant name eval_script -# wrong constant name instruction_sequence -# wrong constant name parameters -# uninitialized constant Tracer -# uninitialized constant Tracer -# wrong constant name blue -# wrong constant name bold -# wrong constant name cyan -# wrong constant name default -# wrong constant name green -# wrong constant name italic -# wrong constant name magenta -# wrong constant name no_underline -# wrong constant name red -# wrong constant name reset -# wrong constant name strikethrough -# wrong constant name underline -# wrong constant name yellow -# wrong constant name -# undefined singleton method `new21' for `URI::FTP' -# undefined singleton method `new22' for `URI::FTP' -# wrong constant name new21 -# wrong constant name new22 -# wrong constant name new2 -# uninitialized constant URI::File::ABS_PATH -# uninitialized constant URI::File::ABS_URI -# uninitialized constant URI::File::ABS_URI_REF -# uninitialized constant URI::File::DEFAULT_PARSER -# uninitialized constant URI::File::ESCAPED -# uninitialized constant URI::File::FRAGMENT -# uninitialized constant URI::File::HOST -# uninitialized constant URI::File::OPAQUE -# uninitialized constant URI::File::PORT -# uninitialized constant URI::File::QUERY -# uninitialized constant URI::File::REGISTRY -# uninitialized constant URI::File::REL_PATH -# uninitialized constant URI::File::REL_URI -# uninitialized constant URI::File::REL_URI_REF -# uninitialized constant URI::File::RFC3986_PARSER -# uninitialized constant URI::File::SCHEME -# uninitialized constant URI::File::TBLDECWWWCOMP_ -# uninitialized constant URI::File::TBLENCWWWCOMP_ -# uninitialized constant URI::File::UNSAFE -# uninitialized constant URI::File::URI_REF -# uninitialized constant URI::File::USERINFO -# uninitialized constant URI::File::USE_REGISTRY -# uninitialized constant URI::File::VERSION -# uninitialized constant URI::File::VERSION_CODE -# uninitialized constant URI::File::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 attributes -# wrong constant name attributes= -# wrong constant name dn -# wrong constant name dn= -# wrong constant name extensions -# wrong constant name extensions= -# wrong constant name filter -# wrong constant name filter= -# wrong constant name initialize -# wrong constant name scope -# wrong constant name scope= -# wrong constant name set_attributes -# wrong constant name set_dn -# wrong constant name set_extensions -# wrong constant name set_filter -# wrong constant name set_scope -# wrong constant name initialize -# undefined method `initialize1' for class `URI::RFC2396_Parser' -# wrong constant name initialize1 -# wrong constant name initialize -# wrong constant name join -# wrong constant name parse -# wrong constant name regexp -# wrong constant name split -# wrong constant name make_components_hash -# wrong constant name get_encoding -# wrong constant name branch -# wrong constant name cookies -# wrong constant name data -# wrong constant name path -# wrong constant name referer -# wrong constant name revision -# wrong constant name revisions -# wrong constant name scheme -# wrong constant name tag -# wrong constant name to_s -# wrong constant name trust_cert -# wrong constant name user_agent -# wrong constant name using -# wrong constant name -# wrong constant name [] -# wrong constant name []= -# wrong constant name each_key -# wrong constant name key? -# wrong constant name keys -# uninitialized constant Vector -# uninitialized constant Vector -# uninitialized constant WEBrick::AccessLog -# uninitialized constant WEBrick::AccessLog -# uninitialized constant WEBrick::BasicLog -# uninitialized constant WEBrick::BasicLog -# uninitialized constant WEBrick::Config -# uninitialized constant WEBrick::Config -# uninitialized constant WEBrick::Cookie -# uninitialized constant WEBrick::Cookie -# uninitialized constant WEBrick::Daemon -# uninitialized constant WEBrick::Daemon -# uninitialized constant WEBrick::GenericServer -# uninitialized constant WEBrick::GenericServer -# uninitialized constant WEBrick::HTMLUtils -# uninitialized constant WEBrick::HTMLUtils -# uninitialized constant WEBrick::HTTPAuth -# uninitialized constant WEBrick::HTTPAuth -# uninitialized constant WEBrick::HTTPRequest -# uninitialized constant WEBrick::HTTPRequest -# uninitialized constant WEBrick::HTTPResponse -# uninitialized constant WEBrick::HTTPResponse -# uninitialized constant WEBrick::HTTPServer -# uninitialized constant WEBrick::HTTPServer -# uninitialized constant WEBrick::HTTPServerError -# uninitialized constant WEBrick::HTTPServerError -# uninitialized constant WEBrick::HTTPServlet -# uninitialized constant WEBrick::HTTPServlet -# uninitialized constant WEBrick::HTTPStatus -# uninitialized constant WEBrick::HTTPStatus -# uninitialized constant WEBrick::HTTPVersion -# uninitialized constant WEBrick::HTTPVersion -# uninitialized constant WEBrick::Log -# uninitialized constant WEBrick::Log -# uninitialized constant WEBrick::ServerError -# uninitialized constant WEBrick::ServerError -# uninitialized constant WEBrick::SimpleServer -# uninitialized constant WEBrick::SimpleServer -# uninitialized constant WEBrick::Utils -# uninitialized constant WEBrick::Utils -# wrong constant name initialize -# uninitialized constant WebRobots::RobotsTxt::Parser::Racc_Main_Parsing_Routine -# uninitialized constant WebRobots::RobotsTxt::Parser::Racc_Runtime_Core_Id_C -# uninitialized constant WebRobots::RobotsTxt::Parser::Racc_Runtime_Core_Revision -# uninitialized constant WebRobots::RobotsTxt::Parser::Racc_Runtime_Core_Revision_C -# uninitialized constant WebRobots::RobotsTxt::Parser::Racc_Runtime_Core_Revision_R -# uninitialized constant WebRobots::RobotsTxt::Parser::Racc_Runtime_Core_Version -# uninitialized constant WebRobots::RobotsTxt::Parser::Racc_Runtime_Core_Version_C -# uninitialized constant WebRobots::RobotsTxt::Parser::Racc_Runtime_Core_Version_R -# uninitialized constant WebRobots::RobotsTxt::Parser::Racc_Runtime_Revision -# uninitialized constant WebRobots::RobotsTxt::Parser::Racc_Runtime_Type -# uninitialized constant WebRobots::RobotsTxt::Parser::Racc_Runtime_Version -# uninitialized constant WebRobots::RobotsTxt::Parser::Racc_YY_Parse_Method -# 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 cpaths -# wrong constant name disable_tracer_if_unneeded -# wrong constant name mutex -# wrong constant name register -# wrong constant name tracepoint_class_callback -# wrong constant name tracer -# wrong constant name unregister -# wrong constant name camelize -# wrong constant name initialize -# wrong constant name -# wrong constant name camelize -# wrong constant name inflect -# wrong constant name -# wrong constant name -# wrong constant name autoloaded_dirs -# wrong constant name autoloads -# wrong constant name collapse -# wrong constant name collapse_dirs -# wrong constant name collapse_glob_patterns -# wrong constant name dirs -# wrong constant name do_not_eager_load -# wrong constant name eager_load -# wrong constant name eager_load_exclusions -# wrong constant name enable_reloading -# wrong constant name ignore -# wrong constant name ignored_glob_patterns -# wrong constant name ignored_paths -# wrong constant name inflector -# wrong constant name inflector= -# wrong constant name lazy_subdirs -# wrong constant name log! -# wrong constant name logger -# wrong constant name logger= -# wrong constant name manages? -# wrong constant name mutex -# wrong constant name mutex2 -# wrong constant name preload -# wrong constant name preloads -# wrong constant name push_dir -# wrong constant name reload -# wrong constant name reloading_enabled? -# wrong constant name root_dirs -# wrong constant name setup -# wrong constant name tag -# wrong constant name tag= -# wrong constant name to_unload -# wrong constant name unload -# wrong constant name unloadable_cpath? -# wrong constant name unloadable_cpaths -# wrong constant name on_dir_autoloaded -# wrong constant name on_file_autoloaded -# wrong constant name on_namespace_loaded -# wrong constant name -# wrong constant name -# wrong constant name all_dirs -# wrong constant name default_logger -# wrong constant name default_logger= -# wrong constant name eager_load_all -# wrong constant name for_gem -# wrong constant name mutex -# wrong constant name mutex= -# wrong constant name -# wrong constant name real_mod_name -# wrong constant name -# wrong constant name -# wrong constant name autoloads -# wrong constant name inception? -# wrong constant name inceptions -# wrong constant name loader_for -# wrong constant name loader_for_gem -# wrong constant name loaders -# wrong constant name loaders_managing_gems -# wrong constant name on_unload -# wrong constant name register_autoload -# wrong constant name register_inception -# wrong constant name register_loader -# wrong constant name unregister_autoload -# wrong constant name -# wrong constant name -# wrong constant name initialize -# wrong constant name initialize -# wrong constant name initialize -# wrong constant name initialize From 397f56446baece53ef84899e0596ff6c7c5ca908 Mon Sep 17 00:00:00 2001 From: Issy Long Date: Wed, 17 Jun 2020 20:21:13 +0100 Subject: [PATCH 10/82] docs/Maintainer-Guidelines: Reflect `brew mirror` now being automatic - Thanks to #7709, we've saved some maintainer time from doing this manually. - To check that it's working, search for "Mirrored " in the CI log output for the publish bottles action for relevant formulae like ImageMagick in the future. --- docs/Maintainer-Guidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Maintainer-Guidelines.md b/docs/Maintainer-Guidelines.md index cb27cf3d0e..d6b8ac32d6 100644 --- a/docs/Maintainer-Guidelines.md +++ b/docs/Maintainer-Guidelines.md @@ -38,8 +38,8 @@ Depend on as little stuff as possible. Disable X11 functionality if possible. For example, we build Wireshark, but not the heavy GUI. For [some formulae](https://github.com/Homebrew/homebrew-core/search?q=%22homebrew%2Fmirror%22&unscoped_q=%22homebrew%2Fmirror%22), -we mirror the tarballs to our own BinTray. To do this, run -`brew mirror ` with a local checkout of a PR before it is merged. +we mirror the tarballs to our own BinTray automatically as part of the +bottle publish CI run. Homebrew is about Unix software. Stuff that builds to an `.app` should be in Homebrew Cask instead. From b4fc3ead1e8e81f7464042595e084aa278834ed7 Mon Sep 17 00:00:00 2001 From: Shaun Jackman Date: Wed, 17 Jun 2020 17:26:15 -0700 Subject: [PATCH 11/82] update-reset: Use the default branch origin/HEAD Use the default branch of the repo, origin/HEAD. --- Library/Homebrew/cmd/update-reset.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/update-reset.sh b/Library/Homebrew/cmd/update-reset.sh index 70b1977774..2f10efb221 100644 --- a/Library/Homebrew/cmd/update-reset.sh +++ b/Library/Homebrew/cmd/update-reset.sh @@ -42,7 +42,9 @@ homebrew-update-reset() { echo ohai "Resetting $DIR..." - git checkout --force -B master origin/master + head="$(git symbolic-ref refs/remotes/origin/HEAD)" + head="${head#refs/remotes/origin/}" + git checkout --force -B "$head" origin/HEAD echo done } From 4d27c32d44c4f96a33dd95e0954346e099fe4020 Mon Sep 17 00:00:00 2001 From: Alexander Bayandin Date: Thu, 18 Jun 2020 12:23:02 +0100 Subject: [PATCH 12/82] Revert "Merge pull request #7722 from Bo98/java-improvements" This reverts commit 91b4d450703bcc2de6dce22eb5fdecb5a843f92e, reversing changes made to c98901132595178b6261cbe2d51ab732dd77dac4. --- Library/Homebrew/compat/language/java.rb | 3 +-- .../Homebrew/extend/os/mac/language/java.rb | 14 +++------- Library/Homebrew/extend/pathname.rb | 8 ++++-- Library/Homebrew/language/java.rb | 26 +------------------ 4 files changed, 11 insertions(+), 40 deletions(-) diff --git a/Library/Homebrew/compat/language/java.rb b/Library/Homebrew/compat/language/java.rb index 2bcf485e2f..3ad89ebc74 100644 --- a/Library/Homebrew/compat/language/java.rb +++ b/Library/Homebrew/compat/language/java.rb @@ -5,8 +5,7 @@ module Language class << self module Compat def java_home_cmd(version = nil) - odeprecated "Language::Java.java_home_cmd", - "Language::Java.java_home or Language::Java.overridable_java_home_env" + odeprecated "Language::Java::java_home_cmd", "Language::Java::java_home" # macOS provides /usr/libexec/java_home, but Linux does not. return system_java_home_cmd(version) if OS.mac? diff --git a/Library/Homebrew/extend/os/mac/language/java.rb b/Library/Homebrew/extend/os/mac/language/java.rb index a92b386ece..b552027a9a 100644 --- a/Library/Homebrew/extend/os/mac/language/java.rb +++ b/Library/Homebrew/extend/os/mac/language/java.rb @@ -4,26 +4,18 @@ module Language module Java def self.system_java_home_cmd(version = nil) version_flag = " --version #{version}" if version - "/usr/libexec/java_home#{version_flag} --failfast 2>/dev/null" + "/usr/libexec/java_home#{version_flag}" end private_class_method :system_java_home_cmd def self.java_home(version = nil) - f = find_openjdk_formula(version) - return f.opt_libexec/"openjdk.jdk/Contents/Home" if f - cmd = system_java_home_cmd(version) - path = Utils.popen_read(cmd).chomp - - Pathname.new path if path.present? + Pathname.new Utils.popen_read(cmd).chomp end + # @private def self.java_home_shell(version = nil) - f = find_openjdk_formula(version) - return (f.opt_libexec/"openjdk.jdk/Contents/Home").to_s if f - "$(#{system_java_home_cmd(version)})" end - private_class_method :java_home_shell end end diff --git a/Library/Homebrew/extend/pathname.rb b/Library/Homebrew/extend/pathname.rb index c5b9760659..e0c331f4dd 100644 --- a/Library/Homebrew/extend/pathname.rb +++ b/Library/Homebrew/extend/pathname.rb @@ -370,8 +370,12 @@ class Pathname # Writes an exec script that invokes a Java jar def write_jar_script(target_jar, script_name, java_opts = "", java_version: nil) - (self/script_name).write_env_script "java #{java_opts} -jar #{target_jar}", - Language::Java.overridable_java_home_env(java_version) + mkpath + java_home = ("JAVA_HOME=\"#{Language::Java.java_home_shell(java_version)}\" " if java_version) + join(script_name).write <<~SH + #!/bin/bash + #{java_home}exec java #{java_opts} -jar #{target_jar} "$@" + SH end def install_metafiles(from = Pathname.pwd) diff --git a/Library/Homebrew/language/java.rb b/Library/Homebrew/language/java.rb index 77bddccf5f..612ab32c8d 100644 --- a/Library/Homebrew/language/java.rb +++ b/Library/Homebrew/language/java.rb @@ -2,41 +2,17 @@ module Language module Java - def self.find_openjdk_formula(version = nil) - can_be_newer = version&.end_with?("+") - version = version.to_i - - openjdk = Formula["openjdk"] - [openjdk, *openjdk.versioned_formulae].find do |f| - next false unless f.any_version_installed? - - unless version.zero? - major = f.version.to_s[/\d+/].to_i - next false if major < version - next false if major > version && !can_be_newer - end - - true - end - rescue FormulaUnavailableError - nil - end - private_class_method :find_openjdk_formula - def self.java_home(version = nil) - f = find_openjdk_formula(version) - return f.opt_libexec if f - req = JavaRequirement.new [*version] raise UnsatisfiedRequirements, req.message unless req.satisfied? req.java_home end + # @private def self.java_home_shell(version = nil) java_home(version).to_s end - private_class_method :java_home_shell def self.java_home_env(version = nil) { JAVA_HOME: java_home_shell(version) } From a53c92bd7f09b7ba228efe97a563324db2e7160c Mon Sep 17 00:00:00 2001 From: Caleb Xu Date: Wed, 17 Jun 2020 18:03:40 -0400 Subject: [PATCH 13/82] Cache commands list for faster shell completions --- Library/Homebrew/brew.sh | 4 ++ Library/Homebrew/cmd/update-report.rb | 1 + Library/Homebrew/cmd/update.sh | 1 + Library/Homebrew/commands.rb | 17 +++++ Library/Homebrew/dev-cmd/man.rb | 5 +- Library/Homebrew/tap.rb | 3 + completions/internal_commands_list.txt | 95 ++++++++++++++++++++++++++ completions/zsh/_brew | 6 +- 8 files changed, 129 insertions(+), 3 deletions(-) create mode 100644 completions/internal_commands_list.txt diff --git a/Library/Homebrew/brew.sh b/Library/Homebrew/brew.sh index 1c43a8f181..bd726940c4 100644 --- a/Library/Homebrew/brew.sh +++ b/Library/Homebrew/brew.sh @@ -233,6 +233,10 @@ HOMEBREW_CACHE="${HOMEBREW_CACHE:-${HOMEBREW_DEFAULT_CACHE}}" HOMEBREW_LOGS="${HOMEBREW_LOGS:-${HOMEBREW_DEFAULT_LOGS}}" HOMEBREW_TEMP="${HOMEBREW_TEMP:-${HOMEBREW_DEFAULT_TEMP}}" +case "$*" in + --cache) echo "$HOMEBREW_CACHE"; exit 0 ;; +esac + HOMEBREW_USER_AGENT="$HOMEBREW_PRODUCT/$HOMEBREW_USER_AGENT_VERSION ($HOMEBREW_SYSTEM; $HOMEBREW_PROCESSOR $HOMEBREW_OS_USER_AGENT_VERSION)" curl_version_output="$("$HOMEBREW_CURL" --version 2>/dev/null)" curl_name_and_version="${curl_version_output%% (*}" diff --git a/Library/Homebrew/cmd/update-report.rb b/Library/Homebrew/cmd/update-report.rb index 844517773f..d3c4637ee2 100644 --- a/Library/Homebrew/cmd/update-report.rb +++ b/Library/Homebrew/cmd/update-report.rb @@ -129,6 +129,7 @@ module Homebrew puts if args.preinstall? end + Commands.rebuild_commands_completion_list link_completions_manpages_and_docs Tap.each(&:link_completions_and_manpages) end diff --git a/Library/Homebrew/cmd/update.sh b/Library/Homebrew/cmd/update.sh index e44e852c40..0bd7c02db9 100644 --- a/Library/Homebrew/cmd/update.sh +++ b/Library/Homebrew/cmd/update.sh @@ -604,6 +604,7 @@ EOS -n "$HOMEBREW_UPDATE_FAILED" || -n "$HOMEBREW_UPDATE_FORCE" || -d "$HOMEBREW_LIBRARY/LinkedKegs" || + ! -f "$HOMEBREW_CACHE/all_commands_list.txt" || (-n "$HOMEBREW_DEVELOPER" && -z "$HOMEBREW_UPDATE_PREINSTALL") ]] then brew update-report "$@" diff --git a/Library/Homebrew/commands.rb b/Library/Homebrew/commands.rb index 7a23065416..cf91bafa60 100644 --- a/Library/Homebrew/commands.rb +++ b/Library/Homebrew/commands.rb @@ -143,4 +143,21 @@ module Commands .select(&:file?) .sort end + + def rebuild_internal_commands_completion_list + cmds = internal_commands + internal_developer_commands + internal_commands_aliases + + file = HOMEBREW_REPOSITORY/"completions/internal_commands_list.txt" + file.delete if file.exist? + file.write(cmds.sort.join("\n") + "\n") + end + + def rebuild_commands_completion_list + # Ensure that the cache exists so we can build the commands list + HOMEBREW_CACHE.mkpath + + file = HOMEBREW_CACHE/"all_commands_list.txt" + file.delete if file.exist? + file.write(commands(aliases: true).sort.join("\n") + "\n") + end end diff --git a/Library/Homebrew/dev-cmd/man.rb b/Library/Homebrew/dev-cmd/man.rb index d6d616a0f1..ee299ebc68 100644 --- a/Library/Homebrew/dev-cmd/man.rb +++ b/Library/Homebrew/dev-cmd/man.rb @@ -35,10 +35,11 @@ module Homebrew odie "`brew man --link` is now done automatically by `brew update`." if args.link? + Commands.rebuild_internal_commands_completion_list regenerate_man_pages - if system "git", "-C", HOMEBREW_REPOSITORY, "diff", "--quiet", "docs/Manpage.md", "manpages" - puts "No changes to manpage output detected." + if system "git", "-C", HOMEBREW_REPOSITORY, "diff", "--quiet", "docs/Manpage.md", "manpages", "completions" + puts "No changes to manpage or completions output detected." elsif args.fail_if_changed? Homebrew.failed = true end diff --git a/Library/Homebrew/tap.rb b/Library/Homebrew/tap.rb index 9894b4b47b..cf5a7bb61e 100644 --- a/Library/Homebrew/tap.rb +++ b/Library/Homebrew/tap.rb @@ -286,6 +286,7 @@ class Tap config["forceautoupdate"] = force_auto_update unless force_auto_update.nil? + Commands.rebuild_commands_completion_list link_completions_and_manpages formatted_contents = contents.presence&.to_sentence&.dup&.prepend(" ") @@ -334,6 +335,8 @@ class Tap path.rmtree path.parent.rmdir_if_possible puts "Untapped#{formatted_contents} (#{abv})." + + Commands.rebuild_commands_completion_list clear_cache end diff --git a/completions/internal_commands_list.txt b/completions/internal_commands_list.txt new file mode 100644 index 0000000000..ba9cceffdf --- /dev/null +++ b/completions/internal_commands_list.txt @@ -0,0 +1,95 @@ +--cache +--cellar +--config +--env +--prefix +--repo +--repository +--version +-S +-v +abv +analytics +audit +bottle +bump-formula-pr +bump-revision +cask +cat +cleanup +command +commands +config +configure +create +deps +desc +diy +doctor +dr +edit +environment +extract +fetch +formula +gist-logs +help +home +homepage +info +instal +install +install-bundler-gems +irb +leaves +link +linkage +list +ln +log +ls +man +migrate +mirror +missing +options +outdated +pin +postinstall +pr-automerge +pr-publish +pr-pull +pr-upload +prof +pull +readall +reinstall +release-notes +remove +rm +ruby +search +sh +shellenv +style +switch +tap +tap-info +tap-new +test +tests +uninstal +uninstall +unlink +unpack +unpin +untap +up +update +update-report +update-reset +update-test +upgrade +uses +vendor-gems +vendor-install diff --git a/completions/zsh/_brew b/completions/zsh/_brew index c4f75cf6a7..e8402fb475 100644 --- a/completions/zsh/_brew +++ b/completions/zsh/_brew @@ -148,7 +148,11 @@ __brew_all_commands() { local -a commands local comp_cachename=brew_all_commands if _cache_invalid $comp_cachename || ! _retrieve_cache $comp_cachename; then - commands=($(_call_program brew brew commands --quiet --include-aliases)) + HOMEBREW_CACHE=$(brew --cache) + HOMEBREW_REPOSITORY=$(brew --repo) + [[ -f "$HOMEBREW_CACHE/all_commands_list.txt" ]] && + commands=($(cat "$HOMEBREW_CACHE/all_commands_list.txt")) || + commands=($(cat "$HOMEBREW_REPOSITORY/completions/internal_commands_list.txt")) commands=(${commands:#*instal}) # Exclude instal, uninstal, etc. _store_cache $comp_cachename commands fi From 2e6b8d65b3b508fb41e13f648ea0984cd1e2e2b5 Mon Sep 17 00:00:00 2001 From: Caleb Xu Date: Thu, 18 Jun 2020 11:19:04 -0400 Subject: [PATCH 14/82] extract: fix typo --- Library/Homebrew/dev-cmd/extract.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/dev-cmd/extract.rb b/Library/Homebrew/dev-cmd/extract.rb index f1f2a6ff48..0d4b20b9e0 100644 --- a/Library/Homebrew/dev-cmd/extract.rb +++ b/Library/Homebrew/dev-cmd/extract.rb @@ -155,7 +155,7 @@ module Homebrew if version_segments && Gem::Version.correct?(test_formula.version) test_formula_version_segments = Gem::Version.new(test_formula.version).segments if version_segments.length < test_formula_version_segments.length - odebug "Apply semantic versioning with #{test_formual_version_segments}" + odebug "Apply semantic versioning with #{test_formula_version_segments}" break if version_segments == test_formula_version_segments.first(version_segments.length) end end From cd93d4e38a4a850680cde1edef63448633a9f1dd Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 19 Jun 2020 11:46:31 +0100 Subject: [PATCH 15/82] language/java: add support for OpenJDK formula --- .../Homebrew/extend/os/mac/language/java.rb | 12 ++++++++-- Library/Homebrew/language/java.rb | 24 +++++++++++++++++++ 2 files changed, 34 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/extend/os/mac/language/java.rb b/Library/Homebrew/extend/os/mac/language/java.rb index b552027a9a..4661652c0b 100644 --- a/Library/Homebrew/extend/os/mac/language/java.rb +++ b/Library/Homebrew/extend/os/mac/language/java.rb @@ -4,17 +4,25 @@ module Language module Java def self.system_java_home_cmd(version = nil) version_flag = " --version #{version}" if version - "/usr/libexec/java_home#{version_flag}" + "/usr/libexec/java_home#{version_flag} --failfast 2>/dev/null" end private_class_method :system_java_home_cmd def self.java_home(version = nil) + f = find_openjdk_formula(version) + return f.opt_libexec/"openjdk.jdk/Contents/Home" if f + cmd = system_java_home_cmd(version) - Pathname.new Utils.popen_read(cmd).chomp + path = Utils.popen_read(cmd).chomp + + Pathname.new path if path.present? end # @private def self.java_home_shell(version = nil) + f = find_openjdk_formula(version) + return (f.opt_libexec/"openjdk.jdk/Contents/Home").to_s if f + "$(#{system_java_home_cmd(version)})" end end diff --git a/Library/Homebrew/language/java.rb b/Library/Homebrew/language/java.rb index 612ab32c8d..610c73a5b5 100644 --- a/Library/Homebrew/language/java.rb +++ b/Library/Homebrew/language/java.rb @@ -2,7 +2,31 @@ module Language module Java + def self.find_openjdk_formula(version = nil) + can_be_newer = version&.end_with?("+") + version = version.to_i + + openjdk = Formula["openjdk"] + [openjdk, *openjdk.versioned_formulae].find do |f| + next false unless f.any_version_installed? + + unless version.zero? + major = f.version.to_s[/\d+/].to_i + next false if major < version + next false if major > version && !can_be_newer + end + + true + end + rescue FormulaUnavailableError + nil + end + private_class_method :find_openjdk_formula + def self.java_home(version = nil) + f = find_openjdk_formula(version) + return f.opt_libexec if f + req = JavaRequirement.new [*version] raise UnsatisfiedRequirements, req.message unless req.satisfied? From c244e992afbab4e74fa5134c21c345e281b3f5aa Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 19 Jun 2020 11:54:04 +0100 Subject: [PATCH 16/82] extend/pathname: add args argument to write_env_script --- Library/Homebrew/extend/pathname.rb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/extend/pathname.rb b/Library/Homebrew/extend/pathname.rb index e0c331f4dd..e60e9357e8 100644 --- a/Library/Homebrew/extend/pathname.rb +++ b/Library/Homebrew/extend/pathname.rb @@ -346,13 +346,17 @@ class Pathname end # Writes an exec script that sets environment variables - def write_env_script(target, env) + def write_env_script(target, args, env = nil) + unless env + env = args + args = nil + end env_export = +"" env.each { |key, value| env_export << "#{key}=\"#{value}\" " } dirname.mkpath write <<~SH #!/bin/bash - #{env_export}exec "#{target}" "$@" + #{env_export}exec "#{target}" #{args} "$@" SH end From cd0c3fa835fda19a2929eb28cf58ecace2aad89f Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Fri, 19 Jun 2020 11:55:05 +0100 Subject: [PATCH 17/82] extend/pathname: use Java.overridable_java_home_env in write_jar_script --- Library/Homebrew/compat/language/java.rb | 3 ++- Library/Homebrew/extend/os/mac/language/java.rb | 2 +- Library/Homebrew/extend/pathname.rb | 8 ++------ Library/Homebrew/language/java.rb | 2 +- 4 files changed, 6 insertions(+), 9 deletions(-) diff --git a/Library/Homebrew/compat/language/java.rb b/Library/Homebrew/compat/language/java.rb index 3ad89ebc74..2bcf485e2f 100644 --- a/Library/Homebrew/compat/language/java.rb +++ b/Library/Homebrew/compat/language/java.rb @@ -5,7 +5,8 @@ module Language class << self module Compat def java_home_cmd(version = nil) - odeprecated "Language::Java::java_home_cmd", "Language::Java::java_home" + odeprecated "Language::Java.java_home_cmd", + "Language::Java.java_home or Language::Java.overridable_java_home_env" # macOS provides /usr/libexec/java_home, but Linux does not. return system_java_home_cmd(version) if OS.mac? diff --git a/Library/Homebrew/extend/os/mac/language/java.rb b/Library/Homebrew/extend/os/mac/language/java.rb index 4661652c0b..a92b386ece 100644 --- a/Library/Homebrew/extend/os/mac/language/java.rb +++ b/Library/Homebrew/extend/os/mac/language/java.rb @@ -18,12 +18,12 @@ module Language Pathname.new path if path.present? end - # @private def self.java_home_shell(version = nil) f = find_openjdk_formula(version) return (f.opt_libexec/"openjdk.jdk/Contents/Home").to_s if f "$(#{system_java_home_cmd(version)})" end + private_class_method :java_home_shell end end diff --git a/Library/Homebrew/extend/pathname.rb b/Library/Homebrew/extend/pathname.rb index e60e9357e8..33a937b5d7 100644 --- a/Library/Homebrew/extend/pathname.rb +++ b/Library/Homebrew/extend/pathname.rb @@ -374,12 +374,8 @@ class Pathname # Writes an exec script that invokes a Java jar def write_jar_script(target_jar, script_name, java_opts = "", java_version: nil) - mkpath - java_home = ("JAVA_HOME=\"#{Language::Java.java_home_shell(java_version)}\" " if java_version) - join(script_name).write <<~SH - #!/bin/bash - #{java_home}exec java #{java_opts} -jar #{target_jar} "$@" - SH + (self/script_name).write_env_script "java", "#{java_opts} -jar \"#{target_jar}\"", + Language::Java.overridable_java_home_env(java_version) end def install_metafiles(from = Pathname.pwd) diff --git a/Library/Homebrew/language/java.rb b/Library/Homebrew/language/java.rb index 610c73a5b5..77bddccf5f 100644 --- a/Library/Homebrew/language/java.rb +++ b/Library/Homebrew/language/java.rb @@ -33,10 +33,10 @@ module Language req.java_home end - # @private def self.java_home_shell(version = nil) java_home(version).to_s end + private_class_method :java_home_shell def self.java_home_env(version = nil) { JAVA_HOME: java_home_shell(version) } From 72ebd2127f65d3edf0951b5b3e39b277808ce9cb Mon Sep 17 00:00:00 2001 From: William Ma Date: Fri, 19 Jun 2020 10:36:34 -0400 Subject: [PATCH 18/82] args: add method to retrieve formula and casks --- Library/Homebrew/cli/args.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Library/Homebrew/cli/args.rb b/Library/Homebrew/cli/args.rb index ac5fd1875b..af4920b1ce 100644 --- a/Library/Homebrew/cli/args.rb +++ b/Library/Homebrew/cli/args.rb @@ -38,6 +38,7 @@ module Homebrew @resolved_formulae = nil @formulae_paths = nil @casks = nil + @formulae_and_casks = nil @kegs = nil self[:named_args] = named_args @@ -107,6 +108,23 @@ module Homebrew .freeze end + def formulae_and_casks + require "cask/cask_loader" + require "cask/exceptions" + + @formulae_and_casks ||= downcased_unique_named.map do |name| + begin + Formulary.factory(name, spec) + rescue FormulaUnavailableError => e + begin + Cask::CaskLoader.load(name) + rescue Cask::CaskUnavailableError + raise e + end + end + end.uniq.freeze + end + def kegs require "keg" require "formula" From cf76f6e721354db4c0501aeb69164d785a3da13e Mon Sep 17 00:00:00 2001 From: William Ma Date: Fri, 19 Jun 2020 10:37:31 -0400 Subject: [PATCH 19/82] cache: integrate brew --cache and cask --cache --- Library/Homebrew/cask/cmd/--cache.rb | 6 +++++- Library/Homebrew/cmd/--cache.rb | 19 ++++++++++++++----- 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/Library/Homebrew/cask/cmd/--cache.rb b/Library/Homebrew/cask/cmd/--cache.rb index d3aaf8e027..f54c1484fc 100644 --- a/Library/Homebrew/cask/cmd/--cache.rb +++ b/Library/Homebrew/cask/cmd/--cache.rb @@ -16,10 +16,14 @@ module Cask def run casks.each do |cask| - puts Download.new(cask).downloader.cached_location + puts cached_location(cask) end end + def self.cached_location(cask) + Download.new(cask).downloader.cached_location + end + def self.help "display the file used to cache the Cask" end diff --git a/Library/Homebrew/cmd/--cache.rb b/Library/Homebrew/cmd/--cache.rb index 225bf68747..f4285f77d1 100644 --- a/Library/Homebrew/cmd/--cache.rb +++ b/Library/Homebrew/cmd/--cache.rb @@ -2,6 +2,7 @@ require "fetch" require "cli/parser" +require "cask/cmd" module Homebrew module_function @@ -29,13 +30,21 @@ module Homebrew if args.no_named? puts HOMEBREW_CACHE else - args.formulae.each do |f| - if Fetch.fetch_bottle?(f) - puts f.bottle.cached_download - else - puts f.cached_download + args.formulae_and_casks.each do |formula_or_cask| + case formula_or_cask + when Formula + formula = formula_or_cask + if Fetch.fetch_bottle?(formula) + puts formula.bottle.cached_download + else + puts formula.cached_download + end + when Cask::Cask + cask = formula_or_cask + puts "cask: #{Cask::Cmd::Cache.cached_location(cask)}" end end end end + end From ceb56df834d558d94251414672b97d1c7833ab95 Mon Sep 17 00:00:00 2001 From: William Ma Date: Fri, 19 Jun 2020 10:37:58 -0400 Subject: [PATCH 20/82] home: integrate brew home and cask home --- Library/Homebrew/cmd/home.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/home.rb b/Library/Homebrew/cmd/home.rb index e18726441b..4cdfa68d9a 100644 --- a/Library/Homebrew/cmd/home.rb +++ b/Library/Homebrew/cmd/home.rb @@ -23,7 +23,7 @@ module Homebrew if args.no_named? exec_browser HOMEBREW_WWW else - exec_browser(*args.formulae.map(&:homepage)) + exec_browser(*args.formulae_and_casks.map(&:homepage)) end end end From 46d344c0d10d8668d1c3cd41baa19daf3f96034f Mon Sep 17 00:00:00 2001 From: William Ma Date: Fri, 19 Jun 2020 11:46:33 -0400 Subject: [PATCH 21/82] home: print message when formula is not found --- Library/Homebrew/cmd/home.rb | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/home.rb b/Library/Homebrew/cmd/home.rb index 4cdfa68d9a..cc6f2a780d 100644 --- a/Library/Homebrew/cmd/home.rb +++ b/Library/Homebrew/cmd/home.rb @@ -1,6 +1,8 @@ # frozen_string_literal: true require "cli/parser" +require "cask/cask_loader" +require "cask/exceptions" module Homebrew module_function @@ -23,7 +25,21 @@ module Homebrew if args.no_named? exec_browser HOMEBREW_WWW else - exec_browser(*args.formulae_and_casks.map(&:homepage)) + homepages = args.named.flat_map do |name| + begin + [Formulary.factory(name).homepage] + rescue FormulaUnavailableError => e + puts e.message + begin + cask = Cask::CaskLoader.load(name) + puts "Found a cask named \"#{name}\" instead." + [cask.homepage] + rescue Cask::CaskUnavailableError + [] + end + end + end + exec_browser *homepages end end end From 486114282cd875674fe245b46e919f6a93129345 Mon Sep 17 00:00:00 2001 From: rmnull Date: Tue, 2 Jun 2020 18:36:13 +0530 Subject: [PATCH 22/82] In ELFShim, #needed_libraries, #dynamic_elf? and #with_interpreter? check using patchelf gem. Having HOMEBREW_PATCHELF_RB set in the ENV, will conditionally install patchelf.rb gem, use patchelf.rb in the above mentioned methods. The installed vendored gems are listed in .gitignore to maintain a clean state. --- .gitignore | 11 +++++-- Library/Homebrew/Gemfile | 1 + Library/Homebrew/os/linux/elf.rb | 46 +++++++++++++++++++++++++++-- Library/Homebrew/os/linux/global.rb | 3 ++ 4 files changed, 55 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index f5fa53701f..962dfd140e 100644 --- a/.gitignore +++ b/.gitignore @@ -129,9 +129,6 @@ **/vendor/bundle/ruby/*/gems/simplecov-*/ **/vendor/bundle/ruby/*/gems/simplecov-cobertura-*/ **/vendor/bundle/ruby/*/gems/simplecov-html-*/ -**/vendor/bundle/ruby/*/gems/sorbet-*/ -**/vendor/bundle/ruby/*/gems/sorbet-runtime-*/ -**/vendor/bundle/ruby/*/gems/tapioca-*/ **/vendor/bundle/ruby/*/gems/term-ansicolor-*/ **/vendor/bundle/ruby/*/gems/thor-*/ **/vendor/bundle/ruby/*/gems/tins-*/ @@ -140,6 +137,14 @@ **/vendor/bundle/ruby/*/gems/unicode-display_width-*/ **/vendor/bundle/ruby/*/gems/webrobots-*/ +# Ignore conditional dependencies we don't wish to vendor +**/vendor/bundle/ruby/*/gems/bindata-*/ +**/vendor/bundle/ruby/*/gems/elftools-*/ +**/vendor/bundle/ruby/*/gems/patchelf-*/ +**/vendor/bundle/ruby/*/gems/sorbet-*/ +**/vendor/bundle/ruby/*/gems/sorbet-runtime-*/ +**/vendor/bundle/ruby/*/gems/tapioca-*/ + # Ignore `bin` contents (again). /bin diff --git a/Library/Homebrew/Gemfile b/Library/Homebrew/Gemfile index 3024597c27..657bf5bd54 100644 --- a/Library/Homebrew/Gemfile +++ b/Library/Homebrew/Gemfile @@ -23,6 +23,7 @@ end gem "activesupport" gem "concurrent-ruby" gem "mechanize" +gem "patchelf" if ENV["HOMEBREW_PATCHELF_RB"] gem "plist" gem "rubocop-performance" gem "rubocop-rspec" diff --git a/Library/Homebrew/os/linux/elf.rb b/Library/Homebrew/os/linux/elf.rb index 11603dee71..6e7eda8d3a 100644 --- a/Library/Homebrew/os/linux/elf.rb +++ b/Library/Homebrew/os/linux/elf.rb @@ -74,7 +74,14 @@ module ELFShim @with_interpreter = if binary_executable? true elsif dylib? - if which "readelf" + if HOMEBREW_PATCHELF_RB + begin + patchelf_patcher.interpreter.present? + rescue PatchELF::PatchError => e + opoo e + false + end + elsif which "readelf" Utils.popen_read("readelf", "-l", to_path).include?(" INTERP ") elsif which "file" Utils.popen_read("file", "-L", "-b", to_path).include?(" interpreter ") @@ -89,7 +96,9 @@ module ELFShim def dynamic_elf? return @dynamic_elf if defined? @dynamic_elf - @dynamic_elf = if which "readelf" + @dynamic_elf = if HOMEBREW_PATCHELF_RB + patchelf_patcher.instance_variable_get(:@elf).segment_by_type(:DYNAMIC).present? + elsif which "readelf" Utils.popen_read("readelf", "-l", to_path).include?(" DYNAMIC ") elsif which "file" !Utils.popen_read("file", "-L", "-b", to_path)[/dynamic|shared/].nil? @@ -127,7 +136,9 @@ module ELFShim private def needed_libraries(path) - if DevelopmentTools.locate "readelf" + if HOMEBREW_PATCHELF_RB + needed_libraries_using_patchelf_rb path + elsif DevelopmentTools.locate "readelf" needed_libraries_using_readelf path elsif DevelopmentTools.locate "patchelf" needed_libraries_using_patchelf path @@ -138,6 +149,25 @@ module ELFShim end end + def needed_libraries_using_patchelf_rb(path) + patcher = path.patchelf_patcher + return [nil, []] unless patcher + + soname = begin + patcher.soname + rescue PatchELF::PatchError => e + opoo e unless e.to_s.start_with? "Entry DT_SONAME not found, not a shared library?" + nil + end + needed = begin + patcher.needed + rescue PatchELF::PatchError => e + opoo e + [] + end + [soname, needed] + end + def needed_libraries_using_patchelf(path) return [nil, []] unless path.dynamic_elf? @@ -172,6 +202,16 @@ module ELFShim end end + def patchelf_patcher + return unless HOMEBREW_PATCHELF_RB + + @patchelf_patcher ||= begin + Homebrew.install_bundler_gems! + require "patchelf" + PatchELF::Patcher.new to_s, logging: false + end + end + def metadata @metadata ||= Metadata.new(self) end diff --git a/Library/Homebrew/os/linux/global.rb b/Library/Homebrew/os/linux/global.rb index e0b8724930..fb74e0afa3 100644 --- a/Library/Homebrew/os/linux/global.rb +++ b/Library/Homebrew/os/linux/global.rb @@ -1,5 +1,8 @@ # frozen_string_literal: true +# enables experimental readelf.rb, patchelf support. +HOMEBREW_PATCHELF_RB = ENV["HOMEBREW_PATCHELF_RB"].present?.freeze + module Homebrew DEFAULT_PREFIX ||= if Homebrew::EnvConfig.force_homebrew_on_linux? HOMEBREW_DEFAULT_PREFIX From 9b1d58c53c660fca28a3b1e5c165f643b15060d0 Mon Sep 17 00:00:00 2001 From: William Ma Date: Fri, 19 Jun 2020 14:00:26 -0400 Subject: [PATCH 23/82] cache: alert user when no formula or cask matches the argument --- Library/Homebrew/cli/args.rb | 17 ----------------- Library/Homebrew/cmd/--cache.rb | 18 +++++++++++------- 2 files changed, 11 insertions(+), 24 deletions(-) diff --git a/Library/Homebrew/cli/args.rb b/Library/Homebrew/cli/args.rb index af4920b1ce..75959eb054 100644 --- a/Library/Homebrew/cli/args.rb +++ b/Library/Homebrew/cli/args.rb @@ -108,23 +108,6 @@ module Homebrew .freeze end - def formulae_and_casks - require "cask/cask_loader" - require "cask/exceptions" - - @formulae_and_casks ||= downcased_unique_named.map do |name| - begin - Formulary.factory(name, spec) - rescue FormulaUnavailableError => e - begin - Cask::CaskLoader.load(name) - rescue Cask::CaskUnavailableError - raise e - end - end - end.uniq.freeze - end - def kegs require "keg" require "formula" diff --git a/Library/Homebrew/cmd/--cache.rb b/Library/Homebrew/cmd/--cache.rb index f4285f77d1..dc081fc083 100644 --- a/Library/Homebrew/cmd/--cache.rb +++ b/Library/Homebrew/cmd/--cache.rb @@ -3,6 +3,7 @@ require "fetch" require "cli/parser" require "cask/cmd" +require "cask/cask_loader" module Homebrew module_function @@ -30,18 +31,21 @@ module Homebrew if args.no_named? puts HOMEBREW_CACHE else - args.formulae_and_casks.each do |formula_or_cask| - case formula_or_cask - when Formula - formula = formula_or_cask + args.named.each do |name| + begin + formula = Formulary.factory name if Fetch.fetch_bottle?(formula) puts formula.bottle.cached_download else puts formula.cached_download end - when Cask::Cask - cask = formula_or_cask - puts "cask: #{Cask::Cmd::Cache.cached_location(cask)}" + rescue FormulaUnavailableError => e + begin + cask = Cask::CaskLoader.load name + puts "cask: #{Cask::Cmd::Cache.cached_location(cask)}" + rescue Cask::CaskUnavailableError + ofail "No available formula or cask with the name \"#{name}\"" + end end end end From 0f4e61062ce97fd4de2ed05236079eeea30b6e10 Mon Sep 17 00:00:00 2001 From: rmnull Date: Sat, 20 Jun 2020 01:38:37 +0530 Subject: [PATCH 24/82] brew info --analytics --days=30 and --days 30 both are valid. Added this for --category as well. --- Library/Homebrew/cmd/info.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/cmd/info.rb b/Library/Homebrew/cmd/info.rb index e6db9ec358..312e50c51e 100644 --- a/Library/Homebrew/cmd/info.rb +++ b/Library/Homebrew/cmd/info.rb @@ -29,11 +29,11 @@ module Homebrew description: "List global Homebrew analytics data or, if specified, installation and "\ "build error data for (provided neither `HOMEBREW_NO_ANALYTICS` "\ "nor `HOMEBREW_NO_GITHUB_API` are set)." - flag "--days", + flag "--days=", depends_on: "--analytics", description: "How many days of analytics data to retrieve. "\ "The value for must be `30`, `90` or `365`. The default is `30`." - flag "--category", + flag "--category=", depends_on: "--analytics", description: "Which type of analytics data to retrieve. "\ "The value for must be `install`, `install-on-request` or `build-error`; "\ From 3263f796b6e74718a191dac7c9c54dc128b5ca69 Mon Sep 17 00:00:00 2001 From: miccal Date: Sat, 20 Jun 2020 14:14:56 +0800 Subject: [PATCH 25/82] cpu_spec: add :icelake --- Library/Homebrew/test/hardware/cpu_spec.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/test/hardware/cpu_spec.rb b/Library/Homebrew/test/hardware/cpu_spec.rb index 035915d11a..343da43781 100644 --- a/Library/Homebrew/test/hardware/cpu_spec.rb +++ b/Library/Homebrew/test/hardware/cpu_spec.rb @@ -29,6 +29,7 @@ describe Hardware::CPU do :core2, :dothan, :haswell, + :icelake, :ivybridge, :kabylake, :merom, From 955bca657424f0eab068af750e5a924e37c0c1ea Mon Sep 17 00:00:00 2001 From: Michka Popoff Date: Tue, 16 Jun 2020 18:25:13 +0200 Subject: [PATCH 26/82] formule: add generic shared-lib methods We have strings containing hardcoded ".dylib" extensions in homebrew-core. To be able to bring linuxbrew-core and homebrew-core closer together, I am introducing a new generic attribute that can be used in formulae. --- Library/Homebrew/extend/os/linux/formula.rb | 6 ++++++ Library/Homebrew/formula.rb | 4 ++++ Library/Homebrew/test/os/linux/formula_spec.rb | 9 +++++++++ Library/Homebrew/test/os/mac/formula_spec.rb | 9 +++++++++ 4 files changed, 28 insertions(+) diff --git a/Library/Homebrew/extend/os/linux/formula.rb b/Library/Homebrew/extend/os/linux/formula.rb index 97d7bf2519..3b4351d057 100644 --- a/Library/Homebrew/extend/os/linux/formula.rb +++ b/Library/Homebrew/extend/os/linux/formula.rb @@ -1,6 +1,12 @@ # frozen_string_literal: true class Formula + undef shared_library + + def shared_library(name, version = nil) + "#{name}.so#{"." unless version.nil?}#{version}" + end + class << self undef on_linux diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 90448c1549..ed7635bffb 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -1402,6 +1402,10 @@ class Formula ["--prefix=#{prefix}", "--libdir=#{lib}"] end + def shared_library(name, version = nil) + "#{name}.#{version}#{"." unless version.nil?}dylib" + end + # an array of all core {Formula} names # @private def self.core_names diff --git a/Library/Homebrew/test/os/linux/formula_spec.rb b/Library/Homebrew/test/os/linux/formula_spec.rb index 159a0838ba..8e92929072 100644 --- a/Library/Homebrew/test/os/linux/formula_spec.rb +++ b/Library/Homebrew/test/os/linux/formula_spec.rb @@ -1,5 +1,6 @@ # frozen_string_literal: true +require "test/support/fixtures/testball" require "formula" describe Formula do @@ -101,4 +102,12 @@ describe Formula do expect(f.resources.first.url).to eq("on_linux") end end + + describe "#shared_library" do + it "generates a shared library string" do + f = Testball.new + expect(f.shared_library("foobar")).to eq("foobar.so") + expect(f.shared_library("foobar", 2)).to eq("foobar.so.2") + end + end end diff --git a/Library/Homebrew/test/os/mac/formula_spec.rb b/Library/Homebrew/test/os/mac/formula_spec.rb index 4fb4400c7f..e76cb05214 100644 --- a/Library/Homebrew/test/os/mac/formula_spec.rb +++ b/Library/Homebrew/test/os/mac/formula_spec.rb @@ -1,5 +1,6 @@ # frozen_string_literal: true +require "test/support/fixtures/testball" require "formula" describe Formula do @@ -108,4 +109,12 @@ describe Formula do expect(f.resources.first.url).to eq("resource_macos") end end + + describe "#shared_library" do + it "generates a shared library string" do + f = Testball.new + expect(f.shared_library("foobar")).to eq("foobar.dylib") + expect(f.shared_library("foobar", 2)).to eq("foobar.2.dylib") + end + end end From 17c20c0e11566c0102c46031809fae29d898c030 Mon Sep 17 00:00:00 2001 From: Jonathan Chang Date: Sat, 20 Jun 2020 21:55:49 +1000 Subject: [PATCH 27/82] pr-pull: dupe logic moved to mirror and pr-upload --- Library/Homebrew/bintray.rb | 7 ++- Library/Homebrew/dev-cmd/mirror.rb | 7 ++- Library/Homebrew/dev-cmd/pr-pull.rb | 83 +++++++++++++++-------------- 3 files changed, 54 insertions(+), 43 deletions(-) diff --git a/Library/Homebrew/bintray.rb b/Library/Homebrew/bintray.rb index 9755bb8f66..09b7a60e79 100644 --- a/Library/Homebrew/bintray.rb +++ b/Library/Homebrew/bintray.rb @@ -72,7 +72,7 @@ class Bintray status_code.start_with?("2") end - def mirror_formula(formula, repo: "mirror") + def mirror_formula(formula, repo: "mirror", publish_package: false) package = Utils::Bottles::Bintray.package formula.name create_package(repo: repo, package: package) unless package_exists?(repo: repo, package: package) @@ -93,7 +93,10 @@ class Bintray sha256: formula.stable.checksum, remote_file: filename, ) - publish(repo: repo, package: package, version: version) + return destination_url unless publish_package + + odebug "Publishing #{@bintray_org}/#{repo}/#{package}/#{version}" + publish(repo: repo, package: package, version: version, file_count: 1) destination_url end diff --git a/Library/Homebrew/dev-cmd/mirror.rb b/Library/Homebrew/dev-cmd/mirror.rb index 6ef150f922..e124175205 100644 --- a/Library/Homebrew/dev-cmd/mirror.rb +++ b/Library/Homebrew/dev-cmd/mirror.rb @@ -15,6 +15,10 @@ module Homebrew EOS flag "--bintray-org=", description: "Upload to the specified Bintray organisation (default: homebrew)." + flag "--bintray-repo=", + description: "Upload to the specified Bintray repository (default: mirror)." + switch "--no-publish", + description: "Upload to Bintray, but don't publish." switch :verbose switch :debug hide_from_man_page! @@ -26,11 +30,12 @@ module Homebrew mirror_args.parse bintray_org = args.bintray_org || "homebrew" + bintray_repo = args.bintray_repo || "mirror" bintray = Bintray.new(org: bintray_org) args.formulae.each do |formula| - mirror_url = bintray.mirror_formula(formula) + mirror_url = bintray.mirror_formula(formula, repo: bintray_repo, publish_package: !args.no_publish?) ohai "Mirrored #{formula.full_name} to #{mirror_url}!" end end diff --git a/Library/Homebrew/dev-cmd/pr-pull.rb b/Library/Homebrew/dev-cmd/pr-pull.rb index 4c075be48e..3eb58d2e61 100644 --- a/Library/Homebrew/dev-cmd/pr-pull.rb +++ b/Library/Homebrew/dev-cmd/pr-pull.rb @@ -41,6 +41,11 @@ module Homebrew description: "Upload to the specified Bintray organisation (default: homebrew)." flag "--tap=", description: "Target tap repository (default: homebrew/core)." + flag "--root-url=", + description: "Use the specified as the root of the bottle's URL instead of Homebrew's default." + flag "--bintray-mirror=", + description: "Use the specified Bintray repository to automatically mirror stable URLs "\ + "defined in the formulae (default: mirror)" switch :verbose switch :debug min_named 1 @@ -128,6 +133,30 @@ module Homebrew def formulae_need_bottles?(tap, original_commit) return if Homebrew.args.dry_run? + changed_formulae(tap, original_commit).any? do |f| + !f.bottle_unneeded? && !f.bottle_disabled? + end + end + + def mirror_formulae(tap, original_commit, publish: true, org:, repo:) + changed_formulae(tap, original_commit).select do |f| + stable_urls = [f.stable.url] + f.stable.mirrors + stable_urls.grep(%r{^https://dl.bintray.com/#{org}/#{repo}/}) do |mirror_url| + if Homebrew.args.dry_run? + puts "brew mirror #{f.full_name}" + else + odebug "Mirroring #{mirror_url}" + mirror_args = ["mirror", f.full_name] + mirror_args << "--bintray-org=#{org}" if org + mirror_args << "--bintray-repo=#{repo}" if repo + mirror_args << "--no-publish" unless publish + system HOMEBREW_BREW_FILE, *mirror_args + end + end + end + end + + def changed_formulae(tap, original_commit) if Homebrew::EnvConfig.disable_load_formula? opoo "Can't check if updated bottles are necessary as formula loading is disabled!" return @@ -136,19 +165,17 @@ module Homebrew Utils.popen_read("git", "-C", tap.path, "diff-tree", "-r", "--name-only", "--diff-filter=AM", original_commit, "HEAD", "--", tap.formula_dir) - .lines.each do |line| + .lines.map do |line| next unless line.end_with? ".rb\n" name = "#{tap.name}/#{File.basename(line.chomp, ".rb")}" begin - f = Formula[name] + Formula[name] rescue Exception # rubocop:disable Lint/RescueException # Make sure we catch syntax errors. next end - return true if !f.bottle_unneeded? && !f.bottle_disabled? - end - nil + end.compact end def download_artifact(url, dir, pr) @@ -181,12 +208,11 @@ module Homebrew if bintray_user.blank? || bintray_key.blank? odie "Missing HOMEBREW_BINTRAY_USER or HOMEBREW_BINTRAY_KEY variables!" if !args.dry_run? && !args.no_upload? - else - bintray = Bintray.new(user: bintray_user, key: bintray_key, org: bintray_org) end workflow = args.workflow || "tests.yml" artifact = args.artifact || "bottles" + mirror_repo = args.bintray_mirror || "mirror" tap = Tap.fetch(args.tap || CoreTap.instance.name) setup_git_environment! @@ -206,6 +232,10 @@ module Homebrew cherry_pick_pr! pr, path: tap.path signoff! pr, path: tap.path unless args.clean? + unless args.no_upload? + mirror_formulae(tap, original_commit, org: bintray_org, repo: mirror_repo, publish: !args.no_publish?) + end + unless formulae_need_bottles? tap, original_commit ohai "Skipping artifacts for ##{pr} as the formulae don't need bottles" next @@ -214,41 +244,14 @@ module Homebrew url = GitHub.get_artifact_url(user, repo, pr, workflow_id: workflow, artifact_name: artifact) download_artifact(url, dir, pr) - json_files = Dir["*.json"] - - if Homebrew.args.dry_run? - puts "brew bottle --merge --write #{json_files.join " "}" - else - quiet_system "#{HOMEBREW_PREFIX}/bin/brew", "bottle", "--merge", "--write", *json_files - end - next if args.no_upload? - if Homebrew.args.dry_run? - puts "Upload bottles described by these JSON files to Bintray:\n #{json_files.join("\n ")}" - else - bintray.upload_bottle_json json_files, publish_package: !args.no_publish? - end - - bottles_hash = json_files.reduce({}) do |hash, json_file| - hash.deep_merge(JSON.parse(IO.read(json_file))) - end - - bottles_hash.each do |formula_name, _| - formula = Formula[formula_name] - stable_urls = [formula.stable.url] + formula.stable.mirrors - stable_urls.grep(%r{^https://dl.bintray.com/homebrew/mirror/}) do |mirror_url| - if Homebrew.args.dry_run? - puts "Mirror formulae sources described by these JSON files to Bintray:\n #{json_files.join("\n ")}" - next - end - - next if bintray.stable_mirrored?(mirror_url) - - mirror_url = bintray.mirror_formula(formula) - ohai "Mirrored #{formula.full_name} to #{mirror_url}!" - end - end + upload_args = ["pr-upload"] + upload_args << "--no-publish" if args.no_publish? + upload_args << "--dry-run" if args.dry_run? + upload_args << "--root_url=#{args.root_url}" if args.root_url + upload_args << "--bintray-org=#{bintray_org}" + system HOMEBREW_BREW_FILE, *upload_args end end end From c496e6bfcb19961c9f3b0174cd8d13713d4518fd Mon Sep 17 00:00:00 2001 From: Jonathan Chang Date: Sun, 21 Jun 2020 19:57:39 +1000 Subject: [PATCH 28/82] manpages: update for pr-pull changes --- docs/Manpage.md | 4 ++++ manpages/brew.1 | 8 ++++++++ 2 files changed, 12 insertions(+) diff --git a/docs/Manpage.md b/docs/Manpage.md index 0b746685a1..eff6277c94 100644 --- a/docs/Manpage.md +++ b/docs/Manpage.md @@ -901,6 +901,10 @@ repository. Upload to the specified Bintray organisation (default: homebrew). * `--tap`: Target tap repository (default: homebrew/core). +* `--root-url`: + Use the specified *`URL`* as the root of the bottle's URL instead of Homebrew's default. +* `--bintray-mirror`: + Use the specified Bintray repository to automatically mirror stable URLs defined in the formulae (default: mirror) ### `pr-upload` [*`options`*] diff --git a/manpages/brew.1 b/manpages/brew.1 index 49bf5bd86e..d02b4cfaf4 100644 --- a/manpages/brew.1 +++ b/manpages/brew.1 @@ -1171,6 +1171,14 @@ Upload to the specified Bintray organisation (default: homebrew)\. \fB\-\-tap\fR Target tap repository (default: homebrew/core)\. . +.TP +\fB\-\-root\-url\fR +Use the specified \fIURL\fR as the root of the bottle\'s URL instead of Homebrew\'s default\. +. +.TP +\fB\-\-bintray\-mirror\fR +Use the specified Bintray repository to automatically mirror stable URLs defined in the formulae (default: mirror) +. .SS "\fBpr\-upload\fR [\fIoptions\fR]" Apply the bottle commit and publish bottles to Bintray\. . From 2b990aa53c12d873ad2513e7168268c28ca234cf Mon Sep 17 00:00:00 2001 From: Jonathan Chang Date: Mon, 22 Jun 2020 00:21:22 +1000 Subject: [PATCH 29/82] pr-pull: pass verbose and debug to subcommands --- Library/Homebrew/dev-cmd/pr-pull.rb | 4 ++++ Library/Homebrew/dev-cmd/pr-upload.rb | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/Library/Homebrew/dev-cmd/pr-pull.rb b/Library/Homebrew/dev-cmd/pr-pull.rb index 3eb58d2e61..bbd1b097e4 100644 --- a/Library/Homebrew/dev-cmd/pr-pull.rb +++ b/Library/Homebrew/dev-cmd/pr-pull.rb @@ -147,6 +147,8 @@ module Homebrew else odebug "Mirroring #{mirror_url}" mirror_args = ["mirror", f.full_name] + mirror_args << "--debug" if Homebrew.args.debug? + mirror_args << "--verbose" if Homebrew.args.verbose? mirror_args << "--bintray-org=#{org}" if org mirror_args << "--bintray-repo=#{repo}" if repo mirror_args << "--no-publish" unless publish @@ -247,6 +249,8 @@ module Homebrew next if args.no_upload? upload_args = ["pr-upload"] + upload_args << "--debug" if Homebrew.args.debug? + upload_args << "--verbose" if Homebrew.args.verbose? upload_args << "--no-publish" if args.no_publish? upload_args << "--dry-run" if args.dry_run? upload_args << "--root_url=#{args.root_url}" if args.root_url diff --git a/Library/Homebrew/dev-cmd/pr-upload.rb b/Library/Homebrew/dev-cmd/pr-upload.rb index 36382b9908..86b1d83717 100644 --- a/Library/Homebrew/dev-cmd/pr-upload.rb +++ b/Library/Homebrew/dev-cmd/pr-upload.rb @@ -21,6 +21,8 @@ module Homebrew description: "Upload to the specified Bintray organisation (default: homebrew)." flag "--root-url=", description: "Use the specified as the root of the bottle's URL instead of Homebrew's default." + switch :verbose + switch :debug end end @@ -31,6 +33,8 @@ module Homebrew bintray = Bintray.new(org: bintray_org) bottle_args = ["bottle", "--merge", "--write"] + bottle_args << "--verbose" if args.verbose? + bottle_args << "--debug" if args.debug? bottle_args << "--root-url=#{args.root_url}" if args.root_url odie "No JSON files found in the current working directory" if Dir["*.json"].empty? bottle_args += Dir["*.json"] From 3f211415ca7c87a3a225272563de73dcb9fbfcfc Mon Sep 17 00:00:00 2001 From: rmnull Date: Mon, 22 Jun 2020 01:22:22 +0530 Subject: [PATCH 30/82] don't warn "no interpreter found" for Shared ELF objects. --- Library/Homebrew/os/linux/elf.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/os/linux/elf.rb b/Library/Homebrew/os/linux/elf.rb index 6e7eda8d3a..83cd6e8982 100644 --- a/Library/Homebrew/os/linux/elf.rb +++ b/Library/Homebrew/os/linux/elf.rb @@ -78,7 +78,7 @@ module ELFShim begin patchelf_patcher.interpreter.present? rescue PatchELF::PatchError => e - opoo e + opoo e unless e.to_s.start_with? "No interpreter found" false end elsif which "readelf" From d1b6a8581900458ee5262d727b5611d7290d8ccf Mon Sep 17 00:00:00 2001 From: rmnull Date: Mon, 22 Jun 2020 10:23:00 +0530 Subject: [PATCH 31/82] show help for aliased commands --- Library/Homebrew/brew.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/brew.rb b/Library/Homebrew/brew.rb index 17a008a778..1fe2a8c576 100644 --- a/Library/Homebrew/brew.rb +++ b/Library/Homebrew/brew.rb @@ -58,6 +58,7 @@ begin help_flag = true elsif !cmd && !help_flag_list.include?(arg) cmd = ARGV.delete_at(i) + cmd = Commands::HOMEBREW_INTERNAL_COMMAND_ALIASES.fetch(cmd, cmd) end end From 38fdeb4af47888a2308026d2dd61b71d29352571 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2020 06:01:48 +0000 Subject: [PATCH 32/82] build(deps): bump parser from 2.7.1.3 to 2.7.1.4 in /Library/Homebrew Bumps [parser](https://github.com/whitequark/parser) from 2.7.1.3 to 2.7.1.4. - [Release notes](https://github.com/whitequark/parser/releases) - [Changelog](https://github.com/whitequark/parser/blob/master/CHANGELOG.md) - [Commits](https://github.com/whitequark/parser/compare/v2.7.1.3...v2.7.1.4) Signed-off-by: dependabot-preview[bot] --- Library/Homebrew/Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/Gemfile.lock b/Library/Homebrew/Gemfile.lock index cf3b08c65d..96d9e2db90 100644 --- a/Library/Homebrew/Gemfile.lock +++ b/Library/Homebrew/Gemfile.lock @@ -51,8 +51,8 @@ GEM parallel (1.19.2) parallel_tests (3.0.0) parallel - parser (2.7.1.3) - ast (~> 2.4.0) + parser (2.7.1.4) + ast (~> 2.4.1) plist (3.5.0) rainbow (3.0.0) rdiscount (2.2.0.1) From f8806dc5a325a0c53d8280875b0750b327ca4c66 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2020 10:33:56 +0000 Subject: [PATCH 33/82] build(deps): bump rubocop from 0.85.1 to 0.86.0 in /Library/Homebrew Bumps [rubocop](https://github.com/rubocop-hq/rubocop) from 0.85.1 to 0.86.0. - [Release notes](https://github.com/rubocop-hq/rubocop/releases) - [Changelog](https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop-hq/rubocop/compare/v0.85.1...v0.86.0) Signed-off-by: dependabot-preview[bot] --- Library/Homebrew/Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/Gemfile.lock b/Library/Homebrew/Gemfile.lock index 96d9e2db90..bdb62b11cb 100644 --- a/Library/Homebrew/Gemfile.lock +++ b/Library/Homebrew/Gemfile.lock @@ -82,13 +82,13 @@ GEM rspec-support (3.9.3) rspec-wait (0.0.9) rspec (>= 3, < 4) - rubocop (0.85.1) + rubocop (0.86.0) parallel (~> 1.10) parser (>= 2.7.0.1) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 1.7) rexml - rubocop-ast (>= 0.0.3) + rubocop-ast (>= 0.0.3, < 1.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 1.4.0, < 2.0) rubocop-ast (0.0.3) From 53858e2201520a9e87522eef27a952cf8510384d Mon Sep 17 00:00:00 2001 From: vidusheeamoli Date: Mon, 22 Jun 2020 16:03:31 +0530 Subject: [PATCH 34/82] Check in new definitions to Sorbet New files were created after the last Sorbet update. New definitions were added to hidden-definitions and rbi/todo was updated --- .../sorbet/rbi/hidden-definitions/hidden.rbi | 155 +++++++++++------- Library/Homebrew/sorbet/rbi/todo.rbi | 3 + 2 files changed, 103 insertions(+), 55 deletions(-) diff --git a/Library/Homebrew/sorbet/rbi/hidden-definitions/hidden.rbi b/Library/Homebrew/sorbet/rbi/hidden-definitions/hidden.rbi index 98041997fe..1280eff6e2 100644 --- a/Library/Homebrew/sorbet/rbi/hidden-definitions/hidden.rbi +++ b/Library/Homebrew/sorbet/rbi/hidden-definitions/hidden.rbi @@ -13388,6 +13388,7 @@ class Object HOMEBREW_DEFAULT_TEMP = ::T.let(nil, ::T.untyped) HOMEBREW_HELP = ::T.let(nil, ::T.untyped) HOMEBREW_LIBRARY_PATH = ::T.let(nil, ::T.untyped) + HOMEBREW_PATCHELF_RB = ::T.let(nil, ::T.untyped) HOMEBREW_TAP_CASK_REGEX = ::T.let(nil, ::T.untyped) HOMEBREW_TAP_FORMULA_REGEX = ::T.let(nil, ::T.untyped) OFFICIAL_CASK_TAPS = ::T.let(nil, ::T.untyped) @@ -13557,6 +13558,26 @@ end ParseError = Racc::ParseError +class Parser::AST::Processor + def on_find_pattern(node); end + + def on_forward_arg(node); end +end + +class Parser::Builders::Default + def find_pattern(lbrack_t, elements, rbrack_t); end + + def forward_arg(dots_t); end + + def forward_only_args(begin_t, dots_t, end_t); end +end + +class Parser::Builders::Default + def self.emit_forward_arg(); end + + def self.emit_forward_arg=(emit_forward_arg); end +end + Parser::CurrentRuby = Parser::Ruby26 class Parser::Ruby24 @@ -13872,15 +13893,15 @@ class Parser::Ruby24 def _reduce_332(val, _values, result); end - def _reduce_336(val, _values, result); end + def _reduce_333(val, _values, result); end + + def _reduce_337(val, _values, result); end def _reduce_34(val, _values, result); end - def _reduce_340(val, _values, result); end + def _reduce_341(val, _values, result); end - def _reduce_342(val, _values, result); end - - def _reduce_345(val, _values, result); end + def _reduce_343(val, _values, result); end def _reduce_346(val, _values, result); end @@ -13888,9 +13909,9 @@ class Parser::Ruby24 def _reduce_348(val, _values, result); end - def _reduce_35(val, _values, result); end + def _reduce_349(val, _values, result); end - def _reduce_350(val, _values, result); end + def _reduce_35(val, _values, result); end def _reduce_351(val, _values, result); end @@ -13930,9 +13951,9 @@ class Parser::Ruby24 def _reduce_368(val, _values, result); end - def _reduce_37(val, _values, result); end + def _reduce_369(val, _values, result); end - def _reduce_370(val, _values, result); end + def _reduce_37(val, _values, result); end def _reduce_371(val, _values, result); end @@ -13948,7 +13969,7 @@ class Parser::Ruby24 def _reduce_377(val, _values, result); end - def _reduce_379(val, _values, result); end + def _reduce_378(val, _values, result); end def _reduce_38(val, _values, result); end @@ -13970,9 +13991,9 @@ class Parser::Ruby24 def _reduce_388(val, _values, result); end - def _reduce_39(val, _values, result); end + def _reduce_389(val, _values, result); end - def _reduce_390(val, _values, result); end + def _reduce_39(val, _values, result); end def _reduce_391(val, _values, result); end @@ -14048,19 +14069,19 @@ class Parser::Ruby24 def _reduce_424(val, _values, result); end - def _reduce_426(val, _values, result); end + def _reduce_425(val, _values, result); end def _reduce_427(val, _values, result); end def _reduce_428(val, _values, result); end + def _reduce_429(val, _values, result); end + def _reduce_43(val, _values, result); end - def _reduce_431(val, _values, result); end + def _reduce_432(val, _values, result); end - def _reduce_433(val, _values, result); end - - def _reduce_438(val, _values, result); end + def _reduce_434(val, _values, result); end def _reduce_439(val, _values, result); end @@ -14134,7 +14155,7 @@ class Parser::Ruby24 def _reduce_472(val, _values, result); end - def _reduce_474(val, _values, result); end + def _reduce_473(val, _values, result); end def _reduce_475(val, _values, result); end @@ -14254,7 +14275,7 @@ class Parser::Ruby24 def _reduce_530(val, _values, result); end - def _reduce_532(val, _values, result); end + def _reduce_531(val, _values, result); end def _reduce_533(val, _values, result); end @@ -14284,7 +14305,7 @@ class Parser::Ruby24 def _reduce_546(val, _values, result); end - def _reduce_549(val, _values, result); end + def _reduce_547(val, _values, result); end def _reduce_55(val, _values, result); end @@ -14302,25 +14323,25 @@ class Parser::Ruby24 def _reduce_556(val, _values, result); end - def _reduce_559(val, _values, result); end + def _reduce_557(val, _values, result); end def _reduce_56(val, _values, result); end def _reduce_560(val, _values, result); end - def _reduce_563(val, _values, result); end + def _reduce_561(val, _values, result); end def _reduce_564(val, _values, result); end def _reduce_565(val, _values, result); end - def _reduce_567(val, _values, result); end + def _reduce_566(val, _values, result); end def _reduce_568(val, _values, result); end - def _reduce_57(val, _values, result); end + def _reduce_569(val, _values, result); end - def _reduce_570(val, _values, result); end + def _reduce_57(val, _values, result); end def _reduce_571(val, _values, result); end @@ -14332,23 +14353,25 @@ class Parser::Ruby24 def _reduce_575(val, _values, result); end - def _reduce_588(val, _values, result); end + def _reduce_576(val, _values, result); end def _reduce_589(val, _values, result); end def _reduce_59(val, _values, result); end - def _reduce_594(val, _values, result); end + def _reduce_590(val, _values, result); end def _reduce_595(val, _values, result); end - def _reduce_599(val, _values, result); end + def _reduce_596(val, _values, result); end def _reduce_6(val, _values, result); end def _reduce_60(val, _values, result); end - def _reduce_603(val, _values, result); end + def _reduce_600(val, _values, result); end + + def _reduce_604(val, _values, result); end def _reduce_61(val, _values, result); end @@ -14750,15 +14773,15 @@ class Parser::Ruby26 def _reduce_334(val, _values, result); end - def _reduce_336(val, _values, result); end + def _reduce_335(val, _values, result); end - def _reduce_339(val, _values, result); end + def _reduce_337(val, _values, result); end - def _reduce_343(val, _values, result); end + def _reduce_340(val, _values, result); end - def _reduce_345(val, _values, result); end + def _reduce_344(val, _values, result); end - def _reduce_348(val, _values, result); end + def _reduce_346(val, _values, result); end def _reduce_349(val, _values, result); end @@ -14768,7 +14791,7 @@ class Parser::Ruby26 def _reduce_351(val, _values, result); end - def _reduce_353(val, _values, result); end + def _reduce_352(val, _values, result); end def _reduce_354(val, _values, result); end @@ -14810,7 +14833,7 @@ class Parser::Ruby26 def _reduce_371(val, _values, result); end - def _reduce_373(val, _values, result); end + def _reduce_372(val, _values, result); end def _reduce_374(val, _values, result); end @@ -14828,7 +14851,7 @@ class Parser::Ruby26 def _reduce_380(val, _values, result); end - def _reduce_382(val, _values, result); end + def _reduce_381(val, _values, result); end def _reduce_383(val, _values, result); end @@ -14850,7 +14873,7 @@ class Parser::Ruby26 def _reduce_391(val, _values, result); end - def _reduce_393(val, _values, result); end + def _reduce_392(val, _values, result); end def _reduce_394(val, _values, result); end @@ -14928,20 +14951,20 @@ class Parser::Ruby26 def _reduce_427(val, _values, result); end - def _reduce_429(val, _values, result); end + def _reduce_428(val, _values, result); end def _reduce_430(val, _values, result); end def _reduce_431(val, _values, result); end - def _reduce_434(val, _values, result); end + def _reduce_432(val, _values, result); end - def _reduce_436(val, _values, result); end + def _reduce_435(val, _values, result); end + + def _reduce_437(val, _values, result); end def _reduce_44(val, _values, result); end - def _reduce_441(val, _values, result); end - def _reduce_442(val, _values, result); end def _reduce_443(val, _values, result); end @@ -15012,7 +15035,7 @@ class Parser::Ruby26 def _reduce_475(val, _values, result); end - def _reduce_477(val, _values, result); end + def _reduce_476(val, _values, result); end def _reduce_478(val, _values, result); end @@ -15136,7 +15159,7 @@ class Parser::Ruby26 def _reduce_533(val, _values, result); end - def _reduce_535(val, _values, result); end + def _reduce_534(val, _values, result); end def _reduce_536(val, _values, result); end @@ -15168,7 +15191,7 @@ class Parser::Ruby26 def _reduce_549(val, _values, result); end - def _reduce_552(val, _values, result); end + def _reduce_550(val, _values, result); end def _reduce_553(val, _values, result); end @@ -15184,21 +15207,21 @@ class Parser::Ruby26 def _reduce_559(val, _values, result); end - def _reduce_562(val, _values, result); end + def _reduce_560(val, _values, result); end def _reduce_563(val, _values, result); end - def _reduce_566(val, _values, result); end + def _reduce_564(val, _values, result); end def _reduce_567(val, _values, result); end def _reduce_568(val, _values, result); end - def _reduce_570(val, _values, result); end + def _reduce_569(val, _values, result); end def _reduce_571(val, _values, result); end - def _reduce_573(val, _values, result); end + def _reduce_572(val, _values, result); end def _reduce_574(val, _values, result); end @@ -15210,25 +15233,27 @@ class Parser::Ruby26 def _reduce_578(val, _values, result); end + def _reduce_579(val, _values, result); end + def _reduce_58(val, _values, result); end def _reduce_59(val, _values, result); end - def _reduce_591(val, _values, result); end - def _reduce_592(val, _values, result); end - def _reduce_597(val, _values, result); end + def _reduce_593(val, _values, result); end def _reduce_598(val, _values, result); end + def _reduce_599(val, _values, result); end + def _reduce_6(val, _values, result); end def _reduce_60(val, _values, result); end - def _reduce_602(val, _values, result); end + def _reduce_603(val, _values, result); end - def _reduce_606(val, _values, result); end + def _reduce_607(val, _values, result); end def _reduce_62(val, _values, result); end @@ -15319,6 +15344,22 @@ end class Parser::Ruby26 end +class Parser::Source::TreeRewriter + def as_nested_actions(); end + + def as_replacements(); end + + def import!(foreign_rewriter, offset: T.unsafe(nil)); end +end + +class Parser::Source::TreeRewriter::Action + def contract(); end + + def moved(source_buffer, offset); end + + def nested_actions(); end +end + class Pathname include ::MachOShim def fnmatch?(*_); end @@ -19424,6 +19465,10 @@ class RuboCop::AST::Node def cask_block?(node=T.unsafe(nil)); end + def find_pattern_type?(); end + + def forward_arg_type?(); end + def key_node(node=T.unsafe(nil)); end def method_node(node=T.unsafe(nil)); end diff --git a/Library/Homebrew/sorbet/rbi/todo.rbi b/Library/Homebrew/sorbet/rbi/todo.rbi index cc825a11b2..d48bed4922 100644 --- a/Library/Homebrew/sorbet/rbi/todo.rbi +++ b/Library/Homebrew/sorbet/rbi/todo.rbi @@ -3,6 +3,9 @@ # typed: strong module DependencyCollector::Compat; end +module ELFShim::Metadata::PatchELF::PatchError; end +module ELFShim::PatchELF::PatchError; end +module ELFShim::PatchELF::Patcher; end module Homebrew::Error; end module MacOS::CLT; end module MacOS::CLT::PKG_PATH; end From d6e587453e166c2c62ef05c06f19b70a21914c7f Mon Sep 17 00:00:00 2001 From: vidusheeamoli Date: Mon, 22 Jun 2020 16:19:11 +0530 Subject: [PATCH 35/82] srb: resolve error 4015. 25 errors => 18 errors --- Library/Homebrew/os/linux.rb | 2 +- Library/Homebrew/os/mac.rb | 2 +- Library/Homebrew/sorbet/rbi/todo.rbi | 7 ------- 3 files changed, 2 insertions(+), 9 deletions(-) diff --git a/Library/Homebrew/os/linux.rb b/Library/Homebrew/os/linux.rb index c035191168..aed872fce4 100644 --- a/Library/Homebrew/os/linux.rb +++ b/Library/Homebrew/os/linux.rb @@ -27,7 +27,7 @@ module OS # rubocop:disable Naming/ConstantName # rubocop:disable Style/MutableConstant - ::MacOS = self + ::MacOS = OS::Mac # rubocop:enable Naming/ConstantName # rubocop:enable Style/MutableConstant diff --git a/Library/Homebrew/os/mac.rb b/Library/Homebrew/os/mac.rb index 4e77f0cf25..654f2d5c04 100644 --- a/Library/Homebrew/os/mac.rb +++ b/Library/Homebrew/os/mac.rb @@ -12,7 +12,7 @@ module OS # rubocop:disable Naming/ConstantName # rubocop:disable Style/MutableConstant - ::MacOS = self + ::MacOS = OS::Mac # rubocop:enable Naming/ConstantName # rubocop:enable Style/MutableConstant diff --git a/Library/Homebrew/sorbet/rbi/todo.rbi b/Library/Homebrew/sorbet/rbi/todo.rbi index d48bed4922..99d305e153 100644 --- a/Library/Homebrew/sorbet/rbi/todo.rbi +++ b/Library/Homebrew/sorbet/rbi/todo.rbi @@ -7,13 +7,6 @@ module ELFShim::Metadata::PatchELF::PatchError; end module ELFShim::PatchELF::PatchError; end module ELFShim::PatchELF::Patcher; end module Homebrew::Error; end -module MacOS::CLT; end -module MacOS::CLT::PKG_PATH; end -module MacOS::Version; end -module MacOS::Version::SYMBOLS; end -module MacOS::X11; end -module MacOS::XQuartz; end -module MacOS::Xcode; end module OS::Mac::Version::NULL; end module T::CompatibilityPatches::RSpecCompatibility::MethodDoubleExtensions; end module T::CompatibilityPatches::RSpecCompatibility::RecorderExtensions; end From 8a62f891e1dbd816e5ea55e644d09c3d92fb2afb Mon Sep 17 00:00:00 2001 From: Dario Vladovic Date: Mon, 22 Jun 2020 13:24:41 +0200 Subject: [PATCH 36/82] formula: add std_cargo_args --- Library/Homebrew/formula.rb | 7 +++++++ Library/Homebrew/formula_creator.rb | 2 +- Library/Homebrew/rubocops/text.rb | 2 +- Library/Homebrew/test/rubocops/text_spec.rb | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 90448c1549..ca7e93514e 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -1354,6 +1354,11 @@ class Formula "#" end + # Standard parameters for cargo builds. + def std_cargo_args + ["--locked", "--root", prefix, "--path", "."] + end + # Standard parameters for CMake builds. # Setting `CMAKE_FIND_FRAMEWORK` to "LAST" tells CMake to search for our # libraries before trying to utilize Frameworks, many of which will be from @@ -1930,6 +1935,8 @@ class Formula case cmd when "./configure" pretty_args -= %w[--disable-dependency-tracking --disable-debug --disable-silent-rules] + when "cargo" + pretty_args -= std_cargo_args when "cmake" pretty_args -= std_cmake_args when "go" diff --git a/Library/Homebrew/formula_creator.rb b/Library/Homebrew/formula_creator.rb index caa1d81891..5e734c9072 100644 --- a/Library/Homebrew/formula_creator.rb +++ b/Library/Homebrew/formula_creator.rb @@ -175,7 +175,7 @@ module Homebrew bin.install libexec/"bin/\#{name}" bin.env_script_all_files(libexec/"bin", :GEM_HOME => ENV["GEM_HOME"]) <% elsif mode == :rust %> - system "cargo", "install", "--locked", "--root", prefix, "--path", "." + system "cargo", "install", *std_cargo_args <% else %> # Remove unrecognized options if warned by configure system "./configure", "--disable-debug", diff --git a/Library/Homebrew/rubocops/text.rb b/Library/Homebrew/rubocops/text.rb index 97508b9b33..6938d5f5fc 100644 --- a/Library/Homebrew/rubocops/text.rb +++ b/Library/Homebrew/rubocops/text.rb @@ -60,7 +60,7 @@ module RuboCop end find_method_with_args(body_node, :system, "cargo", "build") do - problem "use \"cargo\", \"install\", \"--root\", prefix, \"--path\", \".\"" + problem "use \"cargo\", \"install\", *std_cargo_args" end end end diff --git a/Library/Homebrew/test/rubocops/text_spec.rb b/Library/Homebrew/test/rubocops/text_spec.rb index b446cebd26..38204d4ef6 100644 --- a/Library/Homebrew/test/rubocops/text_spec.rb +++ b/Library/Homebrew/test/rubocops/text_spec.rb @@ -210,7 +210,7 @@ describe RuboCop::Cop::FormulaAudit::Text do def install system "cargo", "build" - ^^^^^^^^^^^^^^^^^^^^^^^ use \"cargo\", \"install\", \"--root\", prefix, \"--path\", \".\" + ^^^^^^^^^^^^^^^^^^^^^^^ use \"cargo\", \"install\", *std_cargo_args end end RUBY From 38b18ac2524a93e4bab731be59eccaf2965b79f1 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 22 Jun 2020 14:07:31 +0100 Subject: [PATCH 37/82] brew vendor-gems: commit updates. --- Library/Homebrew/vendor/bundle/bundler/setup.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/vendor/bundle/bundler/setup.rb b/Library/Homebrew/vendor/bundle/bundler/setup.rb index c510046594..8f83d8d1f7 100644 --- a/Library/Homebrew/vendor/bundle/bundler/setup.rb +++ b/Library/Homebrew/vendor/bundle/bundler/setup.rb @@ -46,7 +46,7 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/mechanize-2.7.6/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/mustache-1.1.1/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/parallel-1.19.2/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/parallel_tests-3.0.0/lib" -$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/parser-2.7.1.3/lib" +$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/parser-2.7.1.4/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/plist-3.5.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rainbow-3.0.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/extensions/universal-darwin-19/2.6.0/rdiscount-2.2.0.1" @@ -65,7 +65,7 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-wait-0.0.9/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-ast-0.0.3/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ruby-progressbar-1.10.1/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/unicode-display_width-1.7.0/lib" -$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-0.85.1/lib" +$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-0.86.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-performance-1.6.1/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-rspec-1.40.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ruby-macho-2.2.0/lib" From dd50714d1e3d84de21025acc6459663e1f108a93 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 22 Jun 2020 14:09:33 +0100 Subject: [PATCH 38/82] Fix RuboCop failures. --- Library/Homebrew/.rubocop.yml | 2 +- Library/Homebrew/download_strategy.rb | 2 +- Library/Homebrew/os/mac/version.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Library/Homebrew/.rubocop.yml b/Library/Homebrew/.rubocop.yml index 958fb53548..c38bbe045f 100644 --- a/Library/Homebrew/.rubocop.yml +++ b/Library/Homebrew/.rubocop.yml @@ -56,7 +56,7 @@ Metrics/ClassLength: Max: 1400 Metrics/CyclomaticComplexity: Enabled: true - Max: 75 + Max: 85 Metrics/MethodLength: Enabled: true Max: 300 diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index bb6b6f1f03..4295a8f0c8 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -614,7 +614,7 @@ class GitDownloadStrategy < VCSDownloadStrategy super @ref_type ||= :branch @ref ||= "master" - @shallow = meta.fetch(:shallow) { true } + @shallow = meta.fetch(:shallow, true) end def source_modified_time diff --git a/Library/Homebrew/os/mac/version.rb b/Library/Homebrew/os/mac/version.rb index 9fcfc926a1..7d3607cfc0 100644 --- a/Library/Homebrew/os/mac/version.rb +++ b/Library/Homebrew/os/mac/version.rb @@ -32,7 +32,7 @@ module OS end def to_sym - SYMBOLS.invert.fetch(@version) { :dunno } + SYMBOLS.invert.fetch(@version, :dunno) end def pretty_name From 049528132582a5587f353a8a015a8f918ecdab44 Mon Sep 17 00:00:00 2001 From: William Ma Date: Mon, 22 Jun 2020 10:46:59 -0400 Subject: [PATCH 39/82] home: write tests using cask as argument --- Library/Homebrew/cmd/--cache.rb | 25 ++++++++++------------- Library/Homebrew/cmd/home.rb | 21 +++++++++---------- Library/Homebrew/test/cmd/home_spec.rb | 28 +++++++++++++++++++++++++- 3 files changed, 48 insertions(+), 26 deletions(-) diff --git a/Library/Homebrew/cmd/--cache.rb b/Library/Homebrew/cmd/--cache.rb index dc081fc083..63408643da 100644 --- a/Library/Homebrew/cmd/--cache.rb +++ b/Library/Homebrew/cmd/--cache.rb @@ -32,23 +32,20 @@ module Homebrew puts HOMEBREW_CACHE else args.named.each do |name| + formula = Formulary.factory name + if Fetch.fetch_bottle?(formula) + puts formula.bottle.cached_download + else + puts formula.cached_download + end + rescue FormulaUnavailableError begin - formula = Formulary.factory name - if Fetch.fetch_bottle?(formula) - puts formula.bottle.cached_download - else - puts formula.cached_download - end - rescue FormulaUnavailableError => e - begin - cask = Cask::CaskLoader.load name - puts "cask: #{Cask::Cmd::Cache.cached_location(cask)}" - rescue Cask::CaskUnavailableError - ofail "No available formula or cask with the name \"#{name}\"" - end + cask = Cask::CaskLoader.load name + puts "cask: #{Cask::Cmd::Cache.cached_location(cask)}" + rescue Cask::CaskUnavailableError + ofail "No available formula or cask with the name \"#{name}\"" end end end end - end diff --git a/Library/Homebrew/cmd/home.rb b/Library/Homebrew/cmd/home.rb index cc6f2a780d..ed42a5a99b 100644 --- a/Library/Homebrew/cmd/home.rb +++ b/Library/Homebrew/cmd/home.rb @@ -25,21 +25,20 @@ module Homebrew if args.no_named? exec_browser HOMEBREW_WWW else - homepages = args.named.flat_map do |name| + homepages = args.named.flat_map do |ref| + [Formulary.factory(ref).homepage] + rescue FormulaUnavailableError => e + puts e.message begin - [Formulary.factory(name).homepage] - rescue FormulaUnavailableError => e + cask = Cask::CaskLoader.load(ref) + puts "Found a cask with ref \"#{ref}\" instead." + [cask.homepage] + rescue Cask::CaskUnavailableError => e puts e.message - begin - cask = Cask::CaskLoader.load(name) - puts "Found a cask named \"#{name}\" instead." - [cask.homepage] - rescue Cask::CaskUnavailableError - [] - end + [] end end - exec_browser *homepages + exec_browser(*homepages) unless homepages.empty? end end end diff --git a/Library/Homebrew/test/cmd/home_spec.rb b/Library/Homebrew/test/cmd/home_spec.rb index 15aee21eb2..c575f3601d 100644 --- a/Library/Homebrew/test/cmd/home_spec.rb +++ b/Library/Homebrew/test/cmd/home_spec.rb @@ -1,17 +1,43 @@ # frozen_string_literal: true require "cmd/shared_examples/args_parse" +require "support/lib/config" describe "Homebrew.home_args" do it_behaves_like "parseable arguments" end describe "brew home", :integration_test do + let(:testballhome_homepage) { + Formula["testballhome"].homepage + } + + let(:local_caffeine_homepage) { + Cask::CaskLoader.load(cask_path("local-caffeine")).homepage + } + it "opens the homepage for a given Formula" do setup_test_formula "testballhome" expect { brew "home", "testballhome", "HOMEBREW_BROWSER" => "echo" } - .to output("#{Formula["testballhome"].homepage}\n").to_stdout + .to output("#{testballhome_homepage}\n").to_stdout + .and not_to_output.to_stderr + .and be_a_success + end + + it "opens the homepage for a given Cask" do + expect { brew "home", cask_path("local-caffeine"), "HOMEBREW_BROWSER" => "echo" } + .to output(/Found a cask with ref ".*" instead.\n#{local_caffeine_homepage}/m).to_stdout + .and not_to_output.to_stderr + .and be_a_success + end + + it "opens the homepages for a given formula and Cask" do + setup_test_formula "testballhome" + + expect { brew "home", "testballhome", cask_path("local-caffeine"), "HOMEBREW_BROWSER" => "echo" } + .to output(/Found a cask with ref ".*" instead.\n#{testballhome_homepage} #{local_caffeine_homepage}/m) + .to_stdout .and not_to_output.to_stderr .and be_a_success end From cf6ff4d84ce30d79b2247d95daff96f01b917793 Mon Sep 17 00:00:00 2001 From: William Ma Date: Mon, 22 Jun 2020 11:24:49 -0400 Subject: [PATCH 40/82] cache: add test for casks --- Library/Homebrew/test/cmd/--cache_spec.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Library/Homebrew/test/cmd/--cache_spec.rb b/Library/Homebrew/test/cmd/--cache_spec.rb index 42b452ec60..fc467f5793 100644 --- a/Library/Homebrew/test/cmd/--cache_spec.rb +++ b/Library/Homebrew/test/cmd/--cache_spec.rb @@ -13,4 +13,18 @@ describe "brew --cache", :integration_test do .and not_to_output.to_stderr .and be_a_success end + + it "prints the cache files for a given Cask" do + expect { brew "--cache", cask_path("local-caffeine") } + .to output(%r{cask: #{HOMEBREW_CACHE}/downloads/[\da-f]{64}--caffeine\.zip}).to_stdout + .and not_to_output.to_stderr + .and be_a_success + end + + it "prints the cache files for a given Formula and Cask" do + expect { brew "--cache", testball, cask_path("local-caffeine") } + .to output(%r{#{HOMEBREW_CACHE}/downloads/[\da-f]{64}--testball-.*\ncask: #{HOMEBREW_CACHE}/downloads/[\da-f]{64}--caffeine\.zip}).to_stdout + .and not_to_output.to_stderr + .and be_a_success + end end From a919ba9ccd7c26179cd4490ce467ffa0f255ce80 Mon Sep 17 00:00:00 2001 From: vidusheeamoli Date: Mon, 22 Jun 2020 20:59:39 +0530 Subject: [PATCH 41/82] srb: resolve error 4012. 18 errors => 13 errors --- Library/Homebrew/os/mac/xquartz.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Library/Homebrew/os/mac/xquartz.rb b/Library/Homebrew/os/mac/xquartz.rb index 5df7112760..76ed06ffd8 100644 --- a/Library/Homebrew/os/mac/xquartz.rb +++ b/Library/Homebrew/os/mac/xquartz.rb @@ -2,9 +2,7 @@ module OS module Mac - X11 = XQuartz = Module.new # rubocop:disable Style/MutableConstant - - module XQuartz + X11 = XQuartz = Module.new do # rubocop:disable Style/MutableConstant module_function DEFAULT_BUNDLE_PATH = Pathname.new("Applications/Utilities/XQuartz.app").freeze From 36520b0a9d54a19635b953613ed7a37863ae9a7e Mon Sep 17 00:00:00 2001 From: William Ma Date: Mon, 22 Jun 2020 11:29:46 -0400 Subject: [PATCH 42/82] cache: fix bug when calling class method --- Library/Homebrew/cask/cmd/--cache.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cask/cmd/--cache.rb b/Library/Homebrew/cask/cmd/--cache.rb index f54c1484fc..7aa96ec33f 100644 --- a/Library/Homebrew/cask/cmd/--cache.rb +++ b/Library/Homebrew/cask/cmd/--cache.rb @@ -16,7 +16,7 @@ module Cask def run casks.each do |cask| - puts cached_location(cask) + puts self.class.cached_location(cask) end end From 7c24ff19d56b73051b3e7f8f6f3fd0a8b325dcb6 Mon Sep 17 00:00:00 2001 From: William Ma Date: Mon, 22 Jun 2020 11:36:04 -0400 Subject: [PATCH 43/82] args: remove unused field --- Library/Homebrew/cli/args.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/Library/Homebrew/cli/args.rb b/Library/Homebrew/cli/args.rb index 75959eb054..ac5fd1875b 100644 --- a/Library/Homebrew/cli/args.rb +++ b/Library/Homebrew/cli/args.rb @@ -38,7 +38,6 @@ module Homebrew @resolved_formulae = nil @formulae_paths = nil @casks = nil - @formulae_and_casks = nil @kegs = nil self[:named_args] = named_args From bd2f5c3b320dec0af48b51bc8bc126f25098d008 Mon Sep 17 00:00:00 2001 From: William Ma Date: Mon, 22 Jun 2020 11:42:15 -0400 Subject: [PATCH 44/82] test cache: split regex into multiple lines --- Library/Homebrew/test/cmd/--cache_spec.rb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/test/cmd/--cache_spec.rb b/Library/Homebrew/test/cmd/--cache_spec.rb index fc467f5793..14397bbfb0 100644 --- a/Library/Homebrew/test/cmd/--cache_spec.rb +++ b/Library/Homebrew/test/cmd/--cache_spec.rb @@ -23,7 +23,12 @@ describe "brew --cache", :integration_test do it "prints the cache files for a given Formula and Cask" do expect { brew "--cache", testball, cask_path("local-caffeine") } - .to output(%r{#{HOMEBREW_CACHE}/downloads/[\da-f]{64}--testball-.*\ncask: #{HOMEBREW_CACHE}/downloads/[\da-f]{64}--caffeine\.zip}).to_stdout + .to output( + %r{ + #{HOMEBREW_CACHE}/downloads/[\da-f]{64}--testball-.*\n + cask:\s#{HOMEBREW_CACHE}/downloads/[\da-f]{64}--caffeine\.zip + }x, + ).to_stdout .and not_to_output.to_stderr .and be_a_success end From 68fc0398ca56b2822074e3cd6d38c40f620da555 Mon Sep 17 00:00:00 2001 From: Peter Lewis <820394+peterlewis@users.noreply.github.com> Date: Mon, 22 Jun 2020 17:08:27 +0100 Subject: [PATCH 45/82] =?UTF-8?q?'Why=20haven=E2=80=99t=20you=20pulled=20m?= =?UTF-8?q?y=20pull=20request=3F'=20change?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I propose changing 'Why haven’t you pulled my pull request?' to 'Why haven’t you merged my pull request?' as, unless I'm missing a trick, this wording would fit more appropriately with what the question trying to ask? --- docs/FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index 2e728c43ac..d776a3d734 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -152,7 +152,7 @@ creating a separate user account especially for use of Homebrew. If it’s not in `man brew`, it’s probably an external command. These are documented [here](External-Commands.md). -## Why haven’t you pulled my pull request? +## Why haven’t you merged my pull request? If it’s been a while, bump it with a “bump” comment. Sometimes we miss requests and there are plenty of them. Maybe we were thinking on something. It will encourage consideration. In the meantime if you could rebase the pull request so that it can be cherry-picked more easily we will love you for a long time. ## Can I edit formulae myself? From 8d29e79f7eb4c6169fd6b0ec2149a7bcf51be45b Mon Sep 17 00:00:00 2001 From: Misty De Meo Date: Mon, 22 Jun 2020 11:11:51 -0700 Subject: [PATCH 46/82] OS::Mac::Version: add Big Sur --- Library/Homebrew/os/mac/version.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/os/mac/version.rb b/Library/Homebrew/os/mac/version.rb index 7d3607cfc0..0ca02de626 100644 --- a/Library/Homebrew/os/mac/version.rb +++ b/Library/Homebrew/os/mac/version.rb @@ -6,6 +6,7 @@ module OS module Mac class Version < ::Version SYMBOLS = { + big_sur: "10.16", catalina: "10.15", mojave: "10.14", high_sierra: "10.13", From 6106bfc4976dff2b03cf3fadbbf92dd1fd9e0f09 Mon Sep 17 00:00:00 2001 From: rmnull Date: Tue, 23 Jun 2020 00:09:41 +0530 Subject: [PATCH 47/82] Enable patchelf.rb for HOMEBREW_DEVELOPERs. HOMEBREW_PATCHELF_RB is enabled on 2 cases. 1) `HOMEBREW_PATCHELF_RB` is set 2) `HOMEBREW_DEVELOPER` is set , and `HOMEBREW_NO_PATCHELF_RB` is not set. use `HOMEBREW_NO_PATCHELF_RB` to turn it off for devs. Note: When HOMEBREW_PATCHELF_RB and HOMEBREW_NO_PATCHELF_RB both are present, it is on --- Library/Homebrew/os/linux/global.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/os/linux/global.rb b/Library/Homebrew/os/linux/global.rb index fb74e0afa3..31ada6196e 100644 --- a/Library/Homebrew/os/linux/global.rb +++ b/Library/Homebrew/os/linux/global.rb @@ -1,7 +1,8 @@ # frozen_string_literal: true # enables experimental readelf.rb, patchelf support. -HOMEBREW_PATCHELF_RB = ENV["HOMEBREW_PATCHELF_RB"].present?.freeze +HOMEBREW_PATCHELF_RB = (ENV["HOMEBREW_PATCHELF_RB"].present? || + (ENV["HOMEBREW_DEVELOPER"].present? && ENV["HOMEBREW_NO_PATCHELF_RB"].blank?)).freeze module Homebrew DEFAULT_PREFIX ||= if Homebrew::EnvConfig.force_homebrew_on_linux? From 6a3f18b0ae65806710c8d7d7a3b95bef81b05b11 Mon Sep 17 00:00:00 2001 From: Misty De Meo Date: Mon, 22 Jun 2020 11:50:49 -0700 Subject: [PATCH 48/82] OS::Mac::CPU: add Apple Silicon Co-authored-by: Shaun Jackman --- Library/Homebrew/extend/os/mac/hardware/cpu.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Library/Homebrew/extend/os/mac/hardware/cpu.rb b/Library/Homebrew/extend/os/mac/hardware/cpu.rb index 1616a7aa67..fa8436d08d 100644 --- a/Library/Homebrew/extend/os/mac/hardware/cpu.rb +++ b/Library/Homebrew/extend/os/mac/hardware/cpu.rb @@ -11,12 +11,16 @@ module Hardware case sysctl_int("hw.cputype") when 7 :intel + when MachO::Headers::CPU_TYPE_ARM64 + :arm else :dunno end end def family + return :dunno if arm? + case sysctl_int("hw.cpufamily") when 0x73d67300 # Yonah: Core Solo/Duo :core From 2a11bcf50191766b6ffe088d93d21a73ff292d96 Mon Sep 17 00:00:00 2001 From: William Ma Date: Mon, 22 Jun 2020 15:39:15 -0400 Subject: [PATCH 49/82] rework error handling to show the error for both formula and cask loading --- Library/Homebrew/cmd/--cache.rb | 8 +++++--- Library/Homebrew/cmd/home.rb | 20 ++++++++++---------- 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/Library/Homebrew/cmd/--cache.rb b/Library/Homebrew/cmd/--cache.rb index 63408643da..63a61485db 100644 --- a/Library/Homebrew/cmd/--cache.rb +++ b/Library/Homebrew/cmd/--cache.rb @@ -38,12 +38,14 @@ module Homebrew else puts formula.cached_download end - rescue FormulaUnavailableError + rescue FormulaUnavailableError => fe begin cask = Cask::CaskLoader.load name puts "cask: #{Cask::Cmd::Cache.cached_location(cask)}" - rescue Cask::CaskUnavailableError - ofail "No available formula or cask with the name \"#{name}\"" + rescue Cask::CaskUnavailableError => ce + odie "No available formula or cask with the name \"#{name}\"\n" \ + "#{fe.message}\n" \ + "#{ce.message}\n" end end end diff --git a/Library/Homebrew/cmd/home.rb b/Library/Homebrew/cmd/home.rb index ed42a5a99b..575c98c2b0 100644 --- a/Library/Homebrew/cmd/home.rb +++ b/Library/Homebrew/cmd/home.rb @@ -25,20 +25,20 @@ module Homebrew if args.no_named? exec_browser HOMEBREW_WWW else - homepages = args.named.flat_map do |ref| - [Formulary.factory(ref).homepage] - rescue FormulaUnavailableError => e - puts e.message + homepages = args.named.map do |ref| + Formulary.factory(ref).homepage + rescue FormulaUnavailableError => fe begin cask = Cask::CaskLoader.load(ref) - puts "Found a cask with ref \"#{ref}\" instead." - [cask.homepage] - rescue Cask::CaskUnavailableError => e - puts e.message - [] + puts "Formula \"#{ref}\" not found. Found a cask instead." + cask.homepage + rescue Cask::CaskUnavailableError => ce + odie "No available formula or cask with the name \"#{name}\"\n" \ + "#{fe.message}\n" \ + "#{ce.message}\n" end end - exec_browser(*homepages) unless homepages.empty? + exec_browser(*homepages) end end end From 0e61ca671509779c1836cf97ea28f88e6eeeabc9 Mon Sep 17 00:00:00 2001 From: William Ma Date: Mon, 22 Jun 2020 15:55:51 -0400 Subject: [PATCH 50/82] update tests to match new output format --- Library/Homebrew/test/cmd/home_spec.rb | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Library/Homebrew/test/cmd/home_spec.rb b/Library/Homebrew/test/cmd/home_spec.rb index c575f3601d..2cf41a4b60 100644 --- a/Library/Homebrew/test/cmd/home_spec.rb +++ b/Library/Homebrew/test/cmd/home_spec.rb @@ -12,8 +12,12 @@ describe "brew home", :integration_test do Formula["testballhome"].homepage } + let(:local_caffeine_path) { + cask_path("local-caffeine") + } + let(:local_caffeine_homepage) { - Cask::CaskLoader.load(cask_path("local-caffeine")).homepage + Cask::CaskLoader.load(local_caffeine_path).homepage } it "opens the homepage for a given Formula" do @@ -27,7 +31,8 @@ describe "brew home", :integration_test do it "opens the homepage for a given Cask" do expect { brew "home", cask_path("local-caffeine"), "HOMEBREW_BROWSER" => "echo" } - .to output(/Found a cask with ref ".*" instead.\n#{local_caffeine_homepage}/m).to_stdout + .to output(/Formula "#{local_caffeine_path}" not found. Found a cask instead.\n#{local_caffeine_homepage}/m) + .to_stdout .and not_to_output.to_stderr .and be_a_success end @@ -36,7 +41,7 @@ describe "brew home", :integration_test do setup_test_formula "testballhome" expect { brew "home", "testballhome", cask_path("local-caffeine"), "HOMEBREW_BROWSER" => "echo" } - .to output(/Found a cask with ref ".*" instead.\n#{testballhome_homepage} #{local_caffeine_homepage}/m) + .to output(/Formula "#{local_caffeine_path}" not found. Found a cask instead.\n#{testballhome_homepage} #{local_caffeine_homepage}/m) .to_stdout .and not_to_output.to_stderr .and be_a_success From 89b42bc5228e7a422375cbdd054b24ea32c80a9d Mon Sep 17 00:00:00 2001 From: Misty De Meo Date: Mon, 22 Jun 2020 12:55:59 -0700 Subject: [PATCH 51/82] Install: permit ARM-based Macs --- Library/Homebrew/install.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/install.rb b/Library/Homebrew/install.rb index 18bc534d85..108b51b95c 100644 --- a/Library/Homebrew/install.rb +++ b/Library/Homebrew/install.rb @@ -10,7 +10,7 @@ module Homebrew module_function def check_cpu - return if Hardware::CPU.intel? && Hardware::CPU.is_64_bit? + return if (Hardware::CPU.intel? && Hardware::CPU.is_64_bit?) || Hardware::CPU.arm? message = "Sorry, Homebrew does not support your computer's CPU architecture!" if Hardware::CPU.ppc? From 78ccb0516631e1b15363df33a149e831d49df2bd Mon Sep 17 00:00:00 2001 From: William Ma Date: Mon, 22 Jun 2020 16:07:18 -0400 Subject: [PATCH 52/82] Fix style issues --- Library/Homebrew/cmd/--cache.rb | 10 ++++++---- Library/Homebrew/cmd/home.rb | 10 ++++++---- Library/Homebrew/test/cmd/home_spec.rb | 6 ++---- 3 files changed, 14 insertions(+), 12 deletions(-) diff --git a/Library/Homebrew/cmd/--cache.rb b/Library/Homebrew/cmd/--cache.rb index 63a61485db..2f4a06cea5 100644 --- a/Library/Homebrew/cmd/--cache.rb +++ b/Library/Homebrew/cmd/--cache.rb @@ -38,14 +38,16 @@ module Homebrew else puts formula.cached_download end - rescue FormulaUnavailableError => fe + rescue FormulaUnavailableError => e + formula_error_message = e.message begin cask = Cask::CaskLoader.load name puts "cask: #{Cask::Cmd::Cache.cached_location(cask)}" - rescue Cask::CaskUnavailableError => ce + rescue Cask::CaskUnavailableError => e + cask_error_message = e.message odie "No available formula or cask with the name \"#{name}\"\n" \ - "#{fe.message}\n" \ - "#{ce.message}\n" + "#{formula_error_message}\n" \ + "#{cask_error_message}\n" end end end diff --git a/Library/Homebrew/cmd/home.rb b/Library/Homebrew/cmd/home.rb index 575c98c2b0..2b1171cbb4 100644 --- a/Library/Homebrew/cmd/home.rb +++ b/Library/Homebrew/cmd/home.rb @@ -27,15 +27,17 @@ module Homebrew else homepages = args.named.map do |ref| Formulary.factory(ref).homepage - rescue FormulaUnavailableError => fe + rescue FormulaUnavailableError => e + formula_error_message = e.message begin cask = Cask::CaskLoader.load(ref) puts "Formula \"#{ref}\" not found. Found a cask instead." cask.homepage - rescue Cask::CaskUnavailableError => ce + rescue Cask::CaskUnavailableError => e + cask_error_message = e.message odie "No available formula or cask with the name \"#{name}\"\n" \ - "#{fe.message}\n" \ - "#{ce.message}\n" + "#{formula_error_message}\n" \ + "#{cask_error_message}\n" end end exec_browser(*homepages) diff --git a/Library/Homebrew/test/cmd/home_spec.rb b/Library/Homebrew/test/cmd/home_spec.rb index 2cf41a4b60..17d22ffe94 100644 --- a/Library/Homebrew/test/cmd/home_spec.rb +++ b/Library/Homebrew/test/cmd/home_spec.rb @@ -31,8 +31,7 @@ describe "brew home", :integration_test do it "opens the homepage for a given Cask" do expect { brew "home", cask_path("local-caffeine"), "HOMEBREW_BROWSER" => "echo" } - .to output(/Formula "#{local_caffeine_path}" not found. Found a cask instead.\n#{local_caffeine_homepage}/m) - .to_stdout + .to output(/#{local_caffeine_homepage}/).to_stdout .and not_to_output.to_stderr .and be_a_success end @@ -41,8 +40,7 @@ describe "brew home", :integration_test do setup_test_formula "testballhome" expect { brew "home", "testballhome", cask_path("local-caffeine"), "HOMEBREW_BROWSER" => "echo" } - .to output(/Formula "#{local_caffeine_path}" not found. Found a cask instead.\n#{testballhome_homepage} #{local_caffeine_homepage}/m) - .to_stdout + .to output(/#{testballhome_homepage} #{local_caffeine_homepage}/).to_stdout .and not_to_output.to_stderr .and be_a_success end From de6fe2edc1d0bc8facfd932abe5fa4018f197a40 Mon Sep 17 00:00:00 2001 From: Shaun Jackman Date: Mon, 22 Jun 2020 14:14:33 -0700 Subject: [PATCH 53/82] Revert "Enable patchelf.rb for HOMEBREW_DEVELOPERs." This reverts commit 6106bfc4976dff2b03cf3fadbbf92dd1fd9e0f09. Fix the error: brew install patchelf ==> Pouring patchelf-0.10.x86_64_linux.bottle.1.tar.gz Error: cannot load such file -- patchelf --- Library/Homebrew/os/linux/global.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Library/Homebrew/os/linux/global.rb b/Library/Homebrew/os/linux/global.rb index 31ada6196e..fb74e0afa3 100644 --- a/Library/Homebrew/os/linux/global.rb +++ b/Library/Homebrew/os/linux/global.rb @@ -1,8 +1,7 @@ # frozen_string_literal: true # enables experimental readelf.rb, patchelf support. -HOMEBREW_PATCHELF_RB = (ENV["HOMEBREW_PATCHELF_RB"].present? || - (ENV["HOMEBREW_DEVELOPER"].present? && ENV["HOMEBREW_NO_PATCHELF_RB"].blank?)).freeze +HOMEBREW_PATCHELF_RB = ENV["HOMEBREW_PATCHELF_RB"].present?.freeze module Homebrew DEFAULT_PREFIX ||= if Homebrew::EnvConfig.force_homebrew_on_linux? From 6044bb17ee5bbfd4352959d09acf800df32ae2b5 Mon Sep 17 00:00:00 2001 From: Adrian Ho Date: Tue, 23 Jun 2020 09:51:56 +0800 Subject: [PATCH 54/82] Fix test cask macOS dependency This should be updated when the minimum OS requirement changes. --- .../fixtures/cask/Casks/with-depends-on-macos-comparison.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/test/support/fixtures/cask/Casks/with-depends-on-macos-comparison.rb b/Library/Homebrew/test/support/fixtures/cask/Casks/with-depends-on-macos-comparison.rb index 1d1112a987..39548ea223 100644 --- a/Library/Homebrew/test/support/fixtures/cask/Casks/with-depends-on-macos-comparison.rb +++ b/Library/Homebrew/test/support/fixtures/cask/Casks/with-depends-on-macos-comparison.rb @@ -7,7 +7,7 @@ cask "with-depends-on-macos-comparison" do url "file://#{TEST_FIXTURE_DIR}/cask/caffeine.zip" homepage "https://brew.sh/with-depends-on-macos-comparison" - depends_on macos: ">= :catalina" + depends_on macos: ">= :yosemite" app "Caffeine.app" end From acbb2139775d65212615371568fd4c6f38072c8d Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Mon, 22 Jun 2020 21:56:39 -0400 Subject: [PATCH 55/82] mac/hardware: cpu: Use ruby-macho's Intel constant --- Library/Homebrew/extend/os/mac/hardware/cpu.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/extend/os/mac/hardware/cpu.rb b/Library/Homebrew/extend/os/mac/hardware/cpu.rb index fa8436d08d..da5c4c5345 100644 --- a/Library/Homebrew/extend/os/mac/hardware/cpu.rb +++ b/Library/Homebrew/extend/os/mac/hardware/cpu.rb @@ -9,7 +9,7 @@ module Hardware # Look in for decoding info. def type case sysctl_int("hw.cputype") - when 7 + when MachO::Headers::CPU_TYPE_I386 :intel when MachO::Headers::CPU_TYPE_ARM64 :arm From 01f78582fa064e807289bb73aed0ea176080eac8 Mon Sep 17 00:00:00 2001 From: EricFromCanada Date: Tue, 23 Jun 2020 00:20:56 -0400 Subject: [PATCH 56/82] Use commands cache in bash/fish completions --- completions/bash/brew | 6 +++++- completions/fish/brew.fish | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/completions/bash/brew b/completions/bash/brew index ac5de14676..b92b594acd 100644 --- a/completions/bash/brew +++ b/completions/bash/brew @@ -96,8 +96,12 @@ __brew_complete_tapped() { __brew_complete_commands() { local cur="${COMP_WORDS[COMP_CWORD]}" + HOMEBREW_CACHE=$(brew --cache) + HOMEBREW_REPOSITORY=$(brew --repo) # Do not auto-complete "*instal" or "*uninstal" aliases for "*install" commands. - local cmds="$(brew commands --quiet --include-aliases | \grep -v instal$)" + [[ -f "$HOMEBREW_CACHE/all_commands_list.txt" ]] && + local cmds="$(cat "$HOMEBREW_CACHE/all_commands_list.txt" | \grep -v instal$)" || + local cmds="$(cat "$HOMEBREW_REPOSITORY/completions/internal_commands_list.txt" | \grep -v instal$)" COMPREPLY=($(compgen -W "$cmds" -- "$cur")) } diff --git a/completions/fish/brew.fish b/completions/fish/brew.fish index a93bb4c661..aeb394daf5 100644 --- a/completions/fish/brew.fish +++ b/completions/fish/brew.fish @@ -181,7 +181,11 @@ function __fish_brew_suggest_taps_pinned -d "List only pinned taps" end function __fish_brew_suggest_commands -d "Lists all commands names, including aliases" - brew commands --quiet --include-aliases + if test -f (brew --cache)/all_commands_list.txt + cat (brew --cache)/all_commands_list.txt | \grep -v instal\$ + else + cat (brew --repo)/completions/internal_commands_list.txt | \grep -v instal\$ + end end # TODO: any better way to list available services? From cb4fc420c743cf300c435dafbabe170429c9c660 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2020 05:41:27 +0000 Subject: [PATCH 57/82] build(deps): bump diff-lcs from 1.3 to 1.4 in /Library/Homebrew Bumps [diff-lcs](https://github.com/halostatue/diff-lcs) from 1.3 to 1.4. - [Release notes](https://github.com/halostatue/diff-lcs/releases) - [Changelog](https://github.com/halostatue/diff-lcs/blob/master/History.md) - [Commits](https://github.com/halostatue/diff-lcs/compare/v1.3...v1.4) Signed-off-by: dependabot-preview[bot] --- Library/Homebrew/Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/Gemfile.lock b/Library/Homebrew/Gemfile.lock index bdb62b11cb..76dd1b53b4 100644 --- a/Library/Homebrew/Gemfile.lock +++ b/Library/Homebrew/Gemfile.lock @@ -17,7 +17,7 @@ GEM term-ansicolor (~> 1.3) thor (>= 0.19.4, < 2.0) tins (~> 1.6) - diff-lcs (1.3) + diff-lcs (1.4) docile (1.3.2) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) From 07ea18e2d2411165fda34a1b57873859cc64495a Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Tue, 23 Jun 2020 13:13:31 +0100 Subject: [PATCH 58/82] ruby.sh: don't print recoverable error. This prints "error" even when we can install a portable ruby. --- Library/Homebrew/utils/ruby.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/Library/Homebrew/utils/ruby.sh b/Library/Homebrew/utils/ruby.sh index 3518da88d6..c218a75023 100644 --- a/Library/Homebrew/utils/ruby.sh +++ b/Library/Homebrew/utils/ruby.sh @@ -70,7 +70,6 @@ If there's no Homebrew Portable Ruby available for your processor: fi done IFS=$' \t\n' # Restore IFS to its default value - [[ -z $HOMEBREW_RUBY_PATH ]] && onoe "Failed to find usable Ruby $required_ruby_version!" fi if [[ -n "$HOMEBREW_MACOS_SYSTEM_RUBY_NEW_ENOUGH" ]] From 11c875d747b1c765295b1f2b4ce4faea9be390e9 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Tue, 23 Jun 2020 14:11:05 +0100 Subject: [PATCH 59/82] macOS Big Sur tweaks - output warnings when running on ARM - require Xcode 12 - use 11.0 as the version number --- Library/Homebrew/extend/os/linux/install.rb | 3 ++- Library/Homebrew/extend/os/mac/hardware/cpu.rb | 2 ++ Library/Homebrew/install.rb | 7 +++++-- Library/Homebrew/os/mac/version.rb | 3 ++- Library/Homebrew/os/mac/xcode.rb | 15 +++++++++------ 5 files changed, 20 insertions(+), 10 deletions(-) diff --git a/Library/Homebrew/extend/os/linux/install.rb b/Library/Homebrew/extend/os/linux/install.rb index bb830d2dc1..7940896db0 100644 --- a/Library/Homebrew/extend/os/linux/install.rb +++ b/Library/Homebrew/extend/os/linux/install.rb @@ -16,7 +16,8 @@ module Homebrew ].freeze def check_cpu - return if (Hardware::CPU.intel? && Hardware::CPU.is_64_bit?) || Hardware::CPU.arm? + return if Hardware::CPU.intel? && Hardware::CPU.is_64_bit? + return if Hardware::CPU.arm? message = "Sorry, Homebrew does not support your computer's CPU architecture!" if Hardware::CPU.ppc64le? diff --git a/Library/Homebrew/extend/os/mac/hardware/cpu.rb b/Library/Homebrew/extend/os/mac/hardware/cpu.rb index da5c4c5345..fad0ba4ce5 100644 --- a/Library/Homebrew/extend/os/mac/hardware/cpu.rb +++ b/Library/Homebrew/extend/os/mac/hardware/cpu.rb @@ -1,5 +1,7 @@ # frozen_string_literal: true +require "macho" + module Hardware class CPU class << self diff --git a/Library/Homebrew/install.rb b/Library/Homebrew/install.rb index 108b51b95c..f68572df08 100644 --- a/Library/Homebrew/install.rb +++ b/Library/Homebrew/install.rb @@ -10,10 +10,13 @@ module Homebrew module_function def check_cpu - return if (Hardware::CPU.intel? && Hardware::CPU.is_64_bit?) || Hardware::CPU.arm? + return if Hardware::CPU.intel? && Hardware::CPU.is_64_bit? message = "Sorry, Homebrew does not support your computer's CPU architecture!" - if Hardware::CPU.ppc? + if Hardware::CPU.arm? + opoo message + return + elsif Hardware::CPU.ppc? message += <<~EOS For PowerPC Mac (PPC32/PPC64BE) support, see: #{Formatter.url("https://github.com/mistydemeo/tigerbrew")} diff --git a/Library/Homebrew/os/mac/version.rb b/Library/Homebrew/os/mac/version.rb index 0ca02de626..dd52ffe1c3 100644 --- a/Library/Homebrew/os/mac/version.rb +++ b/Library/Homebrew/os/mac/version.rb @@ -1,12 +1,13 @@ # frozen_string_literal: true +require "hardware" require "version" module OS module Mac class Version < ::Version SYMBOLS = { - big_sur: "10.16", + big_sur: Hardware::CPU.arm? ? "11.00" : "10.16", catalina: "10.15", mojave: "10.14", high_sierra: "10.13", diff --git a/Library/Homebrew/os/mac/xcode.rb b/Library/Homebrew/os/mac/xcode.rb index c01ee433de..4861320b5d 100644 --- a/Library/Homebrew/os/mac/xcode.rb +++ b/Library/Homebrew/os/mac/xcode.rb @@ -13,9 +13,10 @@ module OS # CI systems have been updated. # This may be a beta version for a beta macOS. def latest_version - latest = "11.5" + latest_stable = "11.5" case MacOS.version - when "10.15" then latest + when "11.0", "10.16" then "12.0" + when "10.15" then latest_stable when "10.14" then "11.3.1" when "10.13" then "10.1" when "10.12" then "9.2" @@ -26,7 +27,7 @@ module OS raise "macOS '#{MacOS.version}' is invalid" unless OS::Mac.prerelease? # Default to newest known version of Xcode for unreleased macOS versions. - latest + latest_stable end end @@ -36,6 +37,7 @@ module OS # also in beta). def minimum_version case MacOS.version + when "11.0", "10.16" then "12.0" when "10.15" then "11.0" when "10.14" then "10.2" when "10.13" then "9.0" @@ -173,9 +175,10 @@ module OS # installed CLT version. This is useful as they are packaged # simultaneously so workarounds need to apply to both based on their # comparable version. - latest = "11.5" + latest_stable = "11.5" case (DevelopmentTools.clang_version.to_f * 10).to_i - when 110 then latest + when 120 then "12.0" + when 110 then latest_stable when 100 then "10.3" when 91 then "9.4" when 90 then "9.2" @@ -186,7 +189,7 @@ module OS when 61 then "6.1" when 60 then "6.0" when 0 then "dunno" - else latest + else latest_stable end end From 11fbf9d035033467009ae0252b4496b34923c425 Mon Sep 17 00:00:00 2001 From: William Ma Date: Tue, 23 Jun 2020 09:30:24 -0400 Subject: [PATCH 60/82] cache: Add flags for printing only formulae or casks --- Library/Homebrew/cmd/--cache.rb | 48 ++++++++++++++++++++++----------- 1 file changed, 33 insertions(+), 15 deletions(-) diff --git a/Library/Homebrew/cmd/--cache.rb b/Library/Homebrew/cmd/--cache.rb index 2f4a06cea5..b9416d8be2 100644 --- a/Library/Homebrew/cmd/--cache.rb +++ b/Library/Homebrew/cmd/--cache.rb @@ -11,17 +11,22 @@ module Homebrew def __cache_args Homebrew::CLI::Parser.new do usage_banner <<~EOS - `--cache` [] [] + `--cache` [] [] Display Homebrew's download cache. See also `HOMEBREW_CACHE`. - If is provided, display the file or directory used to cache . + If is provided, display the file or directory used to cache . EOS switch "-s", "--build-from-source", description: "Show the cache file used when building from source." switch "--force-bottle", description: "Show the cache file used when pouring a bottle." + switch "--formula", + description: "Show cache files for only formulae" + switch "--cask", + description: "Show cache files for only casks" conflicts "--build-from-source", "--force-bottle" + conflicts "--formula", "--cask" end end @@ -30,26 +35,39 @@ module Homebrew if args.no_named? puts HOMEBREW_CACHE + elsif args.formula? + args.named.each do |name| + print_formula_cache name + end + elsif args.cask? + args.named.each do |name| + print_cask_cache name + end else args.named.each do |name| - formula = Formulary.factory name - if Fetch.fetch_bottle?(formula) - puts formula.bottle.cached_download - else - puts formula.cached_download - end + print_formula_cache name rescue FormulaUnavailableError => e - formula_error_message = e.message begin - cask = Cask::CaskLoader.load name - puts "cask: #{Cask::Cmd::Cache.cached_location(cask)}" + print_cask_cache name rescue Cask::CaskUnavailableError => e - cask_error_message = e.message - odie "No available formula or cask with the name \"#{name}\"\n" \ - "#{formula_error_message}\n" \ - "#{cask_error_message}\n" + odie "No available formula or cask with the name \"#{name}\"" end end end end + + def print_formula_cache(name) + formula = Formulary.factory name + if Fetch.fetch_bottle?(formula) + puts formula.bottle.cached_download + else + puts formula.cached_download + end + end + + def print_cask_cache(name) + cask = Cask::CaskLoader.load name + puts Cask::Cmd::Cache.cached_location(cask) + end + end From 27abc8c50ba86c5e7c7dbd342906dda8773b5dd8 Mon Sep 17 00:00:00 2001 From: William Ma Date: Tue, 23 Jun 2020 09:44:17 -0400 Subject: [PATCH 61/82] home: Print info for each formula/cask opened --- Library/Homebrew/cmd/home.rb | 20 +++++++++----------- Library/Homebrew/test/cmd/--cache_spec.rb | 4 ++-- Library/Homebrew/test/cmd/home_spec.rb | 2 +- 3 files changed, 12 insertions(+), 14 deletions(-) diff --git a/Library/Homebrew/cmd/home.rb b/Library/Homebrew/cmd/home.rb index 2b1171cbb4..3a546c15fa 100644 --- a/Library/Homebrew/cmd/home.rb +++ b/Library/Homebrew/cmd/home.rb @@ -25,19 +25,17 @@ module Homebrew if args.no_named? exec_browser HOMEBREW_WWW else - homepages = args.named.map do |ref| - Formulary.factory(ref).homepage - rescue FormulaUnavailableError => e - formula_error_message = e.message + homepages = args.named.map do |name| + f = Formulary.factory(name) + puts "Opening homepage for formula #{name}" + f.homepage + rescue FormulaUnavailableError begin - cask = Cask::CaskLoader.load(ref) - puts "Formula \"#{ref}\" not found. Found a cask instead." - cask.homepage + c = Cask::CaskLoader.load(name) + puts "Opening homepage for cask #{name}" + c.homepage rescue Cask::CaskUnavailableError => e - cask_error_message = e.message - odie "No available formula or cask with the name \"#{name}\"\n" \ - "#{formula_error_message}\n" \ - "#{cask_error_message}\n" + odie "No available formula or cask with the name \"#{name}\"" end end exec_browser(*homepages) diff --git a/Library/Homebrew/test/cmd/--cache_spec.rb b/Library/Homebrew/test/cmd/--cache_spec.rb index 14397bbfb0..ea8c263fc7 100644 --- a/Library/Homebrew/test/cmd/--cache_spec.rb +++ b/Library/Homebrew/test/cmd/--cache_spec.rb @@ -16,7 +16,7 @@ describe "brew --cache", :integration_test do it "prints the cache files for a given Cask" do expect { brew "--cache", cask_path("local-caffeine") } - .to output(%r{cask: #{HOMEBREW_CACHE}/downloads/[\da-f]{64}--caffeine\.zip}).to_stdout + .to output(%r{#{HOMEBREW_CACHE}/downloads/[\da-f]{64}--caffeine\.zip}).to_stdout .and not_to_output.to_stderr .and be_a_success end @@ -26,7 +26,7 @@ describe "brew --cache", :integration_test do .to output( %r{ #{HOMEBREW_CACHE}/downloads/[\da-f]{64}--testball-.*\n - cask:\s#{HOMEBREW_CACHE}/downloads/[\da-f]{64}--caffeine\.zip + #{HOMEBREW_CACHE}/downloads/[\da-f]{64}--caffeine\.zip }x, ).to_stdout .and not_to_output.to_stderr diff --git a/Library/Homebrew/test/cmd/home_spec.rb b/Library/Homebrew/test/cmd/home_spec.rb index 17d22ffe94..be1084ea51 100644 --- a/Library/Homebrew/test/cmd/home_spec.rb +++ b/Library/Homebrew/test/cmd/home_spec.rb @@ -24,7 +24,7 @@ describe "brew home", :integration_test do setup_test_formula "testballhome" expect { brew "home", "testballhome", "HOMEBREW_BROWSER" => "echo" } - .to output("#{testballhome_homepage}\n").to_stdout + .to output(/#{testballhome_homepage}/).to_stdout .and not_to_output.to_stderr .and be_a_success end From efdf9ce1aa78156fe20b3c396fcdcf9ff7822715 Mon Sep 17 00:00:00 2001 From: William Ma Date: Tue, 23 Jun 2020 09:50:45 -0400 Subject: [PATCH 62/82] style: Fix style --- Library/Homebrew/cmd/--cache.rb | 9 ++++----- Library/Homebrew/cmd/home.rb | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Library/Homebrew/cmd/--cache.rb b/Library/Homebrew/cmd/--cache.rb index b9416d8be2..3dad5d8134 100644 --- a/Library/Homebrew/cmd/--cache.rb +++ b/Library/Homebrew/cmd/--cache.rb @@ -46,10 +46,10 @@ module Homebrew else args.named.each do |name| print_formula_cache name - rescue FormulaUnavailableError => e + rescue FormulaUnavailableError begin print_cask_cache name - rescue Cask::CaskUnavailableError => e + rescue Cask::CaskUnavailableError odie "No available formula or cask with the name \"#{name}\"" end end @@ -66,8 +66,7 @@ module Homebrew end def print_cask_cache(name) - cask = Cask::CaskLoader.load name - puts Cask::Cmd::Cache.cached_location(cask) + cask = Cask::CaskLoader.load name + puts Cask::Cmd::Cache.cached_location(cask) end - end diff --git a/Library/Homebrew/cmd/home.rb b/Library/Homebrew/cmd/home.rb index 3a546c15fa..e567febfab 100644 --- a/Library/Homebrew/cmd/home.rb +++ b/Library/Homebrew/cmd/home.rb @@ -34,7 +34,7 @@ module Homebrew c = Cask::CaskLoader.load(name) puts "Opening homepage for cask #{name}" c.homepage - rescue Cask::CaskUnavailableError => e + rescue Cask::CaskUnavailableError odie "No available formula or cask with the name \"#{name}\"" end end From cdcaa8b58cc703a2e6fc4dada0c4d7add5a80110 Mon Sep 17 00:00:00 2001 From: William Ma Date: Tue, 23 Jun 2020 09:56:56 -0400 Subject: [PATCH 63/82] man: Update manpages --- docs/Manpage.md | 9 +++++++-- manpages/brew.1 | 12 ++++++++++-- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/docs/Manpage.md b/docs/Manpage.md index 0b746685a1..4371e5e04b 100644 --- a/docs/Manpage.md +++ b/docs/Manpage.md @@ -577,16 +577,21 @@ recommended dependency for their stable builds. * `--HEAD`: Show usage of *`formula`* by HEAD builds. -### `--cache` [*`options`*] [*`formula`*] +### `--cache` [*`options`*] [] Display Homebrew's download cache. See also `HOMEBREW_CACHE`. -If *`formula`* is provided, display the file or directory used to cache *`formula`*. +If is provided, display the file or directory used to cache +. * `-s`, `--build-from-source`: Show the cache file used when building from source. * `--force-bottle`: Show the cache file used when pouring a bottle. +* `--formula`: + Show cache files for only formulae +* `--cask`: + Show cache files for only casks ### `--cellar` [*`formula`*] diff --git a/manpages/brew.1 b/manpages/brew.1 index 49bf5bd86e..5e5f84e104 100644 --- a/manpages/brew.1 +++ b/manpages/brew.1 @@ -749,11 +749,11 @@ Show usage of \fIformula\fR by development builds\. \fB\-\-HEAD\fR Show usage of \fIformula\fR by HEAD builds\. . -.SS "\fB\-\-cache\fR [\fIoptions\fR] [\fIformula\fR]" +.SS "\fB\-\-cache\fR [\fIoptions\fR] []" Display Homebrew\'s download cache\. See also \fBHOMEBREW_CACHE\fR\. . .P -If \fIformula\fR is provided, display the file or directory used to cache \fIformula\fR\. +If is provided, display the file or directory used to cache \. . .TP \fB\-s\fR, \fB\-\-build\-from\-source\fR @@ -763,6 +763,14 @@ Show the cache file used when building from source\. \fB\-\-force\-bottle\fR Show the cache file used when pouring a bottle\. . +.TP +\fB\-\-formula\fR +Show cache files for only formulae +. +.TP +\fB\-\-cask\fR +Show cache files for only casks +. .SS "\fB\-\-cellar\fR [\fIformula\fR]" Display Homebrew\'s Cellar path\. \fIDefault:\fR \fB$(brew \-\-prefix)/Cellar\fR, or if that directory doesn\'t exist, \fB$(brew \-\-repository)/Cellar\fR\. . From 8a580ae39e48fe0ef888bdd85f4d9c8870c38ace Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Tue, 23 Jun 2020 15:54:46 +0100 Subject: [PATCH 64/82] os/mac/xcode: add Big Sur clang versions. https://github.com/Homebrew/brew/pull/7806#issuecomment-648154860 --- Library/Homebrew/os/mac/xcode.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Library/Homebrew/os/mac/xcode.rb b/Library/Homebrew/os/mac/xcode.rb index 4861320b5d..1e852b412c 100644 --- a/Library/Homebrew/os/mac/xcode.rb +++ b/Library/Homebrew/os/mac/xcode.rb @@ -253,6 +253,7 @@ module OS # and our CI systems have been updated. def latest_clang_version case MacOS.version + when "11.0", "10.16" then "1200.0.22.7" when "10.15" then "1103.0.32.59" when "10.14" then "1001.0.46.4" when "10.13" then "1000.10.44.2" @@ -268,6 +269,7 @@ module OS # that macOS version. def minimum_version case MacOS.version + when "11.0", "10.16" then "12.0.0" when "10.15" then "11.0.0" when "10.14" then "10.0.0" when "10.13" then "9.0.0" From d0c138ad985fa70f55792288f73a31e01656e37b Mon Sep 17 00:00:00 2001 From: William Ma Date: Tue, 23 Jun 2020 11:50:50 -0400 Subject: [PATCH 65/82] cache: Remove slashes from documentation --- Library/Homebrew/cmd/--cache.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/cmd/--cache.rb b/Library/Homebrew/cmd/--cache.rb index 3dad5d8134..de6c1ac0a0 100644 --- a/Library/Homebrew/cmd/--cache.rb +++ b/Library/Homebrew/cmd/--cache.rb @@ -11,11 +11,11 @@ module Homebrew def __cache_args Homebrew::CLI::Parser.new do usage_banner <<~EOS - `--cache` [] [] + `--cache` [] [] Display Homebrew's download cache. See also `HOMEBREW_CACHE`. - If is provided, display the file or directory used to cache . + If is provided, display the file or directory used to cache . EOS switch "-s", "--build-from-source", description: "Show the cache file used when building from source." From fbf56e27a02e37b017654a2065d06211e030df0f Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Tue, 23 Jun 2020 16:51:16 +0100 Subject: [PATCH 66/82] os/mac: fix for major versions other than 10 --- Library/Homebrew/os/mac.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/os/mac.rb b/Library/Homebrew/os/mac.rb index 654f2d5c04..f559bfacf9 100644 --- a/Library/Homebrew/os/mac.rb +++ b/Library/Homebrew/os/mac.rb @@ -21,7 +21,7 @@ module OS # This can be compared to numerics, strings, or symbols # using the standard Ruby Comparable methods. def version - @version ||= Version.new(full_version.to_s[/10\.\d+/]) + @version ||= Version.new(full_version.to_s[/^\d+\.\d+/]) end # This can be compared to numerics, strings, or symbols From 76a0b0e95ed161056fa15043576887f81122dcf1 Mon Sep 17 00:00:00 2001 From: William Ma Date: Tue, 23 Jun 2020 11:51:19 -0400 Subject: [PATCH 67/82] man: Update manpages --- docs/Manpage.md | 5 ++--- manpages/brew.1 | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/Manpage.md b/docs/Manpage.md index 4371e5e04b..08f0704b82 100644 --- a/docs/Manpage.md +++ b/docs/Manpage.md @@ -577,12 +577,11 @@ recommended dependency for their stable builds. * `--HEAD`: Show usage of *`formula`* by HEAD builds. -### `--cache` [*`options`*] [] +### `--cache` [*`options`*] [*`formula`*] Display Homebrew's download cache. See also `HOMEBREW_CACHE`. -If is provided, display the file or directory used to cache -. +If *`formula`* is provided, display the file or directory used to cache *`formula`*. * `-s`, `--build-from-source`: Show the cache file used when building from source. diff --git a/manpages/brew.1 b/manpages/brew.1 index 5e5f84e104..306753f6ac 100644 --- a/manpages/brew.1 +++ b/manpages/brew.1 @@ -749,11 +749,11 @@ Show usage of \fIformula\fR by development builds\. \fB\-\-HEAD\fR Show usage of \fIformula\fR by HEAD builds\. . -.SS "\fB\-\-cache\fR [\fIoptions\fR] []" +.SS "\fB\-\-cache\fR [\fIoptions\fR] [\fIformula\fR]" Display Homebrew\'s download cache\. See also \fBHOMEBREW_CACHE\fR\. . .P -If is provided, display the file or directory used to cache \. +If \fIformula\fR is provided, display the file or directory used to cache \fIformula\fR\. . .TP \fB\-s\fR, \fB\-\-build\-from\-source\fR From f04834f02c4cc2a86c2b98dc535f8b91f13e745f Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Sat, 20 Jun 2020 13:10:47 +0200 Subject: [PATCH 68/82] formula: set GOPATH So we can cache dependencies and speed up subsequent builds. --- Library/Homebrew/formula.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 90448c1549..75b4066c75 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -2142,6 +2142,7 @@ class Formula stage_env[:_JAVA_OPTIONS] = "#{ENV["_JAVA_OPTIONS"]&.+(" ")}-Duser.home=#{HOMEBREW_CACHE}/java_cache" stage_env[:GOCACHE] = "#{HOMEBREW_CACHE}/go_cache" + stage_env[:GOPATH] = "#{HOMEBREW_CACHE}/go_mod_cache" stage_env[:CARGO_HOME] = "#{HOMEBREW_CACHE}/cargo_cache" stage_env[:CURL_HOME] = ENV["CURL_HOME"] || ENV["HOME"] end From 6f1970fd24611e89bdbf71ddc78221678be1bfda Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Tue, 23 Jun 2020 17:10:07 +0100 Subject: [PATCH 69/82] Fix more 10.x hardcodings. --- Library/Homebrew/extend/os/mac/extend/ENV/std.rb | 2 +- Library/Homebrew/shims/super/cc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Library/Homebrew/extend/os/mac/extend/ENV/std.rb b/Library/Homebrew/extend/os/mac/extend/ENV/std.rb index ae04e62a8d..11287c3167 100644 --- a/Library/Homebrew/extend/os/mac/extend/ENV/std.rb +++ b/Library/Homebrew/extend/os/mac/extend/ENV/std.rb @@ -52,7 +52,7 @@ module Stdenv def remove_macosxsdk(version = nil) # Clear all lib and include dirs from CFLAGS, CPPFLAGS, LDFLAGS that were # previously added by macosxsdk - remove_from_cflags(/ ?-mmacosx-version-min=10\.\d+/) + remove_from_cflags(/ ?-mmacosx-version-min=\d+\.\d+/) delete("CPATH") remove "LDFLAGS", "-L#{HOMEBREW_PREFIX}/lib" diff --git a/Library/Homebrew/shims/super/cc b/Library/Homebrew/shims/super/cc index b6249a04f4..4462deae26 100755 --- a/Library/Homebrew/shims/super/cc +++ b/Library/Homebrew/shims/super/cc @@ -188,8 +188,8 @@ class Cmd when "-Xpreprocessor", "-Xclang" # used for -Xpreprocessor -fopenmp args << arg << enum.next - when /-mmacosx-version-min=10\.(\d+)/ - arg = "-mmacosx-version-min=10.9" if high_sierra_or_later? && $1.to_i < 9 + when /-mmacosx-version-min=(\d+)\.(\d+)/ + arg = "-mmacosx-version-min=10.9" if high_sierra_or_later? && $1 == "10" && $2.to_i < 9 args << arg when "--fast-math" arg = "-ffast-math" if tool =~ /^clang/ From 0faf17b1e60e1dda562488802c8914d7956000cc Mon Sep 17 00:00:00 2001 From: Rylan Polster Date: Thu, 4 Jun 2020 21:05:38 -0400 Subject: [PATCH 70/82] use safe_popen_read instead of popen_read RuboCop requires using Utils.safe_popen_read and Utils.safe_popen_write instead of Utils.popen_read and Utils.popen_write respectively. Using the "safe" version means that an error will be shown if the command fails. Previously, when using `popen_read`, a failed command can go unnoticed and have negative consequences that go undetected (as happened for pipend in https://github.com/Homebrew/homebrew-core/pull/55682) RuboCop does not require Utils.safe_popen_read in a test do block because there can be some legitimate uses for Utils.popen_read in these cases. --- Library/Homebrew/rubocops/lines.rb | 28 ++++++ Library/Homebrew/test/rubocops/lines_spec.rb | 95 ++++++++++++++++++++ 2 files changed, 123 insertions(+) diff --git a/Library/Homebrew/rubocops/lines.rb b/Library/Homebrew/rubocops/lines.rb index 86b25ecebf..38e26af8b5 100644 --- a/Library/Homebrew/rubocops/lines.rb +++ b/Library/Homebrew/rubocops/lines.rb @@ -195,6 +195,34 @@ module RuboCop end end + class ShellCmd < FormulaCop + def audit_formula(_node, _class_node, _parent_class_node, body_node) + test = find_block(body_node, :test) + + [:popen_read, :popen_write].each do |unsafe_command| + test_methods = [] + + unless test.nil? + find_instance_method_call(test, "Utils", unsafe_command) do |method| + test_methods << method.source_range + end + end + + find_instance_method_call(body_node, "Utils", unsafe_command) do |method| + unless test_methods.include?(method.source_range) + problem "Use `Utils.safe_#{unsafe_command}` instead of `Utils.#{unsafe_command}`" + end + end + end + end + + def autocorrect(node) + lambda do |corrector| + corrector.replace(node.loc.selector, "safe_#{node.method_name}") + end + end + end + class Miscellaneous < FormulaCop def audit_formula(_node, _class_node, _parent_class_node, body_node) # FileUtils is included in Formula diff --git a/Library/Homebrew/test/rubocops/lines_spec.rb b/Library/Homebrew/test/rubocops/lines_spec.rb index 19545be896..bb31d2e935 100644 --- a/Library/Homebrew/test/rubocops/lines_spec.rb +++ b/Library/Homebrew/test/rubocops/lines_spec.rb @@ -345,6 +345,101 @@ describe RuboCop::Cop::FormulaAudit::MpiCheck do end end +describe RuboCop::Cop::FormulaAudit::ShellCmd do + subject(:cop) { described_class.new } + + context "When auditing shell commands" do + it "Utils.popen_read should become Utils.safe_popen_read" do + expect_offense(<<~RUBY) + class Foo < Formula + def install + Utils.popen_read "foo" + ^^^^^^^^^^^^^^^^^^^^^^ Use `Utils.safe_popen_read` instead of `Utils.popen_read` + end + end + RUBY + end + + it "Utils.safe_popen_write should become Utils.popen_write" do + expect_offense(<<~RUBY) + class Foo < Formula + def install + Utils.popen_write "foo" + ^^^^^^^^^^^^^^^^^^^^^^^ Use `Utils.safe_popen_write` instead of `Utils.popen_write` + end + end + RUBY + end + + it "does not correct Utils.popen_read in test block" do + expect_no_offenses(<<~RUBY) + class Foo < Formula + def install; end + test do + Utils.popen_read "foo" + end + end + RUBY + end + + it "corrects Utils.popen_read to Utils.safe_popen_read" do + source = <<~RUBY + class Foo < Formula + def install + Utils.popen_read "foo" + end + end + RUBY + + corrected_source = <<~RUBY + class Foo < Formula + def install + Utils.safe_popen_read "foo" + end + end + RUBY + + new_source = autocorrect_source(source) + expect(new_source).to eq(corrected_source) + end + + it "corrects Utils.popen_write to Utils.safe_popen_write" do + source = <<~RUBY + class Foo < Formula + def install + Utils.popen_write "foo" + end + end + RUBY + + corrected_source = <<~RUBY + class Foo < Formula + def install + Utils.safe_popen_write "foo" + end + end + RUBY + + new_source = autocorrect_source(source) + expect(new_source).to eq(corrected_source) + end + + it "does not correct to Utils.safe_popen_read in test block" do + source = <<~RUBY + class Foo < Formula + def install; end + test do + Utils.popen_write "foo" + end + end + RUBY + + new_source = autocorrect_source(source) + expect(new_source).to eq(source) + end + end +end + describe RuboCop::Cop::FormulaAudit::Miscellaneous do subject(:cop) { described_class.new } From 6051015ac50cd3ce073d2a2753f2521c2932d754 Mon Sep 17 00:00:00 2001 From: Shaun Jackman Date: Tue, 23 Jun 2020 13:30:28 -0700 Subject: [PATCH 71/82] OS::Mac::Version: Change 11.00 to 11.0 --- Library/Homebrew/os/mac/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/os/mac/version.rb b/Library/Homebrew/os/mac/version.rb index dd52ffe1c3..23bf6b178c 100644 --- a/Library/Homebrew/os/mac/version.rb +++ b/Library/Homebrew/os/mac/version.rb @@ -7,7 +7,7 @@ module OS module Mac class Version < ::Version SYMBOLS = { - big_sur: Hardware::CPU.arm? ? "11.00" : "10.16", + big_sur: Hardware::CPU.arm? ? "11.0" : "10.16", catalina: "10.15", mojave: "10.14", high_sierra: "10.13", From 5d56be52caca925fad7e678f17739ef46ecd6164 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Wed, 24 Jun 2020 02:09:29 +0100 Subject: [PATCH 72/82] os/mac/pkgconfig/10.15/expat: update version to 2.2.8 --- Library/Homebrew/os/mac/pkgconfig/10.15/expat.pc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/os/mac/pkgconfig/10.15/expat.pc b/Library/Homebrew/os/mac/pkgconfig/10.15/expat.pc index 55d04ed735..bc9bccda33 100644 --- a/Library/Homebrew/os/mac/pkgconfig/10.15/expat.pc +++ b/Library/Homebrew/os/mac/pkgconfig/10.15/expat.pc @@ -5,7 +5,7 @@ libdir=${exec_prefix}/lib includedir=${prefix}/include Name: expat -Version: 2.2.6 +Version: 2.2.8 Description: expat XML parser URL: http://www.libexpat.org Libs: -L${libdir} -lexpat From 53f214835d86ddfefb5d8f5684979acaf64aa017 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Wed, 24 Jun 2020 02:05:39 +0100 Subject: [PATCH 73/82] os/mac/pkgconfig: add pc files for Big Sur --- .../Homebrew/os/mac/pkgconfig/10.16/expat.pc | 12 ++++++ .../os/mac/pkgconfig/10.16/libcurl.pc | 40 +++++++++++++++++++ .../os/mac/pkgconfig/10.16/libedit.pc | 12 ++++++ .../os/mac/pkgconfig/10.16/libexslt.pc | 13 ++++++ .../Homebrew/os/mac/pkgconfig/10.16/libffi.pc | 12 ++++++ .../os/mac/pkgconfig/10.16/libxml-2.0.pc | 14 +++++++ .../os/mac/pkgconfig/10.16/libxslt.pc | 13 ++++++ .../os/mac/pkgconfig/10.16/ncurses.pc | 14 +++++++ .../os/mac/pkgconfig/10.16/ncursesw.pc | 14 +++++++ .../os/mac/pkgconfig/10.16/sqlite3.pc | 12 ++++++ .../Homebrew/os/mac/pkgconfig/10.16/uuid.pc | 14 +++++++ .../Homebrew/os/mac/pkgconfig/10.16/zlib.pc | 14 +++++++ .../Homebrew/os/mac/pkgconfig/11.0/expat.pc | 12 ++++++ .../Homebrew/os/mac/pkgconfig/11.0/libcurl.pc | 40 +++++++++++++++++++ .../Homebrew/os/mac/pkgconfig/11.0/libedit.pc | 12 ++++++ .../os/mac/pkgconfig/11.0/libexslt.pc | 13 ++++++ .../Homebrew/os/mac/pkgconfig/11.0/libffi.pc | 12 ++++++ .../os/mac/pkgconfig/11.0/libxml-2.0.pc | 14 +++++++ .../Homebrew/os/mac/pkgconfig/11.0/libxslt.pc | 13 ++++++ .../Homebrew/os/mac/pkgconfig/11.0/ncurses.pc | 14 +++++++ .../os/mac/pkgconfig/11.0/ncursesw.pc | 14 +++++++ .../Homebrew/os/mac/pkgconfig/11.0/sqlite3.pc | 12 ++++++ .../Homebrew/os/mac/pkgconfig/11.0/uuid.pc | 14 +++++++ .../Homebrew/os/mac/pkgconfig/11.0/zlib.pc | 14 +++++++ 24 files changed, 368 insertions(+) create mode 100644 Library/Homebrew/os/mac/pkgconfig/10.16/expat.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/10.16/libcurl.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/10.16/libedit.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/10.16/libexslt.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/10.16/libffi.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/10.16/libxml-2.0.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/10.16/libxslt.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/10.16/ncurses.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/10.16/ncursesw.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/10.16/sqlite3.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/10.16/uuid.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/10.16/zlib.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/11.0/expat.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/11.0/libcurl.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/11.0/libedit.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/11.0/libexslt.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/11.0/libffi.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/11.0/libxml-2.0.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/11.0/libxslt.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/11.0/ncurses.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/11.0/ncursesw.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/11.0/sqlite3.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/11.0/uuid.pc create mode 100644 Library/Homebrew/os/mac/pkgconfig/11.0/zlib.pc diff --git a/Library/Homebrew/os/mac/pkgconfig/10.16/expat.pc b/Library/Homebrew/os/mac/pkgconfig/10.16/expat.pc new file mode 100644 index 0000000000..7f611de4f3 --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/10.16/expat.pc @@ -0,0 +1,12 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX10.16.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +includedir=${prefix}/include + +Name: expat +Version: 2.2.8 +Description: expat XML parser +URL: http://www.libexpat.org +Libs: -L${libdir} -lexpat +Cflags: diff --git a/Library/Homebrew/os/mac/pkgconfig/10.16/libcurl.pc b/Library/Homebrew/os/mac/pkgconfig/10.16/libcurl.pc new file mode 100644 index 0000000000..5355350d97 --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/10.16/libcurl.pc @@ -0,0 +1,40 @@ +#*************************************************************************** +# _ _ ____ _ +# Project ___| | | | _ \| | +# / __| | | | |_) | | +# | (__| |_| | _ <| |___ +# \___|\___/|_| \_\_____| +# +# Copyright (C) 2001 - 2018, Daniel Stenberg, , et al. +# +# This software is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at https://curl.haxx.se/docs/copyright.html. +# +# You may opt to use, copy, modify, merge, publish, distribute and/or sell +# copies of the Software, and permit persons to whom the Software is +# furnished to do so, under the terms of the COPYING file. +# +# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +# KIND, either express or implied. +# +########################################################################### + +# This should most probably benefit from getting a "Requires:" field added +# dynamically by configure. +# +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX10.16.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +includedir=${prefix}/include +supported_protocols="DICT FILE FTP FTPS GOPHER HTTP HTTPS IMAP IMAPS LDAP LDAPS POP3 POP3S RTSP SMB SMBS SMTP SMTPS TELNET TFTP" +supported_features="AsynchDNS IPv6 Largefile GSS-API Kerberos SPNEGO MultiSSL NTLM NTLM_WB SSL libz HTTP2 UnixSockets HTTPS-proxy" + +Name: libcurl +URL: https://curl.haxx.se/ +Description: Library to transfer files with ftp, http, etc. +Version: 7.64.1 +Libs: -L${libdir} -lcurl +Libs.private: -lldap -lz +Cflags: diff --git a/Library/Homebrew/os/mac/pkgconfig/10.16/libedit.pc b/Library/Homebrew/os/mac/pkgconfig/10.16/libedit.pc new file mode 100644 index 0000000000..dcf7ce187a --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/10.16/libedit.pc @@ -0,0 +1,12 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX10.16.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +includedir=${prefix}/include + +Name: libedit +Description: command line editor library provides generic line editing, history, and tokenization functions. +Version: 3.0 +Requires: +Libs: -L${libdir} -ledit +Cflags: -I${includedir}/editline diff --git a/Library/Homebrew/os/mac/pkgconfig/10.16/libexslt.pc b/Library/Homebrew/os/mac/pkgconfig/10.16/libexslt.pc new file mode 100644 index 0000000000..9e28e8c76d --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/10.16/libexslt.pc @@ -0,0 +1,13 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX10.16.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +includedir=${prefix}/include + + +Name: libexslt +Version: 0.8.17 +Description: EXSLT Extension library +Requires: libxml-2.0 +Libs: -L${libdir} -lexslt -lxslt -lxml2 -lz -lpthread -licucore -lm +Cflags: diff --git a/Library/Homebrew/os/mac/pkgconfig/10.16/libffi.pc b/Library/Homebrew/os/mac/pkgconfig/10.16/libffi.pc new file mode 100644 index 0000000000..93bd99e9d2 --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/10.16/libffi.pc @@ -0,0 +1,12 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX10.16.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +toolexeclibdir=${libdir} +includedir=${prefix}/include/ffi + +Name: libffi +Description: Library supporting Foreign Function Interfaces +Version: 3.3-rc0 +Libs: -L${toolexeclibdir} -lffi +Cflags: -I${includedir} diff --git a/Library/Homebrew/os/mac/pkgconfig/10.16/libxml-2.0.pc b/Library/Homebrew/os/mac/pkgconfig/10.16/libxml-2.0.pc new file mode 100644 index 0000000000..7ed00b1f27 --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/10.16/libxml-2.0.pc @@ -0,0 +1,14 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX10.16.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +includedir=${prefix}/include +modules=1 + +Name: libXML +Version: 2.9.4 +Description: libXML library version2. +Requires: +Libs: -L${libdir} -lxml2 +Libs.private: -lz -lpthread -licucore -lm +Cflags: diff --git a/Library/Homebrew/os/mac/pkgconfig/10.16/libxslt.pc b/Library/Homebrew/os/mac/pkgconfig/10.16/libxslt.pc new file mode 100644 index 0000000000..6d2458e3dd --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/10.16/libxslt.pc @@ -0,0 +1,13 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX10.16.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +includedir=${prefix}/include + + +Name: libxslt +Version: 1.1.29 +Description: XSLT library version 2. +Requires: libxml-2.0 +Libs: -L${libdir} -lxslt -lxml2 -lz -lpthread -licucore -lm +Cflags: diff --git a/Library/Homebrew/os/mac/pkgconfig/10.16/ncurses.pc b/Library/Homebrew/os/mac/pkgconfig/10.16/ncurses.pc new file mode 100644 index 0000000000..19df0804d6 --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/10.16/ncurses.pc @@ -0,0 +1,14 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX10.16.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +includedir=${prefix}/include +major_version=5 +version=5.7.20081102 + +Name: ncurses +Description: ncurses 5.7 library +Version: ${version} +Requires: +Libs: -L${libdir} -lncurses +Cflags: diff --git a/Library/Homebrew/os/mac/pkgconfig/10.16/ncursesw.pc b/Library/Homebrew/os/mac/pkgconfig/10.16/ncursesw.pc new file mode 100644 index 0000000000..85000fda6b --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/10.16/ncursesw.pc @@ -0,0 +1,14 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX10.16.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +includedir=${prefix}/include +major_version=5 +version=5.7.20081102 + +Name: ncursesw +Description: ncurses 5.7 library +Version: ${version} +Requires: +Libs: -L${libdir} -lncurses +Cflags: diff --git a/Library/Homebrew/os/mac/pkgconfig/10.16/sqlite3.pc b/Library/Homebrew/os/mac/pkgconfig/10.16/sqlite3.pc new file mode 100644 index 0000000000..ccb697388d --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/10.16/sqlite3.pc @@ -0,0 +1,12 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX10.16.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +includedir=${prefix}/include + +Name: SQLite +Description: SQL database engine +Version: 3.31.1 +Libs: -L${libdir} -lsqlite3 +Libs.private: +Cflags: diff --git a/Library/Homebrew/os/mac/pkgconfig/10.16/uuid.pc b/Library/Homebrew/os/mac/pkgconfig/10.16/uuid.pc new file mode 100644 index 0000000000..f10358b624 --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/10.16/uuid.pc @@ -0,0 +1,14 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX10.16.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +sharedlibdir=${libdir} +includedir=${prefix}/include/uuid + +Name: uuid +Description: Universally unique id library +Version: 1.0 + +Requires: +Libs: +Cflags: -I${includedir} diff --git a/Library/Homebrew/os/mac/pkgconfig/10.16/zlib.pc b/Library/Homebrew/os/mac/pkgconfig/10.16/zlib.pc new file mode 100644 index 0000000000..1be09ff9de --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/10.16/zlib.pc @@ -0,0 +1,14 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX10.16.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +sharedlibdir=${libdir} +includedir=${prefix}/include + +Name: zlib +Description: zlib compression library +Version: 1.2.11 + +Requires: +Libs: -L${libdir} -L${sharedlibdir} -lz +Cflags: diff --git a/Library/Homebrew/os/mac/pkgconfig/11.0/expat.pc b/Library/Homebrew/os/mac/pkgconfig/11.0/expat.pc new file mode 100644 index 0000000000..ef74b08af6 --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/11.0/expat.pc @@ -0,0 +1,12 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +includedir=${prefix}/include + +Name: expat +Version: 2.2.8 +Description: expat XML parser +URL: http://www.libexpat.org +Libs: -L${libdir} -lexpat +Cflags: diff --git a/Library/Homebrew/os/mac/pkgconfig/11.0/libcurl.pc b/Library/Homebrew/os/mac/pkgconfig/11.0/libcurl.pc new file mode 100644 index 0000000000..277fe0634a --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/11.0/libcurl.pc @@ -0,0 +1,40 @@ +#*************************************************************************** +# _ _ ____ _ +# Project ___| | | | _ \| | +# / __| | | | |_) | | +# | (__| |_| | _ <| |___ +# \___|\___/|_| \_\_____| +# +# Copyright (C) 2001 - 2018, Daniel Stenberg, , et al. +# +# This software is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at https://curl.haxx.se/docs/copyright.html. +# +# You may opt to use, copy, modify, merge, publish, distribute and/or sell +# copies of the Software, and permit persons to whom the Software is +# furnished to do so, under the terms of the COPYING file. +# +# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +# KIND, either express or implied. +# +########################################################################### + +# This should most probably benefit from getting a "Requires:" field added +# dynamically by configure. +# +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +includedir=${prefix}/include +supported_protocols="DICT FILE FTP FTPS GOPHER HTTP HTTPS IMAP IMAPS LDAP LDAPS POP3 POP3S RTSP SMB SMBS SMTP SMTPS TELNET TFTP" +supported_features="AsynchDNS IPv6 Largefile GSS-API Kerberos SPNEGO MultiSSL NTLM NTLM_WB SSL libz HTTP2 UnixSockets HTTPS-proxy" + +Name: libcurl +URL: https://curl.haxx.se/ +Description: Library to transfer files with ftp, http, etc. +Version: 7.64.1 +Libs: -L${libdir} -lcurl +Libs.private: -lldap -lz +Cflags: diff --git a/Library/Homebrew/os/mac/pkgconfig/11.0/libedit.pc b/Library/Homebrew/os/mac/pkgconfig/11.0/libedit.pc new file mode 100644 index 0000000000..d8515c1adc --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/11.0/libedit.pc @@ -0,0 +1,12 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +includedir=${prefix}/include + +Name: libedit +Description: command line editor library provides generic line editing, history, and tokenization functions. +Version: 3.0 +Requires: +Libs: -L${libdir} -ledit +Cflags: -I${includedir}/editline diff --git a/Library/Homebrew/os/mac/pkgconfig/11.0/libexslt.pc b/Library/Homebrew/os/mac/pkgconfig/11.0/libexslt.pc new file mode 100644 index 0000000000..55fcaaf2a8 --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/11.0/libexslt.pc @@ -0,0 +1,13 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +includedir=${prefix}/include + + +Name: libexslt +Version: 0.8.17 +Description: EXSLT Extension library +Requires: libxml-2.0 +Libs: -L${libdir} -lexslt -lxslt -lxml2 -lz -lpthread -licucore -lm +Cflags: diff --git a/Library/Homebrew/os/mac/pkgconfig/11.0/libffi.pc b/Library/Homebrew/os/mac/pkgconfig/11.0/libffi.pc new file mode 100644 index 0000000000..9d139e94d8 --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/11.0/libffi.pc @@ -0,0 +1,12 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +toolexeclibdir=${libdir} +includedir=${prefix}/include/ffi + +Name: libffi +Description: Library supporting Foreign Function Interfaces +Version: 3.3-rc0 +Libs: -L${toolexeclibdir} -lffi +Cflags: -I${includedir} diff --git a/Library/Homebrew/os/mac/pkgconfig/11.0/libxml-2.0.pc b/Library/Homebrew/os/mac/pkgconfig/11.0/libxml-2.0.pc new file mode 100644 index 0000000000..c292049537 --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/11.0/libxml-2.0.pc @@ -0,0 +1,14 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +includedir=${prefix}/include +modules=1 + +Name: libXML +Version: 2.9.4 +Description: libXML library version2. +Requires: +Libs: -L${libdir} -lxml2 +Libs.private: -lz -lpthread -licucore -lm +Cflags: diff --git a/Library/Homebrew/os/mac/pkgconfig/11.0/libxslt.pc b/Library/Homebrew/os/mac/pkgconfig/11.0/libxslt.pc new file mode 100644 index 0000000000..853c617f93 --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/11.0/libxslt.pc @@ -0,0 +1,13 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +includedir=${prefix}/include + + +Name: libxslt +Version: 1.1.29 +Description: XSLT library version 2. +Requires: libxml-2.0 +Libs: -L${libdir} -lxslt -lxml2 -lz -lpthread -licucore -lm +Cflags: diff --git a/Library/Homebrew/os/mac/pkgconfig/11.0/ncurses.pc b/Library/Homebrew/os/mac/pkgconfig/11.0/ncurses.pc new file mode 100644 index 0000000000..8ac02e39cd --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/11.0/ncurses.pc @@ -0,0 +1,14 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +includedir=${prefix}/include +major_version=5 +version=5.7.20081102 + +Name: ncurses +Description: ncurses 5.7 library +Version: ${version} +Requires: +Libs: -L${libdir} -lncurses +Cflags: diff --git a/Library/Homebrew/os/mac/pkgconfig/11.0/ncursesw.pc b/Library/Homebrew/os/mac/pkgconfig/11.0/ncursesw.pc new file mode 100644 index 0000000000..3c087e457a --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/11.0/ncursesw.pc @@ -0,0 +1,14 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +includedir=${prefix}/include +major_version=5 +version=5.7.20081102 + +Name: ncursesw +Description: ncurses 5.7 library +Version: ${version} +Requires: +Libs: -L${libdir} -lncurses +Cflags: diff --git a/Library/Homebrew/os/mac/pkgconfig/11.0/sqlite3.pc b/Library/Homebrew/os/mac/pkgconfig/11.0/sqlite3.pc new file mode 100644 index 0000000000..dd20ff4a61 --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/11.0/sqlite3.pc @@ -0,0 +1,12 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +includedir=${prefix}/include + +Name: SQLite +Description: SQL database engine +Version: 3.31.1 +Libs: -L${libdir} -lsqlite3 +Libs.private: +Cflags: diff --git a/Library/Homebrew/os/mac/pkgconfig/11.0/uuid.pc b/Library/Homebrew/os/mac/pkgconfig/11.0/uuid.pc new file mode 100644 index 0000000000..e8e2417ca6 --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/11.0/uuid.pc @@ -0,0 +1,14 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +sharedlibdir=${libdir} +includedir=${prefix}/include/uuid + +Name: uuid +Description: Universally unique id library +Version: 1.0 + +Requires: +Libs: +Cflags: -I${includedir} diff --git a/Library/Homebrew/os/mac/pkgconfig/11.0/zlib.pc b/Library/Homebrew/os/mac/pkgconfig/11.0/zlib.pc new file mode 100644 index 0000000000..b60598fa70 --- /dev/null +++ b/Library/Homebrew/os/mac/pkgconfig/11.0/zlib.pc @@ -0,0 +1,14 @@ +homebrew_sdkroot=/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk +prefix=${homebrew_sdkroot}/usr +exec_prefix=/usr +libdir=${exec_prefix}/lib +sharedlibdir=${libdir} +includedir=${prefix}/include + +Name: zlib +Description: zlib compression library +Version: 1.2.11 + +Requires: +Libs: -L${libdir} -L${sharedlibdir} -lz +Cflags: From 6bf8de0a9e47ad7c97da56bf2e2f6e99ae63e57a Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2020 03:31:54 +0000 Subject: [PATCH 74/82] build(deps): bump diff-lcs from 1.4 to 1.4.2 in /Library/Homebrew Bumps [diff-lcs](https://github.com/halostatue/diff-lcs) from 1.4 to 1.4.2. - [Release notes](https://github.com/halostatue/diff-lcs/releases) - [Changelog](https://github.com/halostatue/diff-lcs/blob/master/History.md) - [Commits](https://github.com/halostatue/diff-lcs/compare/v1.4...v1.4.2) Signed-off-by: dependabot-preview[bot] --- Library/Homebrew/Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/Gemfile.lock b/Library/Homebrew/Gemfile.lock index 76dd1b53b4..c3630a38b0 100644 --- a/Library/Homebrew/Gemfile.lock +++ b/Library/Homebrew/Gemfile.lock @@ -17,7 +17,7 @@ GEM term-ansicolor (~> 1.3) thor (>= 0.19.4, < 2.0) tins (~> 1.6) - diff-lcs (1.4) + diff-lcs (1.4.2) docile (1.3.2) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) From f8091a4d516bbd75775ecb7c7f1dcfd9be17a19c Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 24 Jun 2020 09:12:08 +0100 Subject: [PATCH 75/82] shims/scm: handle missing Subversion on Catalina. Fixes https://github.com/Homebrew/brew/issues/7781 --- Library/Homebrew/shims/scm/git | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/shims/scm/git b/Library/Homebrew/shims/scm/git index c4e7ec5134..65ecc55237 100755 --- a/Library/Homebrew/shims/scm/git +++ b/Library/Homebrew/shims/scm/git @@ -137,8 +137,11 @@ fi path="/Applications/Xcode.app/Contents/Developer/usr/bin/$SCM_FILE" safe_exec "$path" "$@" -path="/usr/bin/$SCM_FILE" -[[ -z "$popup_stub" ]] && safe_exec "$path" "$@" +if [[ -z "$popup_stub" && "$HOMEBREW_MACOS_VERSION_NUMERIC" -lt "101500" ]] +then + path="/usr/bin/$SCM_FILE" + safe_exec "$path" "$@" +fi echo "You must: brew install $SCM_FILE" >&2 exit 1 From 58cc7dd96c0bbed6779623b7ee1312999d78c9de Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 24 Jun 2020 10:14:04 +0100 Subject: [PATCH 76/82] utils/svn_spec: use shim to detect Subversion presence. --- Library/Homebrew/test/utils/svn_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/test/utils/svn_spec.rb b/Library/Homebrew/test/utils/svn_spec.rb index 04492e9fed..18bc8e019f 100644 --- a/Library/Homebrew/test/utils/svn_spec.rb +++ b/Library/Homebrew/test/utils/svn_spec.rb @@ -9,7 +9,7 @@ describe Utils do end it "returns svn version if svn available" do - if File.executable? "/usr/bin/svn" + if quiet_system "#{HOMEBREW_SHIMS_PATH}/scm/svn", "--version" expect(described_class).to be_svn_available else expect(described_class).not_to be_svn_available From c2502277502df5febf35e05608cab4f3737a2cee Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 24 Jun 2020 10:13:09 +0100 Subject: [PATCH 77/82] test/spec_helper: fix needs_svn. Use the shim to find a valid Subversion. --- Library/Homebrew/test/spec_helper.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Library/Homebrew/test/spec_helper.rb b/Library/Homebrew/test/spec_helper.rb index fc3fbd8387..28c020bfc1 100644 --- a/Library/Homebrew/test/spec_helper.rb +++ b/Library/Homebrew/test/spec_helper.rb @@ -129,6 +129,8 @@ RSpec.configure do |config| end config.before(:each, :needs_svn) do + skip "subversion not installed." unless quiet_system "#{HOMEBREW_SHIMS_PATH}/scm/svn", "--version" + svn_paths = PATH.new(ENV["PATH"]) if OS.mac? xcrun_svn = Utils.popen_read("xcrun", "-f", "svn") From b39a3ca02fe1607b95da1c51cf446c0dd52c26a9 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 24 Jun 2020 12:00:56 +0100 Subject: [PATCH 78/82] os/mac/utils/bottles: support ARM bottles. This will be eventually needed for Big Sur. --- Library/Homebrew/extend/os/mac/utils/bottles.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/extend/os/mac/utils/bottles.rb b/Library/Homebrew/extend/os/mac/utils/bottles.rb index 08e4fb2611..99a22c3513 100644 --- a/Library/Homebrew/extend/os/mac/utils/bottles.rb +++ b/Library/Homebrew/extend/os/mac/utils/bottles.rb @@ -6,7 +6,9 @@ module Utils undef tag def tag - MacOS.version.to_sym + tag = MacOS.version.to_sym + tag = "#{tag}_arm".to_sym if Hardware::CPU.arm? + tag end end From 9c4aaa9719c74b78ff5dca4667788b3426a48678 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Wed, 24 Jun 2020 16:24:39 +0100 Subject: [PATCH 79/82] linkage_checker: handle system libraries on Big Sur --- Library/Homebrew/linkage_checker.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Library/Homebrew/linkage_checker.rb b/Library/Homebrew/linkage_checker.rb index 55b14339de..915352842d 100644 --- a/Library/Homebrew/linkage_checker.rb +++ b/Library/Homebrew/linkage_checker.rb @@ -3,6 +3,7 @@ require "keg" require "formula" require "linkage_cache_store" +require "fiddle" class LinkageChecker attr_reader :undeclared_deps @@ -125,6 +126,11 @@ class LinkageChecker if (dep = dylib_to_dep(dylib)) @broken_deps[dep] |= [dylib] + elsif MacOS.version >= :big_sur && dylib_found_via_dlopen(dylib) + # If we cannot associate the dylib with a dependency, then it may be a system library. + # In macOS Big Sur and later, system libraries do not exist on-disk and instead exist in a cache. + # If dlopen finds the dylib, then the linkage is not broken. + @system_dylibs << dylib else @broken_dylibs << dylib end @@ -151,6 +157,13 @@ class LinkageChecker end alias generic_check_dylibs check_dylibs + def dylib_found_via_dlopen(dylib) + Fiddle.dlopen(dylib).close + true + rescue Fiddle::DLError + false + end + def check_formula_deps filter_out = proc do |dep| next true if dep.build? From 04cebe30dcd258baba38306adb9047656285cb04 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Wed, 24 Jun 2020 16:31:48 +0100 Subject: [PATCH 80/82] test/support/fixtures/bottles: add Big Sur fixtures --- .../fixtures/bottles/testball_bottle-0.1.big_sur.bottle.tar.gz | 1 + .../bottles/testball_bottle-0.1.big_sur_arm.bottle.tar.gz | 1 + 2 files changed, 2 insertions(+) create mode 120000 Library/Homebrew/test/support/fixtures/bottles/testball_bottle-0.1.big_sur.bottle.tar.gz create mode 120000 Library/Homebrew/test/support/fixtures/bottles/testball_bottle-0.1.big_sur_arm.bottle.tar.gz diff --git a/Library/Homebrew/test/support/fixtures/bottles/testball_bottle-0.1.big_sur.bottle.tar.gz b/Library/Homebrew/test/support/fixtures/bottles/testball_bottle-0.1.big_sur.bottle.tar.gz new file mode 120000 index 0000000000..3e989830ba --- /dev/null +++ b/Library/Homebrew/test/support/fixtures/bottles/testball_bottle-0.1.big_sur.bottle.tar.gz @@ -0,0 +1 @@ +testball_bottle-0.1.yosemite.bottle.tar.gz \ No newline at end of file diff --git a/Library/Homebrew/test/support/fixtures/bottles/testball_bottle-0.1.big_sur_arm.bottle.tar.gz b/Library/Homebrew/test/support/fixtures/bottles/testball_bottle-0.1.big_sur_arm.bottle.tar.gz new file mode 120000 index 0000000000..3e989830ba --- /dev/null +++ b/Library/Homebrew/test/support/fixtures/bottles/testball_bottle-0.1.big_sur_arm.bottle.tar.gz @@ -0,0 +1 @@ +testball_bottle-0.1.yosemite.bottle.tar.gz \ No newline at end of file From 715cb744a0a95bd7a544b3d9e3a76a71800632f8 Mon Sep 17 00:00:00 2001 From: vidusheeamoli Date: Thu, 25 Jun 2020 03:12:07 +0530 Subject: [PATCH 81/82] srb/tapioca: update rbi of recently bumped gems --- ...@6.0.3.1.rbi => activesupport@6.0.3.2.rbi} | 2 +- .../{diff-lcs@1.3.rbi => diff-lcs@1.4.2.rbi} | 2 +- ...arallel@1.19.1.rbi => parallel@1.19.2.rbi} | 2 +- ...{parser@2.7.1.3.rbi => parser@2.7.1.4.rbi} | 16 +++- ...{rubocop@0.85.1.rbi => rubocop@0.86.0.rbi} | 74 +++++++++++++++++-- 5 files changed, 86 insertions(+), 10 deletions(-) rename Library/Homebrew/sorbet/rbi/gems/{activesupport@6.0.3.1.rbi => activesupport@6.0.3.2.rbi} (74%) rename Library/Homebrew/sorbet/rbi/gems/{diff-lcs@1.3.rbi => diff-lcs@1.4.2.rbi} (73%) rename Library/Homebrew/sorbet/rbi/gems/{parallel@1.19.1.rbi => parallel@1.19.2.rbi} (98%) rename Library/Homebrew/sorbet/rbi/gems/{parser@2.7.1.3.rbi => parser@2.7.1.4.rbi} (98%) rename Library/Homebrew/sorbet/rbi/gems/{rubocop@0.85.1.rbi => rubocop@0.86.0.rbi} (99%) diff --git a/Library/Homebrew/sorbet/rbi/gems/activesupport@6.0.3.1.rbi b/Library/Homebrew/sorbet/rbi/gems/activesupport@6.0.3.2.rbi similarity index 74% rename from Library/Homebrew/sorbet/rbi/gems/activesupport@6.0.3.1.rbi rename to Library/Homebrew/sorbet/rbi/gems/activesupport@6.0.3.2.rbi index 5e3ec3f757..47ac6bc2cf 100644 --- a/Library/Homebrew/sorbet/rbi/gems/activesupport@6.0.3.1.rbi +++ b/Library/Homebrew/sorbet/rbi/gems/activesupport@6.0.3.2.rbi @@ -1,5 +1,5 @@ # This file is autogenerated. Do not edit it by hand. Regenerate it with: -# tapioca sync +# tapioca sync --exclude json # typed: false diff --git a/Library/Homebrew/sorbet/rbi/gems/diff-lcs@1.3.rbi b/Library/Homebrew/sorbet/rbi/gems/diff-lcs@1.4.2.rbi similarity index 73% rename from Library/Homebrew/sorbet/rbi/gems/diff-lcs@1.3.rbi rename to Library/Homebrew/sorbet/rbi/gems/diff-lcs@1.4.2.rbi index 27b1fb4bc6..198c6b42fc 100644 --- a/Library/Homebrew/sorbet/rbi/gems/diff-lcs@1.3.rbi +++ b/Library/Homebrew/sorbet/rbi/gems/diff-lcs@1.4.2.rbi @@ -1,5 +1,5 @@ # This file is autogenerated. Do not edit it by hand. Regenerate it with: -# tapioca sync +# tapioca sync --exclude json # typed: true diff --git a/Library/Homebrew/sorbet/rbi/gems/parallel@1.19.1.rbi b/Library/Homebrew/sorbet/rbi/gems/parallel@1.19.2.rbi similarity index 98% rename from Library/Homebrew/sorbet/rbi/gems/parallel@1.19.1.rbi rename to Library/Homebrew/sorbet/rbi/gems/parallel@1.19.2.rbi index c8028fd195..29e0e10469 100644 --- a/Library/Homebrew/sorbet/rbi/gems/parallel@1.19.1.rbi +++ b/Library/Homebrew/sorbet/rbi/gems/parallel@1.19.2.rbi @@ -1,5 +1,5 @@ # This file is autogenerated. Do not edit it by hand. Regenerate it with: -# tapioca sync +# tapioca sync --exclude json # typed: true diff --git a/Library/Homebrew/sorbet/rbi/gems/parser@2.7.1.3.rbi b/Library/Homebrew/sorbet/rbi/gems/parser@2.7.1.4.rbi similarity index 98% rename from Library/Homebrew/sorbet/rbi/gems/parser@2.7.1.3.rbi rename to Library/Homebrew/sorbet/rbi/gems/parser@2.7.1.4.rbi index 282993d64d..67b7fecda2 100644 --- a/Library/Homebrew/sorbet/rbi/gems/parser@2.7.1.3.rbi +++ b/Library/Homebrew/sorbet/rbi/gems/parser@2.7.1.4.rbi @@ -1,5 +1,5 @@ # This file is autogenerated. Do not edit it by hand. Regenerate it with: -# tapioca sync +# tapioca sync --exclude json # typed: true @@ -53,7 +53,9 @@ class Parser::AST::Processor < ::AST::Processor def on_empty_else(node); end def on_ensure(node); end def on_erange(node); end + def on_find_pattern(node); end def on_for(node); end + def on_forward_arg(node); end def on_gvar(node); end def on_gvasgn(node); end def on_hash(node); end @@ -217,9 +219,11 @@ class Parser::Builders::Default def emit_file_line_as_literals; end def emit_file_line_as_literals=(_); end def false(false_t); end + def find_pattern(lbrack_t, elements, rbrack_t); end def float(float_t); end def for(for_t, iterator, in_t, iteratee, do_t, body, end_t); end - def forward_args(begin_t, dots_t, end_t); end + def forward_arg(dots_t); end + def forward_only_args(begin_t, dots_t, end_t); end def forwarded_args(dots_t); end def gvar(token); end def hash_pattern(lbrace_t, kwargs, rbrace_t); end @@ -366,6 +370,8 @@ class Parser::Builders::Default def self.emit_arg_inside_procarg0=(_); end def self.emit_encoding; end def self.emit_encoding=(_); end + def self.emit_forward_arg; end + def self.emit_forward_arg=(_); end def self.emit_index; end def self.emit_index=(_); end def self.emit_lambda; end @@ -1024,8 +1030,11 @@ class Parser::Source::TreeRewriter def initialize(source_buffer, crossing_deletions: _, different_replacements: _, swallowed_insertions: _); end + def as_nested_actions; end + def as_replacements; end def diagnostics; end def empty?; end + def import!(foreign_rewriter, offset: _); end def in_transaction?; end def insert_after(range, content); end def insert_after_multi(range, text); end @@ -1059,10 +1068,13 @@ class Parser::Source::TreeRewriter::Action def initialize(range, enforcer, insert_before: _, replacement: _, insert_after: _, children: _); end def combine(action); end + def contract; end def empty?; end def insert_after; end def insert_before; end def insertion?; end + def moved(source_buffer, offset); end + def nested_actions; end def ordered_replacements; end def range; end def replacement; end diff --git a/Library/Homebrew/sorbet/rbi/gems/rubocop@0.85.1.rbi b/Library/Homebrew/sorbet/rbi/gems/rubocop@0.86.0.rbi similarity index 99% rename from Library/Homebrew/sorbet/rbi/gems/rubocop@0.85.1.rbi rename to Library/Homebrew/sorbet/rbi/gems/rubocop@0.86.0.rbi index b9895aecaf..48ac41d0c8 100644 --- a/Library/Homebrew/sorbet/rbi/gems/rubocop@0.85.1.rbi +++ b/Library/Homebrew/sorbet/rbi/gems/rubocop@0.86.0.rbi @@ -1,5 +1,5 @@ # This file is autogenerated. Do not edit it by hand. Regenerate it with: -# tapioca sync +# tapioca sync --exclude json # typed: true @@ -3415,6 +3415,19 @@ end RuboCop::Cop::Lint::CircularArgumentReference::MSG = T.let(T.unsafe(nil), String) +class RuboCop::Cop::Lint::ConstantResolution < ::RuboCop::Cop::Cop + def on_const(node); end + def unqualified_const?(node = _); end + + private + + def allowed_names; end + def const_name?(name); end + def ignored_names; end +end + +RuboCop::Cop::Lint::ConstantResolution::MSG = T.let(T.unsafe(nil), String) + class RuboCop::Cop::Lint::Debugger < ::RuboCop::Cop::Cop def binding_irb_call?(node = _); end def debugger_call?(node = _); end @@ -4004,6 +4017,7 @@ end RuboCop::Cop::Lint::PercentSymbolArray::MSG = T.let(T.unsafe(nil), String) class RuboCop::Cop::Lint::RaiseException < ::RuboCop::Cop::Cop + def autocorrect(node); end def exception?(node = _); end def exception_new_with_message?(node = _); end def on_send(node); end @@ -4170,6 +4184,7 @@ RuboCop::Cop::Lint::RedundantWithObject::MSG_EACH_WITH_OBJECT = T.let(T.unsafe(n RuboCop::Cop::Lint::RedundantWithObject::MSG_WITH_OBJECT = T.let(T.unsafe(nil), String) class RuboCop::Cop::Lint::RegexpAsCondition < ::RuboCop::Cop::Cop + def autocorrect(node); end def on_match_current_line(node); end end @@ -4762,11 +4777,14 @@ class RuboCop::Cop::Metrics::CyclomaticComplexity < ::RuboCop::Cop::Cop include(::RuboCop::Cop::ConfigurableMax) include(::RuboCop::Cop::IgnoredMethods) include(::RuboCop::Cop::MethodComplexity) + include(::RuboCop::Cop::Metrics::Utils::IteratingBlock) private - def complexity_score_for(_node); end + def block_method(node); end + def complexity_score_for(node); end + def count_block?(block); end end RuboCop::Cop::Metrics::CyclomaticComplexity::COUNTED_NODES = T.let(T.unsafe(nil), Array) @@ -4857,6 +4875,14 @@ RuboCop::Cop::Metrics::Utils::AbcSizeCalculator::BRANCH_NODES = T.let(T.unsafe(n RuboCop::Cop::Metrics::Utils::AbcSizeCalculator::CONDITION_NODES = T.let(T.unsafe(nil), Array) +module RuboCop::Cop::Metrics::Utils::IteratingBlock + def block_method_name(node); end + def iterating_block?(node); end + def iterating_method?(name); end +end + +RuboCop::Cop::Metrics::Utils::IteratingBlock::KNOWN_ITERATING_METHODS = T.let(T.unsafe(nil), Set) + module RuboCop::Cop::Migration end @@ -5478,6 +5504,9 @@ module RuboCop::Cop::RegexpLiteralHelp private def freespace_mode_regexp?(node); end + def pattern_source(node); end + def replace_match_with_spaces(source, pattern); end + def source_with_comments_and_interpolations_blanked(child, freespace_mode); end end class RuboCop::Cop::Registry @@ -7376,6 +7405,7 @@ end RuboCop::Cop::Style::MultilineMethodSignature::MSG = T.let(T.unsafe(nil), String) class RuboCop::Cop::Style::MultilineTernaryOperator < ::RuboCop::Cop::Cop + def autocorrect(node); end def on_if(node); end end @@ -7509,7 +7539,13 @@ end RuboCop::Cop::Style::NestedParenthesizedCalls::MSG = T.let(T.unsafe(nil), String) class RuboCop::Cop::Style::NestedTernaryOperator < ::RuboCop::Cop::Cop + def autocorrect(node); end def on_if(node); end + + private + + def if_node(node); end + def remove_parentheses(source); end end RuboCop::Cop::Style::NestedTernaryOperator::MSG = T.let(T.unsafe(nil), String) @@ -8056,6 +8092,26 @@ RuboCop::Cop::Style::RedundantException::MSG_1 = T.let(T.unsafe(nil), String) RuboCop::Cop::Style::RedundantException::MSG_2 = T.let(T.unsafe(nil), String) +class RuboCop::Cop::Style::RedundantFetchBlock < ::RuboCop::Cop::Cop + include(::RuboCop::Cop::FrozenStringLiteral) + include(::RuboCop::Cop::RangeHelp) + + def autocorrect(node); end + def on_block(node); end + def redundant_fetch_block_candidate?(node = _); end + + private + + def basic_literal?(node); end + def build_bad_method(send, body); end + def build_good_method(send, body); end + def check_for_constant?; end + def check_for_string?; end + def fetch_range(send, node); end +end + +RuboCop::Cop::Style::RedundantFetchBlock::MSG = T.let(T.unsafe(nil), String) + class RuboCop::Cop::Style::RedundantFreeze < ::RuboCop::Cop::Cop include(::RuboCop::Cop::FrozenStringLiteral) @@ -8201,10 +8257,9 @@ class RuboCop::Cop::Style::RedundantRegexpEscape < ::RuboCop::Cop::Cop private def allowed_escape?(node, char, within_character_class); end + def delimiter?(node, char); end def each_escape(node); end def escape_range_at_index(node, index); end - def pattern_source(node); end - def slash_literal?(node); end end RuboCop::Cop::Style::RedundantRegexpEscape::ALLOWED_ALWAYS_ESCAPES = T.let(T.unsafe(nil), Array) @@ -8266,7 +8321,6 @@ class RuboCop::Cop::Style::RedundantSelf < ::RuboCop::Cop::Cop def add_scope(node, local_variables = _); end def allow_self(node); end def allowed_send_node?(node); end - def keyword?(method_name); end def on_argument(node); end def regular_method_call?(node); end @@ -8275,6 +8329,8 @@ end RuboCop::Cop::Style::RedundantSelf::KERNEL_METHODS = T.let(T.unsafe(nil), Array) +RuboCop::Cop::Style::RedundantSelf::KEYWORDS = T.let(T.unsafe(nil), Array) + RuboCop::Cop::Style::RedundantSelf::MSG = T.let(T.unsafe(nil), String) class RuboCop::Cop::Style::RedundantSort < ::RuboCop::Cop::Cop @@ -8699,8 +8755,15 @@ end RuboCop::Cop::Style::Strip::MSG = T.let(T.unsafe(nil), String) class RuboCop::Cop::Style::StructInheritance < ::RuboCop::Cop::Cop + include(::RuboCop::Cop::RangeHelp) + + def autocorrect(node); end def on_class(node); end def struct_constructor?(node = _); end + + private + + def correct_parent(parent, corrector); end end RuboCop::Cop::Style::StructInheritance::MSG = T.let(T.unsafe(nil), String) @@ -9066,6 +9129,7 @@ class RuboCop::Cop::Style::YodaCondition < ::RuboCop::Cop::Cop def corrected_code(node); end def enforce_yoda?; end def equality_only?; end + def interpolation?(node); end def message(node); end def non_equality_operator?(node); end def noncommutative_operator?(node); end From 0f9319cc43fbb17fd31615a43813116b8d5fa890 Mon Sep 17 00:00:00 2001 From: vidusheeamoli Date: Thu, 25 Jun 2020 03:14:32 +0530 Subject: [PATCH 82/82] sorbet: update hidden definitions --- .../sorbet/rbi/hidden-definitions/hidden.rbi | 38 ------------------- 1 file changed, 38 deletions(-) diff --git a/Library/Homebrew/sorbet/rbi/hidden-definitions/hidden.rbi b/Library/Homebrew/sorbet/rbi/hidden-definitions/hidden.rbi index 1280eff6e2..096dbce314 100644 --- a/Library/Homebrew/sorbet/rbi/hidden-definitions/hidden.rbi +++ b/Library/Homebrew/sorbet/rbi/hidden-definitions/hidden.rbi @@ -13558,26 +13558,6 @@ end ParseError = Racc::ParseError -class Parser::AST::Processor - def on_find_pattern(node); end - - def on_forward_arg(node); end -end - -class Parser::Builders::Default - def find_pattern(lbrack_t, elements, rbrack_t); end - - def forward_arg(dots_t); end - - def forward_only_args(begin_t, dots_t, end_t); end -end - -class Parser::Builders::Default - def self.emit_forward_arg(); end - - def self.emit_forward_arg=(emit_forward_arg); end -end - Parser::CurrentRuby = Parser::Ruby26 class Parser::Ruby24 @@ -15344,22 +15324,6 @@ end class Parser::Ruby26 end -class Parser::Source::TreeRewriter - def as_nested_actions(); end - - def as_replacements(); end - - def import!(foreign_rewriter, offset: T.unsafe(nil)); end -end - -class Parser::Source::TreeRewriter::Action - def contract(); end - - def moved(source_buffer, offset); end - - def nested_actions(); end -end - class Pathname include ::MachOShim def fnmatch?(*_); end @@ -24484,8 +24448,6 @@ module Tins::SexySingleton def dup(); end end -Tins::SexySingleton::SingletonClassMethods = Singleton::SingletonClassMethods - module Tins::SexySingleton def self.__init__(klass); end