Last active
September 15, 2022 11:53
-
-
Save markburns/70f1d1badf6f86395d6b0ebefb540a24 to your computer and use it in GitHub Desktop.
Find class variables, class instance variables, global variables and cattr_accessors etc in all your dependencies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'parser/current' | |
require 'active_support/all' | |
require 'rspec' | |
require 'byebug' | |
require 'pstore' | |
module FsCaching | |
def store | |
@store ||= PStore.new(".gem_problems.pstore") | |
end | |
def cache(key) | |
case @in_transaction | |
when true | |
store[key] ||= yield | |
else | |
result = store.transaction do | |
@in_transaction = true | |
store[key] ||= yield | |
end | |
@in_transaction = false | |
result | |
end | |
end | |
end | |
class GemFinder | |
include FsCaching | |
def call | |
cache 'BUNDLE_INSTALL' do | |
`bundle install --with=production --without="development test"` | |
gems = `bundle list | grep '*'`.split("\n").map{|s| s.gsub(/ *\* /, "")} | |
gems = gems.map{|g| g.split("(")}.map{|name, version| [name.strip, version.gsub(")", '').strip]} | |
first = `bundle show #{gems.first.first}` | |
byebug | |
gem_path = first.gsub(gems.first.join('-'), '').strip.gsub(%r{/$}, "") | |
[gem_path, gems] | |
end | |
end | |
end | |
module Parsing | |
def parser | |
@parser ||= Parser::CurrentRuby | |
end | |
def parse(c) | |
return OpenStruct.new(children: []) if c.blank? | |
parser.parse(c) | |
end | |
def find(*types) | |
Array(types).map do |type| | |
to_a(sexp, type) | |
end.flatten | |
end | |
def to_a(sexp, filter=nil) | |
return [] unless sexp.respond_to?(:children) | |
sexp.children.map(&children_of(filter)).flatten.select do |a| | |
a.is_a?(SexpWrapper) | |
end | |
end | |
def children_of(filter=nil) | |
lambda do |s| | |
if s.respond_to?(:children) | |
children = to_a(s, filter).reject(&:blank?) | |
if filter && s.type == filter | |
SexpWrapper.new(s, children) | |
else | |
children | |
end | |
else | |
s | |
end | |
end | |
end | |
end | |
class ProblematicVariableFinder | |
include Parsing | |
def self.call(code) | |
new(code: code).call | |
end | |
attr_reader :code | |
def initialize(code:nil, sexp:nil) | |
@code = code | |
@sexp = sexp || (parse(code) if code) | |
end | |
def call | |
sort(global_variables + class_variables + class_instance_variables + class_accessors) | |
end | |
def global_variables | |
variables([:gvar, :gvasgn], :global_variable) | |
end | |
def class_variables | |
variables([:cvar, :cvasgn], :class_variable) | |
end | |
def class_instance_variables | |
result = find(:sclass, :defs).map{|s| s.find(:ivar) + s.find(:ivasgn)}.flatten.map do |s| | |
format(s, :class_instance_variable) | |
end | |
sort result | |
end | |
def class_accessors | |
sort eigen_class_accessors + cattr_accessors | |
end | |
def eigen_class_accessors | |
result = find(:sclass).map do |s| | |
s.find(:send).select{|s2| [:attr_accessor, :attr_writer, :attr_reader].include? s2.sexp.children[1] } | |
end.reject(&:blank?) | |
result.flatten.map do |r| | |
name = r.last_child.children.first | |
format(r, :class_accessor, name) | |
end | |
end | |
def cattr_accessors | |
result = find(:send).select do |s2| | |
[ | |
:cattr_accessor, :cattr_writer, :cattr_reader, | |
:mattr_accessor, :mattr_writer, :mattr_reader | |
].include? s2.sexp.children[1] | |
end | |
result.flatten.map do |r| | |
name = r.last_child.children.first | |
format(r, :class_accessor, name) | |
end | |
end | |
private | |
def variables(nodes, type) | |
result = find(*nodes).map do |s| | |
format(s, type) | |
end | |
sort result | |
end | |
def sort(results) | |
results.sort{|a, b| a[:line_number] <=> b[:line_number]} | |
end | |
def format(s, type, name=nil) | |
name ||= s.first_child | |
{type: type, line_number: s.line, name: name} | |
end | |
def sexp | |
@sexp ||= parse(code) | |
end | |
def type | |
sexp.type | |
end | |
end | |
class SexpWrapper | |
include Parsing | |
def initialize(sexp, children) | |
@sexp = sexp | |
@children = children | |
end | |
def line | |
sexp.loc.line | |
end | |
def first_child | |
sexp.children.first | |
end | |
def last_child | |
sexp.children.last | |
end | |
attr_reader :sexp, :children | |
end | |
if File.basename($0) == File.basename(__FILE__) | |
gem_path, gems = GemFinder.new.call | |
end | |
class ProblemFinder | |
include FsCaching | |
def initialize(gem_path, gems) | |
@gem_path, @gems = gem_path, gems | |
end | |
attr_reader :gem_path, :gems | |
def call | |
problems = {} | |
outdated = cache 'BUNDLE_OUT_OF_DATE_INFO' do | |
`bundle outdated`.split("\n").grep(/ \*/).reject do |s| | |
s['development'] || | |
s['test'] | |
end | |
end | |
names = outdated.map{|o| o.gsub(/\s+\*\s+/, '').split(" ").first } | |
gems.each do |name, version| | |
key = "#{name}-#{version}" | |
gem_problems = cache(key) do | |
find_gem_problems(name, version) | |
end | |
gem_is_out_of_date = names.include?(name) | |
problems[key] = [gem_problems, gem_is_out_of_date] if gem_problems.any? | |
end | |
[problems, outdated] | |
end | |
def find_gem_problems(name, version) | |
directory = "#{gem_path}/#{name}-#{version}/" | |
folder = gem_path + '/' + [name, version].join('-') + '/' | |
lib_folder = folder + 'lib' + '/' + name + '/' | |
find_problems_in_directory(directory, [folder, lib_folder]) | |
end | |
def find_problems_in_directory(path, remove_paths=[]) | |
key = [path, remove_paths].inspect | |
cache(key) do | |
files = Dir.glob("#{path}/**/*.rb") | |
directory_problems = {} | |
files.each do |f| | |
full_path, path, problems = find_file_problems(f, remove_paths) | |
directory_problems[path] = [full_path, problems] if problems.any? | |
end | |
directory_problems | |
end | |
end | |
def find_file_problems(f, remove_paths) | |
full_path = File.expand_path f | |
friendly_path = full_path | |
remove_paths.each do |p| | |
friendly_path = f.gsub(p, '') | |
end | |
problems = begin | |
ProblematicVariableFinder.call(File.read full_path) | |
rescue => e | |
puts "Error parsing #{f} #{e}" | |
[] | |
end | |
[full_path, friendly_path, problems] | |
end | |
end | |
require 'optparse' | |
options = {} | |
OptionParser.new do |opts| | |
opts.banner = "Usage: #{__FILE__} [options]" | |
opts.on("-v", "--[no-]verbose", "Run verbosely") do |v| | |
options[:verbose] = v | |
end | |
opts.on("-i", "--ignore rails,activerecord", Array, "Ignore gems") do |i| | |
options[:ignore] = i | |
end | |
opts.on("-g", "--gems rails,activerecord", Array, "List of gems") do |g| | |
options[:gems] = g | |
end | |
end.parse! | |
VERBOSE= options[:verbose] | |
GEMS= options[:gems] | |
IGNORE_GEMS = options[:ignore] || [] | |
byebug | |
def display_problems(problems) | |
problems.each do |path, (full_path, file_problems)| | |
file_problems.each do |problem| | |
display_problem(full_path, path, problem) | |
end | |
end | |
end | |
def display_problem(full_path, path, problem) | |
formatted_file_and_line = [full_path, problem[:line_number]].join(':').ljust(150) | |
puts " #{problem[:type].to_s.ljust(30, ' ')} #{path}:#{problem[:line_number]} : #{problem[:name]} #{formatted_file_and_line}" | |
end | |
if gem_path | |
app_problems = ProblemFinder.new(gem_path, gems).find_problems_in_directory("app") | |
lib_problems = ProblemFinder.new(gem_path, gems).find_problems_in_directory("lib") | |
display_problems(app_problems.merge lib_problems) | |
gem_problems, out_of_date = ProblemFinder.new(gem_path, gems).call | |
gem_problems.each do |gem_name, (problems, out_of_date)| | |
*name, _version = gem_name.split("-") | |
name = name.join("-") | |
next if IGNORE_GEMS.include?(name) | |
if Array(GEMS).any? | |
next unless GEMS.include?(name) | |
end | |
puts '-----------------' | |
puts "#{gem_name} #{out_of_date ? '(out of date)' : ''} #{problems.flatten.length} possible issues" | |
next unless VERBOSE | |
display_problems(problems) | |
end | |
puts "Out of date gems:" | |
puts out_of_date | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require_relative './problematic_variable_finder' | |
RSpec.describe ProblematicVariableFinder do | |
let(:code) do | |
<<-RUBY | |
module Top | |
module Thing | |
class Something | |
def self.egg | |
@a_thing | |
end | |
class << self | |
def thing | |
@another_thing | |
@this_one_too = 'this' | |
end | |
end | |
def not_a_thing | |
@not_a_thing | |
@this_other_one_too = 'that' | |
end | |
def self.thing_2 | |
@@a_thing_2 | |
@this_other_one_too = 'hey' | |
end | |
class << self | |
def another_thing_2 | |
@@another_thing_2 = 'yoho' | |
@this_other_one_too ||= 'boom' | |
$some_global = 'evil' | |
end | |
end | |
end | |
end | |
$global = 'bad' | |
$this_global | |
class << self | |
define_method :another_thing do | |
@a = 2 | |
end | |
attr_accessor :this | |
attr_writer :that | |
attr_reader :these | |
end | |
cattr_accessor :a | |
cattr_writer :b | |
cattr_reader :c | |
mattr_accessor :d | |
mattr_writer :e | |
mattr_reader :f | |
# not problem causing | |
thread_cattr_accessor :g | |
thread_cattr_writer :h | |
thread_cattr_reader :i | |
thread_mattr_accessor :j | |
thread_mattr_writer :k | |
thread_mattr_reader :l | |
end | |
RUBY | |
end | |
describe "#class_accessors" do | |
it do | |
result = described_class.new(code: code).class_accessors | |
expect(result.length).to eq 9 | |
expect(result).to eq [ | |
{:type => :class_accessor, :line_number =>41, :name=>:this}, | |
{:type => :class_accessor, :line_number =>42, :name=>:that}, | |
{:type => :class_accessor, :line_number =>43, :name=>:these}, | |
{:type => :class_accessor, :line_number =>46, :name=>:a}, | |
{:type => :class_accessor, :line_number =>47, :name=>:b}, | |
{:type => :class_accessor, :line_number =>48, :name=>:c}, | |
{:type => :class_accessor, :line_number =>49, :name=>:d}, | |
{:type => :class_accessor, :line_number =>50, :name=>:e}, | |
{:type => :class_accessor, :line_number =>51, :name=>:f}, | |
] | |
end | |
end | |
describe "#class_instance_variables" do | |
it do | |
result = described_class.new(code: code).class_instance_variables | |
expect(result.length).to eq 6 | |
expect(result).to eq [ | |
{:type => :class_instance_variable, :line_number=>5, :name=>:@a_thing}, | |
{:type => :class_instance_variable, :line_number=>10, :name=>:@another_thing}, | |
{:type => :class_instance_variable, :line_number=>11, :name=>:@this_one_too}, | |
{:type => :class_instance_variable, :line_number=>22, :name=>:@this_other_one_too}, | |
{:type => :class_instance_variable, :line_number=>28, :name=>:@this_other_one_too}, | |
{:type => :class_instance_variable, :line_number=>38, :name=>:@a}, | |
] | |
end | |
end | |
describe "#global_variables" do | |
it do | |
result = described_class.new(code: code).global_variables | |
expect(result).to eq [ | |
{type: :global_variable, line_number: 29, name: :"$some_global"}, | |
{type: :global_variable, line_number: 34, name: :"$global"}, | |
{type: :global_variable, line_number: 35, name: :$this_global, } | |
] | |
end | |
end | |
describe "#class_variables" do | |
it do | |
result = described_class.new(code: code).class_variables | |
expect(result).to eq [ | |
{:line_number=>21, :name=>:@@a_thing_2, :type=>:class_variable}, | |
{:line_number=>27, :name=>:@@another_thing_2, :type=>:class_variable} | |
] | |
expect(result.length).to eq 2 | |
end | |
end | |
end | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
----------------- | |
actioncable-5.2.2 6 possible issues: | |
class_accessor lib/action_cable/subscription_adapter/redis.rb:15 : (pair | |
(sym :default) | |
(block | |
(send nil :lambda) | |
(args | |
(arg :config)) | |
(send | |
(const | |
(cbase) :Redis) :new | |
(send | |
(lvar :config) :slice | |
(sym :url) | |
(sym :host) | |
(sym :port) | |
(sym :db) | |
(sym :password))))) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actioncable-5.2.2/lib/action_cable/subscription_adapter/redis.rb:15 | |
class_accessor lib/action_cable/server/base.rb:15 : (pair | |
(sym :instance_accessor) | |
(true)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actioncable-5.2.2/lib/action_cable/server/base.rb:15 | |
class_instance_variable lib/action_cable/channel/base.rb:116 : @action_methods /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actioncable-5.2.2/lib/action_cable/channel/base.rb:116 | |
class_instance_variable lib/action_cable/channel/base.rb:132 : @action_methods /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actioncable-5.2.2/lib/action_cable/channel/base.rb:132 | |
----------------- | |
actionmailer-5.2.2 6 possible issues: | |
class_instance_variable lib/action_mailer/base.rb:510 : @mailer_name /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionmailer-5.2.2/lib/action_mailer/base.rb:510 | |
class_accessor lib/action_mailer/base.rb:513 : mailer_name /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionmailer-5.2.2/lib/action_mailer/base.rb:513 | |
class_accessor lib/action_mailer/delivery_methods.rb:13 : (pair | |
(sym :default) | |
(true)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionmailer-5.2.2/lib/action_mailer/delivery_methods.rb:13 | |
class_accessor lib/action_mailer/delivery_methods.rb:14 : (pair | |
(sym :default) | |
(true)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionmailer-5.2.2/lib/action_mailer/delivery_methods.rb:14 | |
class_accessor lib/action_mailer/delivery_methods.rb:15 : (pair | |
(sym :default) | |
(sym :mailers)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionmailer-5.2.2/lib/action_mailer/delivery_methods.rb:15 | |
class_accessor lib/action_mailer/preview.rb:14 : (pair | |
(sym :instance_writer) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionmailer-5.2.2/lib/action_mailer/preview.rb:14 | |
class_accessor lib/action_mailer/preview.rb:22 : (pair | |
(sym :instance_writer) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionmailer-5.2.2/lib/action_mailer/preview.rb:22 | |
class_accessor lib/action_mailer/preview.rb:25 : (pair | |
(sym :instance_writer) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionmailer-5.2.2/lib/action_mailer/preview.rb:25 | |
----------------- | |
actionpack-5.2.2 52 possible issues: | |
class_instance_variable lib/action_controller/metal.rb:130 : @controller_name /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_controller/metal.rb:130 | |
class_accessor lib/action_controller/metal/helpers.rb:54 : helpers_path /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_controller/metal/helpers.rb:54 | |
global_variable lib/action_controller/metal/exceptions.rb:10 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_controller/metal/exceptions.rb:10 | |
global_variable lib/action_controller/metal/exceptions.rb:10 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_controller/metal/exceptions.rb:10 | |
class_accessor lib/action_controller/metal/strong_parameters.rb:124 : (pair | |
(sym :instance_accessor) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_controller/metal/strong_parameters.rb:124 | |
class_accessor lib/action_controller/metal/strong_parameters.rb:126 : (pair | |
(sym :instance_accessor) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_controller/metal/strong_parameters.rb:126 | |
class_accessor lib/action_controller/metal/strong_parameters.rb:217 : (pair | |
(sym :default) | |
(array | |
(str "controller") | |
(str "action"))) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_controller/metal/strong_parameters.rb:217 | |
global_variable lib/action_controller/test_case.rb:572 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_controller/test_case.rb:572 | |
class_accessor lib/action_dispatch/middleware/exception_wrapper.rb:8 : (pair | |
(sym :default) | |
(send | |
(send | |
(const nil :Hash) :new | |
(sym :internal_server_error)) :merge! | |
(hash | |
(pair | |
(str "ActionController::RoutingError") | |
(sym :not_found)) | |
(pair | |
(str "AbstractController::ActionNotFound") | |
(sym :not_found)) | |
(pair | |
(str "ActionController::MethodNotAllowed") | |
(sym :method_not_allowed)) | |
(pair | |
(str "ActionController::UnknownHttpMethod") | |
(sym :method_not_allowed)) | |
(pair | |
(str "ActionController::NotImplemented") | |
(sym :not_implemented)) | |
(pair | |
(str "ActionController::UnknownFormat") | |
(sym :not_acceptable)) | |
(pair | |
(str "ActionController::InvalidAuthenticityToken") | |
(sym :unprocessable_entity)) | |
(pair | |
(str "ActionController::InvalidCrossOriginRequest") | |
(sym :unprocessable_entity)) | |
(pair | |
(str "ActionDispatch::Http::Parameters::ParseError") | |
(sym :bad_request)) | |
(pair | |
(str "ActionController::BadRequest") | |
(sym :bad_request)) | |
(pair | |
(str "ActionController::ParameterMissing") | |
(sym :bad_request)) | |
(pair | |
(str "Rack::QueryParser::ParameterTypeError") | |
(sym :bad_request)) | |
(pair | |
(str "Rack::QueryParser::InvalidParameterError") | |
(sym :bad_request))))) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/middleware/exception_wrapper.rb:8 | |
class_accessor lib/action_dispatch/middleware/exception_wrapper.rb:24 : (pair | |
(sym :default) | |
(send | |
(send | |
(const nil :Hash) :new | |
(str "diagnostics")) :merge! | |
(hash | |
(pair | |
(str "ActionView::MissingTemplate") | |
(str "missing_template")) | |
(pair | |
(str "ActionController::RoutingError") | |
(str "routing_error")) | |
(pair | |
(str "AbstractController::ActionNotFound") | |
(str "unknown_action")) | |
(pair | |
(str "ActiveRecord::StatementInvalid") | |
(str "invalid_statement")) | |
(pair | |
(str "ActionView::Template::Error") | |
(str "template_error"))))) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/middleware/exception_wrapper.rb:24 | |
class_variable lib/action_dispatch/middleware/exception_wrapper.rb:42 : @@rescue_templates /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/middleware/exception_wrapper.rb:42 | |
class_variable lib/action_dispatch/middleware/exception_wrapper.rb:86 : @@rescue_responses /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/middleware/exception_wrapper.rb:86 | |
class_variable lib/action_dispatch/middleware/exception_wrapper.rb:107 : @@rescue_responses /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/middleware/exception_wrapper.rb:107 | |
global_variable lib/action_dispatch/middleware/show_exceptions.rb:54 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/middleware/show_exceptions.rb:54 | |
global_variable lib/action_dispatch/middleware/debug_exceptions.rb:39 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/middleware/debug_exceptions.rb:39 | |
global_variable lib/action_dispatch/middleware/debug_exceptions.rb:192 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/middleware/debug_exceptions.rb:192 | |
class_accessor lib/action_dispatch/middleware/cookies.rb:438 : (pair | |
(sym :default) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/middleware/cookies.rb:438 | |
global_variable lib/action_dispatch/middleware/session/mem_cache_store.rb:7 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/middleware/session/mem_cache_store.rb:7 | |
global_variable lib/action_dispatch/middleware/session/abstract_store.rb:15 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/middleware/session/abstract_store.rb:15 | |
global_variable lib/action_dispatch/middleware/session/abstract_store.rb:15 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/middleware/session/abstract_store.rb:15 | |
global_variable lib/action_dispatch/middleware/session/abstract_store.rb:16 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/middleware/session/abstract_store.rb:16 | |
class_accessor lib/action_dispatch/system_testing/server.rb:7 : silence_puma /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/system_testing/server.rb:7 | |
global_variable lib/action_dispatch/journey/router.rb:7 : $-w /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/journey/router.rb:7 | |
global_variable lib/action_dispatch/journey/router.rb:8 : $-w /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/journey/router.rb:8 | |
global_variable lib/action_dispatch/journey/router.rb:10 : $-w /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/journey/router.rb:10 | |
class_instance_variable lib/action_dispatch/testing/request_encoder.rb:46 : @encoders /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/testing/request_encoder.rb:46 | |
class_instance_variable lib/action_dispatch/testing/request_encoder.rb:46 : @encoders /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/testing/request_encoder.rb:46 | |
class_instance_variable lib/action_dispatch/testing/request_encoder.rb:50 : @encoders /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/testing/request_encoder.rb:50 | |
class_variable lib/action_dispatch/testing/integration.rb:620 : @@app /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/testing/integration.rb:620 | |
class_variable lib/action_dispatch/testing/integration.rb:625 : @@app /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/testing/integration.rb:625 | |
class_variable lib/action_dispatch/testing/integration.rb:625 : @@app /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/testing/integration.rb:625 | |
class_variable lib/action_dispatch/testing/integration.rb:626 : @@app /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/testing/integration.rb:626 | |
class_variable lib/action_dispatch/testing/integration.rb:633 : @@app /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/testing/integration.rb:633 | |
global_variable lib/action_dispatch/http/parameters.rb:21 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/http/parameters.rb:21 | |
class_accessor lib/action_dispatch/http/parameters.rb:28 : parameter_parsers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/http/parameters.rb:28 | |
global_variable lib/action_dispatch/http/parameters.rb:114 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/http/parameters.rb:114 | |
class_accessor lib/action_dispatch/http/url.rb:12 : (pair | |
(sym :default) | |
(int 1)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/http/url.rb:12 | |
class_variable lib/action_dispatch/http/url.rb:156 : @@tld_length /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/http/url.rb:156 | |
class_variable lib/action_dispatch/http/url.rb:329 : @@tld_length /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/http/url.rb:329 | |
class_variable lib/action_dispatch/http/url.rb:337 : @@tld_length /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/http/url.rb:337 | |
class_variable lib/action_dispatch/http/url.rb:345 : @@tld_length /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/http/url.rb:345 | |
class_instance_variable lib/action_dispatch/http/mime_type.rb:141 : @register_callbacks /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/http/mime_type.rb:141 | |
class_instance_variable lib/action_dispatch/http/mime_type.rb:166 : @register_callbacks /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/http/mime_type.rb:166 | |
class_accessor lib/action_dispatch/http/response.rb:86 : (pair | |
(sym :default) | |
(str "utf-8")) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/http/response.rb:86 | |
class_accessor lib/action_dispatch/http/response.rb:87 : default_headers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/http/response.rb:87 | |
class_accessor lib/action_dispatch/http/mime_negotiation.rb:11 : (pair | |
(sym :default) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/http/mime_negotiation.rb:11 | |
class_accessor lib/action_dispatch/request/utils.rb:8 : (pair | |
(sym :default) | |
(true)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/request/utils.rb:8 | |
class_instance_variable lib/action_dispatch/routing/route_set.rb:513 : @_proxy /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/routing/route_set.rb:513 | |
class_instance_variable lib/action_dispatch/routing/route_set.rb:517 : @_proxy /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/routing/route_set.rb:517 | |
class_instance_variable lib/action_dispatch/routing/route_set.rb:521 : @_proxy /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/routing/route_set.rb:521 | |
class_instance_variable lib/action_dispatch/routing/route_set.rb:525 : @_proxy /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/routing/route_set.rb:525 | |
class_instance_variable lib/action_dispatch/routing/route_set.rb:529 : @_proxy /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/routing/route_set.rb:529 | |
class_instance_variable lib/action_dispatch/routing/route_set.rb:533 : @_proxy /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/routing/route_set.rb:533 | |
class_instance_variable lib/action_dispatch/routing/route_set.rb:536 : @_proxy /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/routing/route_set.rb:536 | |
class_accessor lib/action_dispatch/routing/url_for.rb:97 : default_url_options /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch/routing/url_for.rb:97 | |
class_accessor lib/action_dispatch.rb:92 : test_app /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/action_dispatch.rb:92 | |
class_accessor lib/abstract_controller/base.rb:35 : abstract /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/abstract_controller/base.rb:35 | |
class_instance_variable lib/abstract_controller/base.rb:41 : @abstract /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/abstract_controller/base.rb:41 | |
class_instance_variable lib/abstract_controller/base.rb:75 : @action_methods /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/abstract_controller/base.rb:75 | |
class_instance_variable lib/abstract_controller/base.rb:91 : @action_methods /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/abstract_controller/base.rb:91 | |
class_instance_variable lib/abstract_controller/base.rb:105 : @controller_path /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/abstract_controller/base.rb:105 | |
class_accessor lib/abstract_controller/caching/fragments.rb:25 : fragment_cache_keys /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionpack-5.2.2/lib/abstract_controller/caching/fragments.rb:25 | |
----------------- | |
actionview-5.2.2 34 possible issues: | |
class_accessor lib/action_view/base.rb:145 : (pair | |
(sym :default) | |
(block | |
(send | |
(const nil :Proc) :new) | |
(args | |
(arg :html_tag) | |
(arg :instance)) | |
(send | |
(dstr | |
(str "<div class=\"field_with_errors\">") | |
(begin | |
(lvar :html_tag)) | |
(str "</div>")) :html_safe))) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/base.rb:145 | |
class_accessor lib/action_view/base.rb:149 : (pair | |
(sym :default) | |
(str "\"><script>window.location = \"/500.html\"</script></html>")) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/base.rb:149 | |
class_accessor lib/action_view/base.rb:154 : (pair | |
(sym :default) | |
(true)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/base.rb:154 | |
class_accessor lib/action_view/base.rb:157 : default_formats /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/base.rb:157 | |
class_accessor lib/action_view/base.rb:160 : (pair | |
(sym :default) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/base.rb:160 | |
class_accessor lib/action_view/base.rb:163 : (pair | |
(sym :default) | |
(true)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/base.rb:163 | |
class_accessor lib/action_view/renderer/partial_renderer/collection_caching.rb:10 : (pair | |
(sym :default) | |
(send | |
(const | |
(const | |
(const nil :ActiveSupport) :Cache) :MemoryStore) :new)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/renderer/partial_renderer/collection_caching.rb:10 | |
class_accessor lib/action_view/template/resolver.rb:130 : (pair | |
(sym :default) | |
(true)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/template/resolver.rb:130 | |
class_variable lib/action_view/template/handlers.rb:20 : @@template_handlers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/template/handlers.rb:20 | |
class_variable lib/action_view/template/handlers.rb:21 : @@default_template_handlers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/template/handlers.rb:21 | |
class_variable lib/action_view/template/handlers.rb:24 : @@template_handlers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/template/handlers.rb:24 | |
class_variable lib/action_view/template/handlers.rb:24 : @@template_extensions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/template/handlers.rb:24 | |
class_variable lib/action_view/template/handlers.rb:34 : @@template_handlers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/template/handlers.rb:34 | |
class_variable lib/action_view/template/handlers.rb:36 : @@template_extensions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/template/handlers.rb:36 | |
class_variable lib/action_view/template/handlers.rb:42 : @@template_handlers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/template/handlers.rb:42 | |
class_variable lib/action_view/template/handlers.rb:43 : @@default_template_handlers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/template/handlers.rb:43 | |
class_variable lib/action_view/template/handlers.rb:43 : @@default_template_handlers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/template/handlers.rb:43 | |
class_variable lib/action_view/template/handlers.rb:45 : @@template_extensions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/template/handlers.rb:45 | |
class_variable lib/action_view/template/handlers.rb:49 : @@template_handlers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/template/handlers.rb:49 | |
class_variable lib/action_view/template/handlers.rb:53 : @@template_handlers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/template/handlers.rb:53 | |
class_variable lib/action_view/template/handlers.rb:58 : @@default_template_handlers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/template/handlers.rb:58 | |
class_variable lib/action_view/template/handlers.rb:62 : @@default_template_handlers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/template/handlers.rb:62 | |
class_accessor lib/action_view/template/types.rb:40 : type_klass /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/template/types.rb:40 | |
global_variable lib/action_view/template/error.rb:65 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/template/error.rb:65 | |
global_variable lib/action_view/template/error.rb:66 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/template/error.rb:66 | |
global_variable lib/action_view/template/error.rb:67 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/template/error.rb:67 | |
class_accessor lib/action_view/test_case.rb:19 : controller_path /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/test_case.rb:19 | |
class_instance_variable lib/action_view/dependency_tracker.rb:11 : @trackers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/dependency_tracker.rb:11 | |
class_instance_variable lib/action_view/dependency_tracker.rb:20 : @trackers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/dependency_tracker.rb:20 | |
class_instance_variable lib/action_view/dependency_tracker.rb:22 : @trackers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/dependency_tracker.rb:22 | |
class_instance_variable lib/action_view/dependency_tracker.rb:29 : @trackers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/dependency_tracker.rb:29 | |
class_variable lib/action_view/digestor.rb:9 : @@digest_mutex /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/digestor.rb:9 | |
class_variable lib/action_view/digestor.rb:29 : @@digest_mutex /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/digestor.rb:29 | |
class_accessor lib/action_view/lookup_context.rb:19 : (pair | |
(sym :default) | |
(send | |
(const nil :FallbackFileSystemResolver) :instances)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/lookup_context.rb:19 | |
class_accessor lib/action_view/lookup_context.rb:21 : (pair | |
(sym :default) | |
(array)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/lookup_context.rb:21 | |
class_instance_variable lib/action_view/lookup_context.rb:66 : @details_keys /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/lookup_context.rb:66 | |
class_instance_variable lib/action_view/lookup_context.rb:70 : @details_keys /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/lookup_context.rb:70 | |
class_instance_variable lib/action_view/lookup_context.rb:74 : @details_keys /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/lookup_context.rb:74 | |
class_accessor lib/action_view/helpers/translation_helper.rb:16 : (pair | |
(sym :default) | |
(true)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/helpers/translation_helper.rb:16 | |
global_variable lib/action_view/helpers/output_safety_helper.rb:33 : $, /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/helpers/output_safety_helper.rb:33 | |
class_accessor lib/action_view/helpers/form_helper.rb:479 : (pair | |
(sym :default) | |
(true)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/helpers/form_helper.rb:479 | |
class_accessor lib/action_view/helpers/form_helper.rb:481 : (pair | |
(sym :default) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/helpers/form_helper.rb:481 | |
class_instance_variable lib/action_view/helpers/form_helper.rb:1646 : @_to_partial_path /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/helpers/form_helper.rb:1646 | |
class_accessor lib/action_view/helpers/form_helper.rb:2335 : (pair | |
(sym :instance_writer) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/helpers/form_helper.rb:2335 | |
class_accessor lib/action_view/helpers/form_tag_helper.rb:22 : embed_authenticity_token_in_remote_forms /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/helpers/form_tag_helper.rb:22 | |
class_instance_variable lib/action_view/helpers/tags/datetime_local_field.rb:9 : @field_type /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/helpers/tags/datetime_local_field.rb:9 | |
class_instance_variable lib/action_view/helpers/tags/text_field.rb:22 : @field_type /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/helpers/tags/text_field.rb:22 | |
class_instance_variable lib/action_view/helpers/tags/date_select.rb:21 : @select_type /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/actionview-5.2.2/lib/action_view/helpers/tags/date_select.rb:21 | |
----------------- | |
activejob-5.2.2 8 possible issues: | |
class_accessor lib/active_job/queue_name.rb:9 : queue_name_prefix /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activejob-5.2.2/lib/active_job/queue_name.rb:9 | |
class_accessor lib/active_job/queue_name.rb:10 : (pair | |
(sym :default) | |
(str "default")) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activejob-5.2.2/lib/active_job/queue_name.rb:10 | |
global_variable lib/active_job/arguments.rb:11 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activejob-5.2.2/lib/active_job/arguments.rb:11 | |
global_variable lib/active_job/arguments.rb:12 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activejob-5.2.2/lib/active_job/arguments.rb:12 | |
class_accessor lib/active_job/queue_priority.rb:9 : default_priority /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activejob-5.2.2/lib/active_job/queue_priority.rb:9 | |
class_accessor lib/active_job/logging.rb:13 : (pair | |
(sym :default) | |
(send | |
(const | |
(const nil :ActiveSupport) :TaggedLogging) :new | |
(send | |
(const | |
(const nil :ActiveSupport) :Logger) :new | |
(const nil :STDOUT)))) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activejob-5.2.2/lib/active_job/logging.rb:13 | |
----------------- | |
activemodel-5.2.2 6 possible issues: | |
class_accessor lib/active_model/secure_password.rb:13 : min_cost /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activemodel-5.2.2/lib/active_model/secure_password.rb:13 | |
global_variable lib/active_model/secure_password.rb:62 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activemodel-5.2.2/lib/active_model/secure_password.rb:62 | |
class_accessor lib/active_model/type.rb:25 : registry /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activemodel-5.2.2/lib/active_model/type.rb:25 | |
class_instance_variable lib/active_model/type.rb:37 : @default_value /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activemodel-5.2.2/lib/active_model/type.rb:37 | |
class_instance_variable lib/active_model/validator.rb:104 : @kind /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activemodel-5.2.2/lib/active_model/validator.rb:104 | |
----------------- | |
activerecord-5.2.2 38 possible issues: | |
class_accessor lib/active_record/model_schema.rb:106 : (pair | |
(sym :instance_writer) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/model_schema.rb:106 | |
class_accessor lib/active_record/associations/builder/has_and_belongs_to_many.rb:51 : left_model /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/associations/builder/has_and_belongs_to_many.rb:51 | |
class_accessor lib/active_record/associations/builder/has_and_belongs_to_many.rb:52 : name /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/associations/builder/has_and_belongs_to_many.rb:52 | |
class_accessor lib/active_record/associations/builder/has_and_belongs_to_many.rb:53 : table_name_resolver /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/associations/builder/has_and_belongs_to_many.rb:53 | |
class_accessor lib/active_record/associations/builder/has_and_belongs_to_many.rb:54 : left_reflection /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/associations/builder/has_and_belongs_to_many.rb:54 | |
class_accessor lib/active_record/associations/builder/has_and_belongs_to_many.rb:55 : right_reflection /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/associations/builder/has_and_belongs_to_many.rb:55 | |
class_accessor lib/active_record/associations/builder/association.rb:17 : extensions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/associations/builder/association.rb:17 | |
class_instance_variable lib/active_record/associations/builder/belongs_to.rb:37 : @_after_replace_counter_called /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/associations/builder/belongs_to.rb:37 | |
class_instance_variable lib/active_record/associations/builder/belongs_to.rb:38 : @_after_replace_counter_called /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/associations/builder/belongs_to.rb:38 | |
class_variable lib/active_record/fixtures.rb:441 : @@all_cached_fixtures /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/fixtures.rb:441 | |
class_variable lib/active_record/fixtures.rb:456 : @@all_cached_fixtures /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/fixtures.rb:456 | |
class_variable lib/active_record/fixtures.rb:460 : @@all_cached_fixtures /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/fixtures.rb:460 | |
class_accessor lib/active_record/fixtures.rb:497 : (pair | |
(sym :default) | |
(hash)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/fixtures.rb:497 | |
class_instance_variable lib/active_record/fixtures.rb:591 : @context_class /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/fixtures.rb:591 | |
class_variable lib/active_record/fixtures.rb:960 : @@already_loaded_fixtures /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/fixtures.rb:960 | |
class_variable lib/active_record/fixtures.rb:965 : @@already_loaded_fixtures /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/fixtures.rb:965 | |
class_variable lib/active_record/fixtures.rb:966 : @@already_loaded_fixtures /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/fixtures.rb:966 | |
class_variable lib/active_record/fixtures.rb:969 : @@already_loaded_fixtures /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/fixtures.rb:969 | |
class_variable lib/active_record/fixtures.rb:1001 : @@already_loaded_fixtures /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/fixtures.rb:1001 | |
class_accessor lib/active_record/tasks/database_tasks.rb:41 : (pair | |
(sym :instance_accessor) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/tasks/database_tasks.rb:41 | |
class_accessor lib/active_record/tasks/database_tasks.rb:46 : (pair | |
(sym :instance_accessor) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/tasks/database_tasks.rb:46 | |
global_variable lib/active_record/tasks/database_tasks.rb:120 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/tasks/database_tasks.rb:120 | |
global_variable lib/active_record/tasks/database_tasks.rb:122 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/tasks/database_tasks.rb:122 | |
global_variable lib/active_record/tasks/database_tasks.rb:124 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/tasks/database_tasks.rb:124 | |
global_variable lib/active_record/tasks/database_tasks.rb:125 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/tasks/database_tasks.rb:125 | |
global_variable lib/active_record/tasks/database_tasks.rb:147 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/tasks/database_tasks.rb:147 | |
global_variable lib/active_record/tasks/database_tasks.rb:149 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/tasks/database_tasks.rb:149 | |
global_variable lib/active_record/tasks/database_tasks.rb:151 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/tasks/database_tasks.rb:151 | |
global_variable lib/active_record/tasks/database_tasks.rb:152 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/tasks/database_tasks.rb:152 | |
global_variable lib/active_record/tasks/database_tasks.rb:327 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/tasks/database_tasks.rb:327 | |
class_instance_variable lib/active_record/relation/where_clause.rb:78 : @empty /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/relation/where_clause.rb:78 | |
class_instance_variable lib/active_record/relation/from_clause.rb:22 : @empty /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/relation/from_clause.rb:22 | |
global_variable lib/active_record/errors.rb:101 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/errors.rb:101 | |
class_accessor lib/active_record/migration.rb:570 : delegate /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/migration.rb:570 | |
class_accessor lib/active_record/migration.rb:571 : disable_ddl_transaction /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/migration.rb:571 | |
class_instance_variable lib/active_record/migration.rb:616 : @disable_ddl_transaction /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/migration.rb:616 | |
class_accessor lib/active_record/migration.rb:624 : verbose /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/migration.rb:624 | |
class_accessor lib/active_record/migration.rb:1162 : migrations_paths /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/migration.rb:1162 | |
class_accessor lib/active_record/autosave_association.rb:145 : (pair | |
(sym :instance_writer) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/autosave_association.rb:145 | |
class_accessor lib/active_record/core.rb:18 : (pair | |
(sym :instance_writer) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/core.rb:18 | |
class_accessor lib/active_record/core.rb:25 : (pair | |
(sym :instance_writer) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/core.rb:25 | |
class_variable lib/active_record/core.rb:54 : @@configurations /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/core.rb:54 | |
class_variable lib/active_record/core.rb:60 : @@configurations /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/core.rb:60 | |
class_accessor lib/active_record/core.rb:67 : (pair | |
(sym :instance_writer) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/core.rb:67 | |
class_accessor lib/active_record/core.rb:77 : (pair | |
(sym :instance_writer) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/core.rb:77 | |
class_accessor lib/active_record/core.rb:84 : (pair | |
(sym :instance_writer) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/core.rb:84 | |
class_accessor lib/active_record/core.rb:92 : (pair | |
(sym :instance_writer) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/core.rb:92 | |
class_accessor lib/active_record/core.rb:97 : (pair | |
(sym :instance_writer) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/core.rb:97 | |
class_accessor lib/active_record/core.rb:105 : (pair | |
(sym :instance_writer) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/core.rb:105 | |
class_accessor lib/active_record/core.rb:114 : (pair | |
(sym :instance_writer) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/core.rb:114 | |
class_accessor lib/active_record/core.rb:122 : (pair | |
(sym :instance_writer) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/core.rb:122 | |
class_accessor lib/active_record/core.rb:124 : (pair | |
(sym :instance_accessor) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/core.rb:124 | |
class_accessor lib/active_record/core.rb:126 : (pair | |
(sym :instance_accessor) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/core.rb:126 | |
class_accessor lib/active_record/type.rb:26 : registry /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/type.rb:26 | |
class_instance_variable lib/active_record/type.rb:46 : @default_value /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/type.rb:46 | |
global_variable lib/active_record/connection_adapters/mysql/schema_dumper.rb:65 : $~ /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/connection_adapters/mysql/schema_dumper.rb:65 | |
global_variable lib/active_record/connection_adapters/mysql/schema_definitions.rb:64 : $~ /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/connection_adapters/mysql/schema_definitions.rb:64 | |
class_accessor lib/active_record/schema_dumper.rb:18 : (pair | |
(sym :default) | |
(array)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/schema_dumper.rb:18 | |
class_accessor lib/active_record/dynamic_matchers.rb:30 : matchers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/dynamic_matchers.rb:30 | |
class_instance_variable lib/active_record/dynamic_matchers.rb:38 : @pattern /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/dynamic_matchers.rb:38 | |
class_accessor lib/active_record/store.rb:77 : local_stored_attributes /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/store.rb:77 | |
class_accessor lib/active_record/attribute_methods/time_zone_conversion.rb:59 : (pair | |
(sym :instance_writer) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activerecord-5.2.2/lib/active_record/attribute_methods/time_zone_conversion.rb:59 | |
----------------- | |
activestorage-5.2.2 6 possible issues: | |
class_accessor lib/active_storage.rb:43 : logger /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activestorage-5.2.2/lib/active_storage.rb:43 | |
class_accessor lib/active_storage.rb:44 : verifier /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activestorage-5.2.2/lib/active_storage.rb:44 | |
class_accessor lib/active_storage.rb:45 : queue /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activestorage-5.2.2/lib/active_storage.rb:45 | |
class_accessor lib/active_storage.rb:46 : (pair | |
(sym :default) | |
(array)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activestorage-5.2.2/lib/active_storage.rb:46 | |
class_accessor lib/active_storage.rb:47 : (pair | |
(sym :default) | |
(array)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activestorage-5.2.2/lib/active_storage.rb:47 | |
class_accessor lib/active_storage.rb:48 : (pair | |
(sym :default) | |
(hash)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activestorage-5.2.2/lib/active_storage.rb:48 | |
class_accessor lib/active_storage.rb:49 : (pair | |
(sym :default) | |
(array)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activestorage-5.2.2/lib/active_storage.rb:49 | |
class_accessor lib/active_storage.rb:50 : (pair | |
(sym :default) | |
(array)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activestorage-5.2.2/lib/active_storage.rb:50 | |
class_accessor lib/active_storage.rb:51 : (pair | |
(sym :default) | |
(array)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activestorage-5.2.2/lib/active_storage.rb:51 | |
class_accessor lib/active_storage.rb:52 : (pair | |
(sym :default) | |
(str "application/octet-stream")) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activestorage-5.2.2/lib/active_storage.rb:52 | |
class_instance_variable lib/active_storage/previewer/mupdf_previewer.rb:15 : @mutool_exists /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activestorage-5.2.2/lib/active_storage/previewer/mupdf_previewer.rb:15 | |
class_instance_variable lib/active_storage/previewer/mupdf_previewer.rb:15 : @mutool_exists /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activestorage-5.2.2/lib/active_storage/previewer/mupdf_previewer.rb:15 | |
global_variable lib/active_storage/previewer/mupdf_previewer.rb:19 : $? /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activestorage-5.2.2/lib/active_storage/previewer/mupdf_previewer.rb:19 | |
class_instance_variable lib/active_storage/previewer/mupdf_previewer.rb:19 : @mutool_exists /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activestorage-5.2.2/lib/active_storage/previewer/mupdf_previewer.rb:19 | |
class_instance_variable lib/active_storage/previewer/poppler_pdf_previewer.rb:15 : @pdftoppm_exists /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activestorage-5.2.2/lib/active_storage/previewer/poppler_pdf_previewer.rb:15 | |
class_instance_variable lib/active_storage/previewer/poppler_pdf_previewer.rb:15 : @pdftoppm_exists /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activestorage-5.2.2/lib/active_storage/previewer/poppler_pdf_previewer.rb:15 | |
class_instance_variable lib/active_storage/previewer/poppler_pdf_previewer.rb:17 : @pdftoppm_exists /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activestorage-5.2.2/lib/active_storage/previewer/poppler_pdf_previewer.rb:17 | |
----------------- | |
activesupport-5.2.2 78 possible issues: | |
class_instance_variable lib/active_support/i18n_railtie.rb:32 : @i18n_inited /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/i18n_railtie.rb:32 | |
class_instance_variable lib/active_support/i18n_railtie.rb:74 : @i18n_inited /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/i18n_railtie.rb:74 | |
class_accessor lib/active_support/dependencies.rb:23 : (pair | |
(sym :default) | |
(send | |
(const nil :Interlock) :new)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies.rb:23 | |
class_accessor lib/active_support/dependencies.rb:50 : (pair | |
(sym :default) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies.rb:50 | |
class_accessor lib/active_support/dependencies.rb:53 : (pair | |
(sym :default) | |
(send | |
(const nil :Set) :new)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies.rb:53 | |
class_accessor lib/active_support/dependencies.rb:56 : (pair | |
(sym :default) | |
(send | |
(const nil :Set) :new)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies.rb:56 | |
class_accessor lib/active_support/dependencies.rb:59 : (pair | |
(sym :default) | |
(array)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies.rb:59 | |
class_accessor lib/active_support/dependencies.rb:62 : (pair | |
(sym :default) | |
(if | |
(send | |
(const nil :ENV) :[] | |
(str "NO_RELOAD")) | |
(sym :require) | |
(sym :load))) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies.rb:62 | |
class_accessor lib/active_support/dependencies.rb:67 : (pair | |
(sym :default) | |
(array)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies.rb:67 | |
class_accessor lib/active_support/dependencies.rb:71 : (pair | |
(sym :default) | |
(array)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies.rb:71 | |
class_accessor lib/active_support/dependencies.rb:76 : (pair | |
(sym :default) | |
(array)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies.rb:76 | |
class_accessor lib/active_support/dependencies.rb:80 : (pair | |
(sym :default) | |
(array)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies.rb:80 | |
class_accessor lib/active_support/dependencies.rb:172 : (pair | |
(sym :default) | |
(send | |
(const nil :WatchStack) :new)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies.rb:172 | |
class_instance_variable lib/active_support/dependencies.rb:179 : @_const_missing /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies.rb:179 | |
class_instance_variable lib/active_support/dependencies.rb:179 : @_const_missing /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies.rb:179 | |
class_instance_variable lib/active_support/dependencies.rb:180 : @_const_missing /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies.rb:180 | |
class_instance_variable lib/active_support/dependencies.rb:188 : @_const_missing /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies.rb:188 | |
class_instance_variable lib/active_support/dependencies.rb:189 : @_const_missing /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies.rb:189 | |
global_variable lib/active_support/cache/mem_cache_store.rb:6 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/cache/mem_cache_store.rb:6 | |
class_instance_variable lib/active_support/core_ext/uri.rb:21 : @parser /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/core_ext/uri.rb:21 | |
class_accessor lib/active_support/core_ext/module/attr_internal.rb:22 : attr_internal_naming_format /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/core_ext/module/attr_internal.rb:22 | |
class_accessor lib/active_support/core_ext/module/attribute_accessors.rb:211 : (lvar :blk) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/core_ext/module/attribute_accessors.rb:211 | |
class_accessor lib/active_support/core_ext/module/attribute_accessors.rb:212 : (pair | |
(sym :instance_writer) | |
(lvar :instance_writer)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/core_ext/module/attribute_accessors.rb:212 | |
class_accessor lib/active_support/core_ext/date/calculations.rb:14 : beginning_of_week_default /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/core_ext/date/calculations.rb:14 | |
class_accessor lib/active_support/core_ext/time/zones.rb:10 : zone_default /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/core_ext/time/zones.rb:10 | |
class_accessor lib/active_support/core_ext/date_and_time/compatibility.rb:14 : (pair | |
(sym :instance_writer) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/core_ext/date_and_time/compatibility.rb:14 | |
global_variable lib/active_support/core_ext/kernel/reporting.rb:27 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/core_ext/kernel/reporting.rb:27 | |
global_variable lib/active_support/core_ext/kernel/reporting.rb:27 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/core_ext/kernel/reporting.rb:27 | |
global_variable lib/active_support/core_ext/kernel/reporting.rb:30 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/core_ext/kernel/reporting.rb:30 | |
global_variable lib/active_support/core_ext/kernel/agnostics.rb:11 : $0 /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/core_ext/kernel/agnostics.rb:11 | |
global_variable lib/active_support/i18n.rb:9 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/i18n.rb:9 | |
class_accessor lib/active_support/notifications.rb:160 : notifier /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/notifications.rb:160 | |
class_variable lib/active_support/descendants_tracker.rb:7 : @@direct_descendants /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/descendants_tracker.rb:7 | |
class_variable lib/active_support/descendants_tracker.rb:11 : @@direct_descendants /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/descendants_tracker.rb:11 | |
class_variable lib/active_support/descendants_tracker.rb:22 : @@direct_descendants /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/descendants_tracker.rb:22 | |
class_variable lib/active_support/descendants_tracker.rb:24 : @@direct_descendants /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/descendants_tracker.rb:24 | |
class_variable lib/active_support/descendants_tracker.rb:30 : @@direct_descendants /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/descendants_tracker.rb:30 | |
class_variable lib/active_support/descendants_tracker.rb:37 : @@direct_descendants /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/descendants_tracker.rb:37 | |
class_variable lib/active_support/descendants_tracker.rb:42 : @@direct_descendants /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/descendants_tracker.rb:42 | |
class_instance_variable lib/active_support/inflector/inflections.rb:67 : @__instance__ /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/inflector/inflections.rb:67 | |
class_instance_variable lib/active_support/values/time_zone.rb:222 : @zones /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/values/time_zone.rb:222 | |
class_instance_variable lib/active_support/values/time_zone.rb:234 : @lazy_zones_map /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/values/time_zone.rb:234 | |
class_instance_variable lib/active_support/values/time_zone.rb:256 : @country_zones /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/values/time_zone.rb:256 | |
class_instance_variable lib/active_support/values/time_zone.rb:260 : @lazy_zones_map /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/values/time_zone.rb:260 | |
class_instance_variable lib/active_support/values/time_zone.rb:261 : @country_zones /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/values/time_zone.rb:261 | |
class_instance_variable lib/active_support/values/time_zone.rb:262 : @zones /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/values/time_zone.rb:262 | |
class_instance_variable lib/active_support/values/time_zone.rb:263 : @zones_map /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/values/time_zone.rb:263 | |
class_instance_variable lib/active_support/values/time_zone.rb:282 : @zones_map /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/values/time_zone.rb:282 | |
class_instance_variable lib/active_support/dependencies/autoload.rb:30 : @_autoloads /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies/autoload.rb:30 | |
class_instance_variable lib/active_support/dependencies/autoload.rb:31 : @_under_path /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies/autoload.rb:31 | |
class_instance_variable lib/active_support/dependencies/autoload.rb:32 : @_at_path /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies/autoload.rb:32 | |
class_instance_variable lib/active_support/dependencies/autoload.rb:33 : @_eager_autoload /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/dependencies/autoload.rb:33 | |
global_variable lib/active_support/builder.rb:6 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/builder.rb:6 | |
global_variable lib/active_support/testing/isolation.rb:88 : $-I /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/testing/isolation.rb:88 | |
global_variable lib/active_support/testing/isolation.rb:93 : $0 /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/testing/isolation.rb:93 | |
class_accessor lib/active_support/cache.rb:158 : (pair | |
(sym :instance_writer) | |
(true)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/cache.rb:158 | |
global_variable lib/active_support/cache.rb:175 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/cache.rb:175 | |
global_variable lib/active_support/railtie.rb:59 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/railtie.rb:59 | |
class_accessor lib/active_support/json/decoding.rb:9 : parse_json_times /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/json/decoding.rb:9 | |
class_accessor lib/active_support/json/encoding.rb:109 : use_standard_json_time_format /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/json/encoding.rb:109 | |
class_accessor lib/active_support/json/encoding.rb:113 : escape_html_entities_in_json /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/json/encoding.rb:113 | |
class_accessor lib/active_support/json/encoding.rb:117 : time_precision /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/json/encoding.rb:117 | |
class_accessor lib/active_support/json/encoding.rb:121 : json_encoder /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/json/encoding.rb:121 | |
global_variable lib/active_support/deprecation/reporting.rb:95 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/deprecation/reporting.rb:95 | |
global_variable lib/active_support/deprecation/behaviors.rb:21 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/deprecation/behaviors.rb:21 | |
global_variable lib/active_support/deprecation/behaviors.rb:22 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/deprecation/behaviors.rb:22 | |
global_variable lib/active_support/deprecation/behaviors.rb:31 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/deprecation/behaviors.rb:31 | |
class_instance_variable lib/active_support/subscriber.rb:31 : @namespace /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/subscriber.rb:31 | |
class_instance_variable lib/active_support/subscriber.rb:32 : @subscriber /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/subscriber.rb:32 | |
class_instance_variable lib/active_support/subscriber.rb:33 : @notifier /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/subscriber.rb:33 | |
class_variable lib/active_support/subscriber.rb:54 : @@subscribers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/subscriber.rb:54 | |
class_accessor lib/active_support/subscriber.rb:61 : namespace /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/subscriber.rb:61 | |
class_accessor lib/active_support/logger_silence.rb:11 : (pair | |
(sym :default) | |
(true)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/logger_silence.rb:11 | |
class_instance_variable lib/active_support/lazy_load_hooks.rb:28 : @load_hooks /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/lazy_load_hooks.rb:28 | |
class_instance_variable lib/active_support/lazy_load_hooks.rb:29 : @loaded /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/lazy_load_hooks.rb:29 | |
class_instance_variable lib/active_support/lazy_load_hooks.rb:30 : @run_once /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/lazy_load_hooks.rb:30 | |
class_instance_variable lib/active_support/reloader.rb:81 : @should_reload /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/reloader.rb:81 | |
class_instance_variable lib/active_support/reloader.rb:85 : @should_reload /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/reloader.rb:85 | |
class_accessor lib/active_support/multibyte/unicode.rb:356 : (const nil :ATTRIBUTES) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/multibyte/unicode.rb:356 | |
class_accessor lib/active_support/execution_wrapper.rb:94 : active /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/execution_wrapper.rb:94 | |
class_instance_variable lib/active_support/execution_wrapper.rb:105 : @active /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/execution_wrapper.rb:105 | |
class_accessor lib/active_support/message_encryptor.rb:85 : (pair | |
(sym :instance_accessor) | |
(false)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/message_encryptor.rb:85 | |
class_instance_variable lib/active_support/multibyte.rb:15 : @proxy_class /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/multibyte.rb:15 | |
class_instance_variable lib/active_support/multibyte.rb:20 : @proxy_class /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/multibyte.rb:20 | |
class_instance_variable lib/active_support/digest.rb:7 : @hash_digest_class /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/digest.rb:7 | |
class_instance_variable lib/active_support/digest.rb:12 : @hash_digest_class /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/digest.rb:12 | |
global_variable lib/active_support/xml_mini/nokogiri.rb:6 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/xml_mini/nokogiri.rb:6 | |
global_variable lib/active_support/xml_mini/nokogirisax.rb:6 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/xml_mini/nokogirisax.rb:6 | |
class_instance_variable lib/active_support/current_attributes.rb:138 : @generated_attribute_methods /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/current_attributes.rb:138 | |
class_accessor lib/active_support/log_subscriber.rb:54 : (pair | |
(sym :default) | |
(true)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/log_subscriber.rb:54 | |
class_instance_variable lib/active_support/log_subscriber.rb:58 : @logger /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/log_subscriber.rb:58 | |
class_accessor lib/active_support/log_subscriber.rb:63 : logger /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support/log_subscriber.rb:63 | |
class_accessor lib/active_support.rb:84 : test_order /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/activesupport-5.2.2/lib/active_support.rb:84 | |
----------------- | |
arel-9.0.0 6 possible issues: | |
global_variable predications.rb:53 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/arel-9.0.0/lib/arel/predications.rb:53 | |
global_variable predications.rb:101 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/arel-9.0.0/lib/arel/predications.rb:101 | |
class_accessor table.rb:8 : engine /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/arel-9.0.0/lib/arel/table.rb:8 | |
global_variable nodes/node.rb:12 : $DEBUG /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/arel-9.0.0/lib/arel/nodes/node.rb:12 | |
----------------- | |
builder-3.2.3 12 possible issues: | |
class_accessor test/preload.rb:19 : k_added_names /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/test/preload.rb:19 | |
class_instance_variable test/preload.rb:23 : @k_added_names /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/test/preload.rb:23 | |
class_instance_variable test/preload.rb:24 : @k_added_names /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/test/preload.rb:24 | |
class_accessor test/preload.rb:31 : o_added_names /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/test/preload.rb:31 | |
class_instance_variable test/preload.rb:35 : @o_added_names /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/test/preload.rb:35 | |
class_instance_variable test/preload.rb:36 : @o_added_names /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/test/preload.rb:36 | |
global_variable test/test_markupbuilder.rb:458 : $KCODE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/test/test_markupbuilder.rb:458 | |
global_variable test/test_markupbuilder.rb:462 : $KCODE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/test/test_markupbuilder.rb:462 | |
global_variable test/test_markupbuilder.rb:466 : $KCODE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/test/test_markupbuilder.rb:466 | |
global_variable test/test_markupbuilder.rb:473 : $KCODE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/test/test_markupbuilder.rb:473 | |
global_variable test/test_markupbuilder.rb:499 : $KCODE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/test/test_markupbuilder.rb:499 | |
global_variable test/test_blankslate.rb:114 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/test/test_blankslate.rb:114 | |
global_variable test/test_blankslate.rb:115 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/test/test_blankslate.rb:115 | |
global_variable test/test_blankslate.rb:120 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/test/test_blankslate.rb:120 | |
global_variable lib/blankslate.rb:47 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/lib/blankslate.rb:47 | |
global_variable lib/blankslate.rb:48 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/lib/blankslate.rb:48 | |
class_instance_variable lib/blankslate.rb:51 : @hidden_methods /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/lib/blankslate.rb:51 | |
class_instance_variable lib/blankslate.rb:52 : @hidden_methods /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/lib/blankslate.rb:52 | |
global_variable lib/blankslate.rb:56 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/lib/blankslate.rb:56 | |
class_instance_variable lib/blankslate.rb:60 : @hidden_methods /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/lib/blankslate.rb:60 | |
class_instance_variable lib/blankslate.rb:61 : @hidden_methods /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/lib/blankslate.rb:61 | |
class_accessor xmlbase.rb:15 : cache_method_calls /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/lib/builder/xmlbase.rb:15 | |
global_variable xmlbase.rb:153 : $KCODE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/lib/builder/xmlbase.rb:153 | |
global_variable xchar.rb:86 : $KCODE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/builder-3.2.3/lib/builder/xchar.rb:86 | |
----------------- | |
concurrent-ruby-1.1.4 18 possible issues: | |
class_instance_variable lib/concurrent/synchronization/abstract_struct.rb:136 : @values /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/abstract_struct.rb:136 | |
class_instance_variable lib/concurrent/synchronization/abstract_struct.rb:151 : @values /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/abstract_struct.rb:151 | |
class_instance_variable lib/concurrent/synchronization/object.rb:62 : @safe_initialization /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/object.rb:62 | |
class_instance_variable lib/concurrent/synchronization/object.rb:67 : @safe_initialization /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/object.rb:67 | |
class_instance_variable lib/concurrent/synchronization/object.rb:67 : @safe_initialization /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/object.rb:67 | |
class_instance_variable lib/concurrent/synchronization/object.rb:68 : @safe_initialization /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/object.rb:68 | |
class_instance_variable lib/concurrent/synchronization/object.rb:95 : @volatile_cas_fields /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/object.rb:95 | |
class_instance_variable lib/concurrent/synchronization/object.rb:96 : @volatile_cas_fields /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/object.rb:96 | |
class_instance_variable lib/concurrent/synchronization/object.rb:130 : @volatile_cas_fields /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/object.rb:130 | |
class_instance_variable lib/concurrent/synchronization/object.rb:132 : @volatile_cas_fields /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/object.rb:132 | |
class_instance_variable lib/concurrent/synchronization/object.rb:138 : @volatile_cas_fields /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/synchronization/object.rb:138 | |
global_variable lib/concurrent/concern/logging.rb:27 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/concern/logging.rb:27 | |
class_variable lib/concurrent/atomic/ruby_thread_local_var.rb:35 : @@next /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/ruby_thread_local_var.rb:35 | |
class_variable lib/concurrent/atomic/ruby_thread_local_var.rb:75 : @@next /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/ruby_thread_local_var.rb:75 | |
class_variable lib/concurrent/atomic/ruby_thread_local_var.rb:76 : @@next /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/ruby_thread_local_var.rb:76 | |
global_variable lib/concurrent/atomic/atomic_reference.rb:76 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/atomic/atomic_reference.rb:76 | |
class_instance_variable lib/concurrent/thread_safe/util/data_structures.rb:20 : @_monitor /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/util/data_structures.rb:20 | |
class_instance_variable lib/concurrent/thread_safe/util/data_structures.rb:20 : @_monitor /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/thread_safe/util/data_structures.rb:20 | |
global_variable lib/concurrent/executor/ruby_thread_pool_executor.rb:134 : $$ /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/ruby_thread_pool_executor.rb:134 | |
global_variable lib/concurrent/executor/ruby_thread_pool_executor.rb:280 : $$ /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/ruby_thread_pool_executor.rb:280 | |
global_variable lib/concurrent/executor/ruby_thread_pool_executor.rb:287 : $$ /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/ruby_thread_pool_executor.rb:287 | |
global_variable lib/concurrent/executor/timer_set.rb:81 : $$ /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/timer_set.rb:81 | |
global_variable lib/concurrent/executor/timer_set.rb:133 : $$ /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/timer_set.rb:133 | |
global_variable lib/concurrent/executor/timer_set.rb:136 : $$ /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/executor/timer_set.rb:136 | |
global_variable lib/concurrent/configuration.rb:19 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/configuration.rb:19 | |
global_variable lib/concurrent/configuration.rb:45 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/configuration.rb:45 | |
global_variable lib/concurrent/configuration.rb:51 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/configuration.rb:51 | |
global_variable lib/concurrent/configuration.rb:78 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/concurrent-ruby-1.1.4/lib/concurrent/configuration.rb:78 | |
----------------- | |
crass-1.0.4 2 possible issues: | |
class_instance_variable test/support/common.rb:13 : @shared_tests /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/crass-1.0.4/test/support/common.rb:13 | |
----------------- | |
erubi-1.8.0 2 possible issues: | |
global_variable test/test.rb:6 : $: /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/erubi-1.8.0/test/test.rb:6 | |
global_variable test/test.rb:7 : $: /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/erubi-1.8.0/test/test.rb:7 | |
class_instance_variable test/test.rb:47 : @a /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/erubi-1.8.0/test/test.rb:47 | |
class_instance_variable test/test.rb:48 : @foo /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/erubi-1.8.0/test/test.rb:48 | |
class_instance_variable test/test.rb:49 : @t /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/erubi-1.8.0/test/test.rb:49 | |
class_instance_variable test/test.rb:51 : @t /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/erubi-1.8.0/test/test.rb:51 | |
class_instance_variable test/test.rb:52 : @t /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/erubi-1.8.0/test/test.rb:52 | |
class_instance_variable test/test.rb:58 : @a /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/erubi-1.8.0/test/test.rb:58 | |
class_instance_variable test/test.rb:60 : @a /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/erubi-1.8.0/test/test.rb:60 | |
class_instance_variable test/test.rb:61 : @a /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/erubi-1.8.0/test/test.rb:61 | |
class_instance_variable test/test.rb:64 : @a /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/erubi-1.8.0/test/test.rb:64 | |
class_instance_variable test/test.rb:66 : @a /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/erubi-1.8.0/test/test.rb:66 | |
class_instance_variable test/test.rb:67 : @a /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/erubi-1.8.0/test/test.rb:67 | |
class_instance_variable test/test.rb:70 : @a /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/erubi-1.8.0/test/test.rb:70 | |
class_instance_variable test/test.rb:72 : @a /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/erubi-1.8.0/test/test.rb:72 | |
class_instance_variable test/test.rb:74 : @a /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/erubi-1.8.0/test/test.rb:74 | |
class_instance_variable test/test.rb:76 : @a /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/erubi-1.8.0/test/test.rb:76 | |
class_instance_variable test/test.rb:77 : @a /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/erubi-1.8.0/test/test.rb:77 | |
----------------- | |
globalid-0.4.2 8 possible issues: | |
class_instance_variable lib/global_id/locator.rb:104 : @locators /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/globalid-0.4.2/lib/global_id/locator.rb:104 | |
class_instance_variable lib/global_id/locator.rb:109 : @locators /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/globalid-0.4.2/lib/global_id/locator.rb:109 | |
class_accessor lib/global_id/signed_global_id.rb:9 : verifier /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/globalid-0.4.2/lib/global_id/signed_global_id.rb:9 | |
class_accessor lib/global_id/signed_global_id.rb:23 : expires_in /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/globalid-0.4.2/lib/global_id/signed_global_id.rb:23 | |
class_accessor lib/global_id/global_id.rb:10 : app /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/globalid-0.4.2/lib/global_id/global_id.rb:10 | |
class_instance_variable lib/global_id/global_id.rb:33 : @app /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/globalid-0.4.2/lib/global_id/global_id.rb:33 | |
class_variable lib/global_id/uri/gid.rb:176 : @@schemes /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/globalid-0.4.2/lib/global_id/uri/gid.rb:176 | |
----------------- | |
i18n-1.5.3 16 possible issues: | |
class_variable lib/i18n.rb:355 : @@normalized_key_cache /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n.rb:355 | |
class_variable lib/i18n.rb:358 : @@normalized_key_cache /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n.rb:358 | |
class_variable locale/tag.rb:13 : @@implementation /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/locale/tag.rb:13 | |
class_variable locale/tag.rb:18 : @@implementation /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/locale/tag.rb:18 | |
class_variable locale/tag/rfc4646.rb:24 : @@parser /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/locale/tag/rfc4646.rb:24 | |
class_variable locale/tag/rfc4646.rb:28 : @@parser /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/locale/tag/rfc4646.rb:28 | |
class_variable backend/fallbacks.rb:13 : @@fallbacks /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/backend/fallbacks.rb:13 | |
class_variable backend/fallbacks.rb:18 : @@fallbacks /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/backend/fallbacks.rb:18 | |
class_variable backend/fallbacks.rb:23 : @@fallbacks /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/backend/fallbacks.rb:23 | |
class_variable backend/cache.rb:44 : @@cache_store /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/backend/cache.rb:44 | |
class_variable backend/cache.rb:45 : @@cache_namespace /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/backend/cache.rb:45 | |
class_variable backend/cache.rb:46 : @@cache_key_digest /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/backend/cache.rb:46 | |
class_variable backend/cache.rb:49 : @@cache_store /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/backend/cache.rb:49 | |
class_variable backend/cache.rb:53 : @@cache_store /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/backend/cache.rb:53 | |
class_variable backend/cache.rb:57 : @@cache_namespace /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/backend/cache.rb:57 | |
class_variable backend/cache.rb:61 : @@cache_namespace /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/backend/cache.rb:61 | |
class_variable backend/cache.rb:65 : @@cache_key_digest /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/backend/cache.rb:65 | |
class_variable backend/cache.rb:69 : @@cache_key_digest /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/backend/cache.rb:69 | |
class_instance_variable backend/metadata.rb:27 : @translation_metadata /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/backend/metadata.rb:27 | |
class_instance_variable backend/metadata.rb:34 : @translation_metadata /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/backend/metadata.rb:34 | |
class_variable config.rb:21 : @@backend /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:21 | |
class_variable config.rb:26 : @@backend /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:26 | |
class_variable config.rb:31 : @@default_locale /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:31 | |
class_variable config.rb:37 : @@default_locale /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:37 | |
class_variable config.rb:44 : @@available_locales /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:44 | |
class_variable config.rb:45 : @@available_locales /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:45 | |
class_variable config.rb:51 : @@available_locales_set /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:51 | |
class_variable config.rb:58 : @@available_locales /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:58 | |
class_variable config.rb:59 : @@available_locales /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:59 | |
class_variable config.rb:59 : @@available_locales /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:59 | |
class_variable config.rb:60 : @@available_locales_set /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:60 | |
class_variable config.rb:65 : @@available_locales /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:65 | |
class_variable config.rb:65 : @@available_locales /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:65 | |
class_variable config.rb:71 : @@available_locales_set /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:71 | |
class_variable config.rb:76 : @@default_separator /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:76 | |
class_variable config.rb:81 : @@default_separator /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:81 | |
class_variable config.rb:87 : @@exception_handler /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:87 | |
class_variable config.rb:92 : @@exception_handler /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:92 | |
class_variable config.rb:98 : @@missing_interpolation_argument_handler /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:98 | |
class_variable config.rb:115 : @@missing_interpolation_argument_handler /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:115 | |
class_variable config.rb:127 : @@load_path /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:127 | |
class_variable config.rb:133 : @@load_path /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:133 | |
class_variable config.rb:134 : @@available_locales_set /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:134 | |
class_variable config.rb:140 : @@enforce_available_locales /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:140 | |
class_variable config.rb:142 : @@enforce_available_locales /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:142 | |
class_variable config.rb:146 : @@enforce_available_locales /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:146 | |
class_variable config.rb:152 : @@interpolation_patterns /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:152 | |
class_variable config.rb:162 : @@interpolation_patterns /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/config.rb:162 | |
class_variable gettext.rb:10 : @@plural_keys /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/gettext.rb:10 | |
class_variable gettext.rb:18 : @@plural_keys /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/gettext.rb:18 | |
class_variable gettext.rb:18 : @@plural_keys /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/gettext.rb:18 | |
class_variable gettext.rb:18 : @@plural_keys /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/i18n-1.5.3/lib/i18n/gettext.rb:18 | |
----------------- | |
loofah-2.2.3 2 possible issues: | |
global_variable lib/loofah.rb:1 : $LOAD_PATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/loofah-2.2.3/lib/loofah.rb:1 | |
global_variable lib/loofah.rb:1 : $LOAD_PATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/loofah-2.2.3/lib/loofah.rb:1 | |
----------------- | |
mail-2.7.1 54 possible issues: | |
class_accessor parsers/content_type_parser.rb:13 : _trans_keys /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_type_parser.rb:13 | |
class_accessor parsers/content_type_parser.rb:41 : _key_spans /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_type_parser.rb:41 | |
class_accessor parsers/content_type_parser.rb:55 : _index_offsets /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_type_parser.rb:55 | |
class_accessor parsers/content_type_parser.rb:69 : _indicies /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_type_parser.rb:69 | |
class_accessor parsers/content_type_parser.rb:607 : _trans_targs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_type_parser.rb:607 | |
class_accessor parsers/content_type_parser.rb:629 : _trans_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_type_parser.rb:629 | |
class_accessor parsers/content_type_parser.rb:651 : _eof_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_type_parser.rb:651 | |
class_accessor parsers/content_type_parser.rb:665 : start /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_type_parser.rb:665 | |
class_accessor parsers/content_type_parser.rb:669 : first_final /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_type_parser.rb:669 | |
class_accessor parsers/content_type_parser.rb:673 : error /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_type_parser.rb:673 | |
class_accessor parsers/content_type_parser.rb:678 : en_comment_tail /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_type_parser.rb:678 | |
class_accessor parsers/content_type_parser.rb:682 : en_main /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_type_parser.rb:682 | |
class_accessor parsers/date_time_parser.rb:13 : _trans_keys /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/date_time_parser.rb:13 | |
class_accessor parsers/date_time_parser.rb:62 : _key_spans /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/date_time_parser.rb:62 | |
class_accessor parsers/date_time_parser.rb:83 : _index_offsets /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/date_time_parser.rb:83 | |
class_accessor parsers/date_time_parser.rb:104 : _indicies /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/date_time_parser.rb:104 | |
class_accessor parsers/date_time_parser.rb:561 : _trans_targs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/date_time_parser.rb:561 | |
class_accessor parsers/date_time_parser.rb:592 : _trans_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/date_time_parser.rb:592 | |
class_accessor parsers/date_time_parser.rb:623 : _eof_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/date_time_parser.rb:623 | |
class_accessor parsers/date_time_parser.rb:644 : start /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/date_time_parser.rb:644 | |
class_accessor parsers/date_time_parser.rb:648 : first_final /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/date_time_parser.rb:648 | |
class_accessor parsers/date_time_parser.rb:652 : error /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/date_time_parser.rb:652 | |
class_accessor parsers/date_time_parser.rb:657 : en_comment_tail /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/date_time_parser.rb:657 | |
class_accessor parsers/date_time_parser.rb:661 : en_main /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/date_time_parser.rb:661 | |
class_accessor parsers/received_parser.rb:13 : _trans_keys /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/received_parser.rb:13 | |
class_accessor parsers/received_parser.rb:266 : _key_spans /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/received_parser.rb:266 | |
class_accessor parsers/received_parser.rb:355 : _index_offsets /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/received_parser.rb:355 | |
class_accessor parsers/received_parser.rb:444 : _indicies /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/received_parser.rb:444 | |
class_accessor parsers/received_parser.rb:7013 : _trans_targs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/received_parser.rb:7013 | |
class_accessor parsers/received_parser.rb:7196 : _trans_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/received_parser.rb:7196 | |
class_accessor parsers/received_parser.rb:7379 : _eof_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/received_parser.rb:7379 | |
class_accessor parsers/received_parser.rb:7468 : start /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/received_parser.rb:7468 | |
class_accessor parsers/received_parser.rb:7472 : first_final /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/received_parser.rb:7472 | |
class_accessor parsers/received_parser.rb:7476 : error /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/received_parser.rb:7476 | |
class_accessor parsers/received_parser.rb:7481 : en_comment_tail /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/received_parser.rb:7481 | |
class_accessor parsers/received_parser.rb:7485 : en_main /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/received_parser.rb:7485 | |
class_accessor parsers/mime_version_parser.rb:13 : _trans_keys /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/mime_version_parser.rb:13 | |
class_accessor parsers/mime_version_parser.rb:31 : _key_spans /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/mime_version_parser.rb:31 | |
class_accessor parsers/mime_version_parser.rb:42 : _index_offsets /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/mime_version_parser.rb:42 | |
class_accessor parsers/mime_version_parser.rb:53 : _indicies /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/mime_version_parser.rb:53 | |
class_accessor parsers/mime_version_parser.rb:237 : _trans_targs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/mime_version_parser.rb:237 | |
class_accessor parsers/mime_version_parser.rb:251 : _trans_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/mime_version_parser.rb:251 | |
class_accessor parsers/mime_version_parser.rb:265 : _eof_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/mime_version_parser.rb:265 | |
class_accessor parsers/mime_version_parser.rb:276 : start /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/mime_version_parser.rb:276 | |
class_accessor parsers/mime_version_parser.rb:280 : first_final /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/mime_version_parser.rb:280 | |
class_accessor parsers/mime_version_parser.rb:284 : error /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/mime_version_parser.rb:284 | |
class_accessor parsers/mime_version_parser.rb:289 : en_comment_tail /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/mime_version_parser.rb:289 | |
class_accessor parsers/mime_version_parser.rb:293 : en_main /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/mime_version_parser.rb:293 | |
class_accessor parsers/content_disposition_parser.rb:13 : _trans_keys /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_disposition_parser.rb:13 | |
class_accessor parsers/content_disposition_parser.rb:38 : _key_spans /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_disposition_parser.rb:38 | |
class_accessor parsers/content_disposition_parser.rb:51 : _index_offsets /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_disposition_parser.rb:51 | |
class_accessor parsers/content_disposition_parser.rb:64 : _indicies /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_disposition_parser.rb:64 | |
class_accessor parsers/content_disposition_parser.rb:487 : _trans_targs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_disposition_parser.rb:487 | |
class_accessor parsers/content_disposition_parser.rb:507 : _trans_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_disposition_parser.rb:507 | |
class_accessor parsers/content_disposition_parser.rb:527 : _eof_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_disposition_parser.rb:527 | |
class_accessor parsers/content_disposition_parser.rb:540 : start /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_disposition_parser.rb:540 | |
class_accessor parsers/content_disposition_parser.rb:544 : first_final /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_disposition_parser.rb:544 | |
class_accessor parsers/content_disposition_parser.rb:548 : error /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_disposition_parser.rb:548 | |
class_accessor parsers/content_disposition_parser.rb:553 : en_comment_tail /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_disposition_parser.rb:553 | |
class_accessor parsers/content_disposition_parser.rb:557 : en_main /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_disposition_parser.rb:557 | |
class_accessor parsers/content_transfer_encoding_parser.rb:13 : _trans_keys /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_transfer_encoding_parser.rb:13 | |
class_accessor parsers/content_transfer_encoding_parser.rb:31 : _key_spans /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_transfer_encoding_parser.rb:31 | |
class_accessor parsers/content_transfer_encoding_parser.rb:42 : _index_offsets /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_transfer_encoding_parser.rb:42 | |
class_accessor parsers/content_transfer_encoding_parser.rb:53 : _indicies /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_transfer_encoding_parser.rb:53 | |
class_accessor parsers/content_transfer_encoding_parser.rb:273 : _trans_targs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_transfer_encoding_parser.rb:273 | |
class_accessor parsers/content_transfer_encoding_parser.rb:287 : _trans_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_transfer_encoding_parser.rb:287 | |
class_accessor parsers/content_transfer_encoding_parser.rb:301 : _eof_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_transfer_encoding_parser.rb:301 | |
class_accessor parsers/content_transfer_encoding_parser.rb:312 : start /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_transfer_encoding_parser.rb:312 | |
class_accessor parsers/content_transfer_encoding_parser.rb:316 : first_final /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_transfer_encoding_parser.rb:316 | |
class_accessor parsers/content_transfer_encoding_parser.rb:320 : error /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_transfer_encoding_parser.rb:320 | |
class_accessor parsers/content_transfer_encoding_parser.rb:325 : en_comment_tail /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_transfer_encoding_parser.rb:325 | |
class_accessor parsers/content_transfer_encoding_parser.rb:329 : en_main /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_transfer_encoding_parser.rb:329 | |
class_accessor parsers/phrase_lists_parser.rb:13 : _trans_keys /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/phrase_lists_parser.rb:13 | |
class_accessor parsers/phrase_lists_parser.rb:38 : _key_spans /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/phrase_lists_parser.rb:38 | |
class_accessor parsers/phrase_lists_parser.rb:51 : _index_offsets /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/phrase_lists_parser.rb:51 | |
class_accessor parsers/phrase_lists_parser.rb:64 : _indicies /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/phrase_lists_parser.rb:64 | |
class_accessor parsers/phrase_lists_parser.rb:603 : _trans_targs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/phrase_lists_parser.rb:603 | |
class_accessor parsers/phrase_lists_parser.rb:623 : _trans_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/phrase_lists_parser.rb:623 | |
class_accessor parsers/phrase_lists_parser.rb:643 : _eof_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/phrase_lists_parser.rb:643 | |
class_accessor parsers/phrase_lists_parser.rb:656 : start /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/phrase_lists_parser.rb:656 | |
class_accessor parsers/phrase_lists_parser.rb:660 : first_final /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/phrase_lists_parser.rb:660 | |
class_accessor parsers/phrase_lists_parser.rb:664 : error /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/phrase_lists_parser.rb:664 | |
class_accessor parsers/phrase_lists_parser.rb:669 : en_comment_tail /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/phrase_lists_parser.rb:669 | |
class_accessor parsers/phrase_lists_parser.rb:673 : en_main /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/phrase_lists_parser.rb:673 | |
class_accessor parsers/address_lists_parser.rb:15 : _trans_keys /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/address_lists_parser.rb:15 | |
class_accessor parsers/address_lists_parser.rb:973 : _key_spans /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/address_lists_parser.rb:973 | |
class_accessor parsers/address_lists_parser.rb:1297 : _index_offsets /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/address_lists_parser.rb:1297 | |
class_accessor parsers/address_lists_parser.rb:1621 : _indicies /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/address_lists_parser.rb:1621 | |
class_accessor parsers/address_lists_parser.rb:30349 : _trans_targs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/address_lists_parser.rb:30349 | |
class_accessor parsers/address_lists_parser.rb:30980 : _trans_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/address_lists_parser.rb:30980 | |
class_accessor parsers/address_lists_parser.rb:31611 : _eof_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/address_lists_parser.rb:31611 | |
class_accessor parsers/address_lists_parser.rb:31935 : start /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/address_lists_parser.rb:31935 | |
class_accessor parsers/address_lists_parser.rb:31939 : first_final /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/address_lists_parser.rb:31939 | |
class_accessor parsers/address_lists_parser.rb:31943 : error /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/address_lists_parser.rb:31943 | |
class_accessor parsers/address_lists_parser.rb:31948 : en_comment_tail /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/address_lists_parser.rb:31948 | |
class_accessor parsers/address_lists_parser.rb:31952 : en_main /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/address_lists_parser.rb:31952 | |
class_accessor parsers/message_ids_parser.rb:13 : _trans_keys /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/message_ids_parser.rb:13 | |
class_accessor parsers/message_ids_parser.rb:100 : _key_spans /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/message_ids_parser.rb:100 | |
class_accessor parsers/message_ids_parser.rb:134 : _index_offsets /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/message_ids_parser.rb:134 | |
class_accessor parsers/message_ids_parser.rb:168 : _indicies /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/message_ids_parser.rb:168 | |
class_accessor parsers/message_ids_parser.rb:2386 : _trans_targs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/message_ids_parser.rb:2386 | |
class_accessor parsers/message_ids_parser.rb:2443 : _trans_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/message_ids_parser.rb:2443 | |
class_accessor parsers/message_ids_parser.rb:2500 : _eof_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/message_ids_parser.rb:2500 | |
class_accessor parsers/message_ids_parser.rb:2534 : start /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/message_ids_parser.rb:2534 | |
class_accessor parsers/message_ids_parser.rb:2538 : first_final /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/message_ids_parser.rb:2538 | |
class_accessor parsers/message_ids_parser.rb:2542 : error /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/message_ids_parser.rb:2542 | |
class_accessor parsers/message_ids_parser.rb:2547 : en_comment_tail /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/message_ids_parser.rb:2547 | |
class_accessor parsers/message_ids_parser.rb:2551 : en_main /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/message_ids_parser.rb:2551 | |
class_accessor parsers/envelope_from_parser.rb:13 : _trans_keys /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/envelope_from_parser.rb:13 | |
class_accessor parsers/envelope_from_parser.rb:136 : _key_spans /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/envelope_from_parser.rb:136 | |
class_accessor parsers/envelope_from_parser.rb:182 : _index_offsets /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/envelope_from_parser.rb:182 | |
class_accessor parsers/envelope_from_parser.rb:228 : _indicies /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/envelope_from_parser.rb:228 | |
class_accessor parsers/envelope_from_parser.rb:2999 : _trans_targs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/envelope_from_parser.rb:2999 | |
class_accessor parsers/envelope_from_parser.rb:3074 : _trans_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/envelope_from_parser.rb:3074 | |
class_accessor parsers/envelope_from_parser.rb:3149 : _eof_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/envelope_from_parser.rb:3149 | |
class_accessor parsers/envelope_from_parser.rb:3195 : start /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/envelope_from_parser.rb:3195 | |
class_accessor parsers/envelope_from_parser.rb:3199 : first_final /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/envelope_from_parser.rb:3199 | |
class_accessor parsers/envelope_from_parser.rb:3203 : error /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/envelope_from_parser.rb:3203 | |
class_accessor parsers/envelope_from_parser.rb:3208 : en_comment_tail /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/envelope_from_parser.rb:3208 | |
class_accessor parsers/envelope_from_parser.rb:3212 : en_main /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/envelope_from_parser.rb:3212 | |
class_accessor parsers/content_location_parser.rb:13 : _trans_keys /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_location_parser.rb:13 | |
class_accessor parsers/content_location_parser.rb:36 : _key_spans /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_location_parser.rb:36 | |
class_accessor parsers/content_location_parser.rb:49 : _index_offsets /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_location_parser.rb:49 | |
class_accessor parsers/content_location_parser.rb:62 : _indicies /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_location_parser.rb:62 | |
class_accessor parsers/content_location_parser.rb:512 : _trans_targs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_location_parser.rb:512 | |
class_accessor parsers/content_location_parser.rb:530 : _trans_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_location_parser.rb:530 | |
class_accessor parsers/content_location_parser.rb:548 : _eof_actions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_location_parser.rb:548 | |
class_accessor parsers/content_location_parser.rb:561 : start /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_location_parser.rb:561 | |
class_accessor parsers/content_location_parser.rb:565 : first_final /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_location_parser.rb:565 | |
class_accessor parsers/content_location_parser.rb:569 : error /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_location_parser.rb:569 | |
class_accessor parsers/content_location_parser.rb:574 : en_comment_tail /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_location_parser.rb:574 | |
class_accessor parsers/content_location_parser.rb:578 : en_main /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers/content_location_parser.rb:578 | |
class_variable network/retriever_methods/test_retriever.rb:9 : @@emails /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/network/retriever_methods/test_retriever.rb:9 | |
class_variable network/retriever_methods/test_retriever.rb:13 : @@emails /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/network/retriever_methods/test_retriever.rb:13 | |
class_variable network/retriever_methods/test_retriever.rb:17 : @@emails /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/network/retriever_methods/test_retriever.rb:17 | |
class_variable network/retriever_methods/test_retriever.rb:24 : @@emails /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/network/retriever_methods/test_retriever.rb:24 | |
class_variable network/retriever_methods/test_retriever.rb:35 : @@emails /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/network/retriever_methods/test_retriever.rb:35 | |
class_variable network/retriever_methods/test_retriever.rb:36 : @@emails /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/network/retriever_methods/test_retriever.rb:36 | |
class_variable network/retriever_methods/test_retriever.rb:38 : @@emails /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/network/retriever_methods/test_retriever.rb:38 | |
global_variable network/delivery_methods/logger_delivery.rb:23 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/network/delivery_methods/logger_delivery.rb:23 | |
class_variable network/delivery_methods/test_mailer.rb:13 : @@deliveries /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/network/delivery_methods/test_mailer.rb:13 | |
class_variable network/delivery_methods/test_mailer.rb:28 : @@deliveries /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/network/delivery_methods/test_mailer.rb:28 | |
global_variable parsers.rb:4 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers.rb:4 | |
global_variable parsers.rb:4 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers.rb:4 | |
global_variable parsers.rb:18 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/parsers.rb:18 | |
class_variable message.rb:234 : @@default_charset /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/message.rb:234 | |
class_variable message.rb:235 : @@default_charset /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/message.rb:235 | |
class_accessor version_specific/ruby_1_9.rb:43 : charset_encoder /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/version_specific/ruby_1_9.rb:43 | |
global_variable version_specific/ruby_1_9.rb:133 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/version_specific/ruby_1_9.rb:133 | |
global_variable version_specific/ruby_1_9.rb:157 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/version_specific/ruby_1_9.rb:157 | |
global_variable version_specific/ruby_1_9.rb:166 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/version_specific/ruby_1_9.rb:166 | |
class_instance_variable version_specific/ruby_1_9.rb:177 : @uri_parser /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/version_specific/ruby_1_9.rb:177 | |
global_variable version_specific/ruby_1_8.rb:130 : $KCODE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/version_specific/ruby_1_8.rb:130 | |
global_variable fields/unstructured_field.rb:49 : $KCODE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/fields/unstructured_field.rb:49 | |
global_variable multibyte/utils.rb:13 : $KCODE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/multibyte/utils.rb:13 | |
global_variable multibyte/chars.rb:101 : $KCODE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/multibyte/chars.rb:101 | |
class_accessor multibyte/unicode.rb:372 : (const nil :ATTRIBUTES) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/multibyte/unicode.rb:372 | |
class_instance_variable encodings.rb:21 : @transfer_encodings /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/encodings.rb:21 | |
class_instance_variable encodings.rb:30 : @transfer_encodings /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/encodings.rb:30 | |
class_instance_variable encodings.rb:42 : @transfer_encodings /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/encodings.rb:42 | |
class_instance_variable encodings.rb:46 : @transfer_encodings /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/encodings.rb:46 | |
global_variable encodings.rb:204 : $KCODE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/encodings.rb:204 | |
global_variable encodings.rb:205 : $KCODE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/encodings.rb:205 | |
global_variable encodings.rb:205 : $KCODE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/encodings.rb:205 | |
global_variable encodings.rb:209 : $KCODE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/encodings.rb:209 | |
global_variable encodings.rb:274 : $KCODE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/encodings.rb:274 | |
class_variable header.rb:25 : @@maximum_amount /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/header.rb:25 | |
class_variable header.rb:32 : @@maximum_amount /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/header.rb:32 | |
class_variable header.rb:36 : @@maximum_amount /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/header.rb:36 | |
class_accessor multibyte.rb:17 : proxy_class /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/multibyte.rb:17 | |
class_variable mail.rb:188 : @@delivery_notification_observers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/mail.rb:188 | |
class_variable mail.rb:189 : @@delivery_interceptors /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/mail.rb:189 | |
class_variable mail.rb:197 : @@delivery_notification_observers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/mail.rb:197 | |
class_variable mail.rb:198 : @@delivery_notification_observers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/mail.rb:198 | |
class_variable mail.rb:205 : @@delivery_notification_observers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/mail.rb:205 | |
class_variable mail.rb:216 : @@delivery_interceptors /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/mail.rb:216 | |
class_variable mail.rb:217 : @@delivery_interceptors /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/mail.rb:217 | |
class_variable mail.rb:224 : @@delivery_interceptors /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/mail.rb:224 | |
class_variable mail.rb:228 : @@delivery_notification_observers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/mail.rb:228 | |
class_variable mail.rb:234 : @@delivery_interceptors /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/mail.rb:234 | |
global_variable mail.rb:247 : $$ /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/mail.rb:247 | |
class_variable mail.rb:257 : @@uniq /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/mail.rb:257 | |
class_variable mail.rb:260 : @@uniq /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail/mail.rb:260 | |
class_variable lib/mail.rb:40 : @@autoloads /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail.rb:40 | |
class_variable lib/mail.rb:42 : @@autoloads /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail.rb:42 | |
class_variable lib/mail.rb:54 : @@autoloads /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mail-2.7.1/lib/mail.rb:54 | |
----------------- | |
method_source-0.9.2 8 possible issues: | |
global_variable spec/spec_helper.rb:17 : $o /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/method_source-0.9.2/spec/spec_helper.rb:17 | |
global_variable spec/spec_helper.rb:18 : $o /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/method_source-0.9.2/spec/spec_helper.rb:18 | |
global_variable spec/method_source_spec.rb:57 : $o /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/method_source-0.9.2/spec/method_source_spec.rb:57 | |
global_variable spec/method_source_spec.rb:63 : $o /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/method_source-0.9.2/spec/method_source_spec.rb:63 | |
global_variable code_helpers.rb:67 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/method_source-0.9.2/lib/method_source/code_helpers.rb:67 | |
global_variable code_helpers.rb:68 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/method_source-0.9.2/lib/method_source/code_helpers.rb:68 | |
global_variable code_helpers.rb:79 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/method_source-0.9.2/lib/method_source/code_helpers.rb:79 | |
class_instance_variable lib/method_source.rb:52 : @lines_for_file /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/method_source-0.9.2/lib/method_source.rb:52 | |
class_instance_variable lib/method_source.rb:53 : @lines_for_file /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/method_source-0.9.2/lib/method_source.rb:53 | |
----------------- | |
mimemagic-0.3.3 2 possible issues: | |
global_variable script/generate-mime.rb:63 : $0 /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mimemagic-0.3.3/script/generate-mime.rb:63 | |
----------------- | |
mini_mime-1.0.1 4 possible issues: | |
global_variable bench/bench.rb:4 : $: /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mini_mime-1.0.1/bench/bench.rb:4 | |
class_instance_variable lib/mini_mime.rb:54 : @db /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mini_mime-1.0.1/lib/mini_mime.rb:54 | |
class_instance_variable lib/mini_mime.rb:55 : @db /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mini_mime-1.0.1/lib/mini_mime.rb:55 | |
class_instance_variable lib/mini_mime.rb:61 : @db /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mini_mime-1.0.1/lib/mini_mime.rb:61 | |
class_instance_variable lib/mini_mime.rb:62 : @db /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mini_mime-1.0.1/lib/mini_mime.rb:62 | |
----------------- | |
mini_portile2-2.4.0 2 possible issues: | |
global_variable mini_portile.rb:281 : $? /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mini_portile2-2.4.0/lib/mini_portile2/mini_portile.rb:281 | |
class_variable mini_portile.rb:308 : @@tar_exe /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mini_portile2-2.4.0/lib/mini_portile2/mini_portile.rb:308 | |
global_variable mini_portile.rb:391 : $? /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/mini_portile2-2.4.0/lib/mini_portile2/mini_portile.rb:391 | |
----------------- | |
minitest-5.11.3 14 possible issues: | |
class_variable test/minitest/metametameta.rb:12 : @@count /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/test/minitest/metametameta.rb:12 | |
class_instance_variable test/minitest/metametameta.rb:15 : @fake_name /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/test/minitest/metametameta.rb:15 | |
class_variable test/minitest/metametameta.rb:16 : @@count /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/test/minitest/metametameta.rb:16 | |
class_variable test/minitest/metametameta.rb:17 : @@count /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/test/minitest/metametameta.rb:17 | |
global_variable test/minitest/test_minitest_spec.rb:228 : $-w /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/test/minitest/test_minitest_spec.rb:228 | |
global_variable test/minitest/test_minitest_spec.rb:462 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/test/minitest/test_minitest_spec.rb:462 | |
global_variable test/minitest/test_minitest_spec.rb:465 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/test/minitest/test_minitest_spec.rb:465 | |
global_variable test/minitest/test_minitest_spec.rb:602 : $let_count /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/test/minitest/test_minitest_spec.rb:602 | |
global_variable test/minitest/test_minitest_spec.rb:606 : $let_count /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/test/minitest/test_minitest_spec.rb:606 | |
global_variable test/minitest/test_minitest_spec.rb:607 : $let_count /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/test/minitest/test_minitest_spec.rb:607 | |
class_instance_variable test/minitest/test_minitest_spec.rb:971 : @struct /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/test/minitest/test_minitest_spec.rb:971 | |
class_instance_variable pride_plugin.rb:29 : @pride /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/pride_plugin.rb:29 | |
class_instance_variable pride_plugin.rb:36 : @pride /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/pride_plugin.rb:36 | |
class_instance_variable assertions.rb:30 : @diff /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/assertions.rb:30 | |
class_instance_variable assertions.rb:41 : @diff /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/assertions.rb:41 | |
class_instance_variable assertions.rb:43 : @diff /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/assertions.rb:43 | |
class_instance_variable assertions.rb:50 : @diff /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/assertions.rb:50 | |
global_variable assertions.rb:438 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/assertions.rb:438 | |
global_variable assertions.rb:438 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/assertions.rb:438 | |
global_variable assertions.rb:439 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/assertions.rb:439 | |
global_variable assertions.rb:439 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/assertions.rb:439 | |
global_variable assertions.rb:445 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/assertions.rb:445 | |
global_variable assertions.rb:446 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/assertions.rb:446 | |
global_variable assertions.rb:473 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/assertions.rb:473 | |
global_variable assertions.rb:473 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/assertions.rb:473 | |
global_variable assertions.rb:474 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/assertions.rb:474 | |
global_variable assertions.rb:475 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/assertions.rb:475 | |
global_variable assertions.rb:479 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/assertions.rb:479 | |
global_variable assertions.rb:480 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/assertions.rb:480 | |
global_variable assertions.rb:486 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/assertions.rb:486 | |
global_variable assertions.rb:487 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/assertions.rb:487 | |
class_accessor test.rb:22 : io_lock /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/test.rb:22 | |
class_instance_variable benchmark.rb:13 : @io /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/benchmark.rb:13 | |
class_instance_variable benchmark.rb:21 : @io /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest/benchmark.rb:21 | |
class_variable lib/minitest.rb:14 : @@installed_at_exit /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest.rb:14 | |
class_variable lib/minitest.rb:15 : @@after_run /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest.rb:15 | |
global_variable lib/minitest.rb:54 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest.rb:54 | |
global_variable lib/minitest.rb:54 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest.rb:54 | |
global_variable lib/minitest.rb:54 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest.rb:54 | |
class_variable lib/minitest.rb:59 : @@after_run /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest.rb:59 | |
class_variable lib/minitest.rb:64 : @@installed_at_exit /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest.rb:64 | |
class_variable lib/minitest.rb:65 : @@installed_at_exit /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest.rb:65 | |
class_variable lib/minitest.rb:75 : @@after_run /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest.rb:75 | |
global_variable lib/minitest.rb:165 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest.rb:165 | |
class_variable lib/minitest.rb:292 : @@runnables /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest.rb:292 | |
class_variable lib/minitest.rb:377 : @@runnables /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest.rb:377 | |
class_variable lib/minitest.rb:380 : @@marshal_dump_warned /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest.rb:380 | |
class_variable lib/minitest.rb:383 : @@marshal_dump_warned /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest.rb:383 | |
class_variable lib/minitest.rb:386 : @@marshal_dump_warned /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest.rb:386 | |
global_variable lib/minitest.rb:594 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest.rb:594 | |
global_variable lib/minitest.rb:644 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest.rb:644 | |
global_variable lib/minitest.rb:947 : $DEBUG /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/minitest-5.11.3/lib/minitest.rb:947 | |
----------------- | |
nio4r-2.3.1 6 possible issues: | |
global_variable ext/nio4r/extconf.rb:16 : $defs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nio4r-2.3.1/ext/nio4r/extconf.rb:16 | |
global_variable ext/nio4r/extconf.rb:17 : $defs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nio4r-2.3.1/ext/nio4r/extconf.rb:17 | |
global_variable ext/nio4r/extconf.rb:18 : $defs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nio4r-2.3.1/ext/nio4r/extconf.rb:18 | |
global_variable ext/nio4r/extconf.rb:19 : $defs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nio4r-2.3.1/ext/nio4r/extconf.rb:19 | |
global_variable ext/nio4r/extconf.rb:20 : $defs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nio4r-2.3.1/ext/nio4r/extconf.rb:20 | |
global_variable ext/nio4r/extconf.rb:21 : $defs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nio4r-2.3.1/ext/nio4r/extconf.rb:21 | |
global_variable spec/spec_helper.rb:16 : $current_tcp_port /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nio4r-2.3.1/spec/spec_helper.rb:16 | |
global_variable spec/spec_helper.rb:20 : $current_tcp_port /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nio4r-2.3.1/spec/spec_helper.rb:20 | |
global_variable spec/spec_helper.rb:23 : $current_tcp_port /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nio4r-2.3.1/spec/spec_helper.rb:23 | |
global_variable spec/spec_helper.rb:25 : $current_tcp_port /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nio4r-2.3.1/spec/spec_helper.rb:25 | |
global_variable examples/echo_server.rb:4 : $LOAD_PATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nio4r-2.3.1/examples/echo_server.rb:4 | |
global_variable examples/echo_server.rb:47 : $PROGRAM_NAME /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nio4r-2.3.1/examples/echo_server.rb:47 | |
----------------- | |
nokogiri-1.10.1 10 possible issues: | |
global_variable ext/nokogiri/extconf.rb:54 : $0 /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:54 | |
global_variable ext/nokogiri/extconf.rb:161 : $CFLAGS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:161 | |
global_variable ext/nokogiri/extconf.rb:174 : $arg_config /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:174 | |
global_variable ext/nokogiri/extconf.rb:175 : $CFLAGS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:175 | |
global_variable ext/nokogiri/extconf.rb:175 : $CPPFLAGS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:175 | |
global_variable ext/nokogiri/extconf.rb:176 : $LDFLAGS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:176 | |
global_variable ext/nokogiri/extconf.rb:176 : $LIBPATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:176 | |
global_variable ext/nokogiri/extconf.rb:176 : $libs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:176 | |
global_variable ext/nokogiri/extconf.rb:180 : $arg_config /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:180 | |
global_variable ext/nokogiri/extconf.rb:181 : $CFLAGS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:181 | |
global_variable ext/nokogiri/extconf.rb:181 : $CPPFLAGS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:181 | |
global_variable ext/nokogiri/extconf.rb:182 : $LDFLAGS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:182 | |
global_variable ext/nokogiri/extconf.rb:182 : $LIBPATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:182 | |
global_variable ext/nokogiri/extconf.rb:182 : $libs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:182 | |
global_variable ext/nokogiri/extconf.rb:376 : $LIBEXT /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:376 | |
global_variable ext/nokogiri/extconf.rb:413 : $LIBS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:413 | |
global_variable ext/nokogiri/extconf.rb:419 : $CFLAGS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:419 | |
global_variable ext/nokogiri/extconf.rb:423 : $CFLAGS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:423 | |
global_variable ext/nokogiri/extconf.rb:432 : $CFLAGS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:432 | |
global_variable ext/nokogiri/extconf.rb:438 : $CPPFLAGS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:438 | |
global_variable ext/nokogiri/extconf.rb:442 : $CFLAGS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:442 | |
global_variable ext/nokogiri/extconf.rb:442 : $CFLAGS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:442 | |
global_variable ext/nokogiri/extconf.rb:443 : $CFLAGS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:443 | |
class_accessor ext/nokogiri/extconf.rb:490 : cross_build_p /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:490 | |
global_variable ext/nokogiri/extconf.rb:588 : $CFLAGS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:588 | |
global_variable ext/nokogiri/extconf.rb:589 : $LIBPATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:589 | |
global_variable ext/nokogiri/extconf.rb:589 : $LIBPATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:589 | |
global_variable ext/nokogiri/extconf.rb:590 : $LIBPATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:590 | |
global_variable ext/nokogiri/extconf.rb:590 : $LIBPATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:590 | |
global_variable ext/nokogiri/extconf.rb:596 : $libs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:596 | |
global_variable ext/nokogiri/extconf.rb:596 : $libs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:596 | |
global_variable ext/nokogiri/extconf.rb:601 : $CPPFLAGS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:601 | |
global_variable ext/nokogiri/extconf.rb:607 : $LIBPATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:607 | |
global_variable ext/nokogiri/extconf.rb:609 : $LIBPATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:609 | |
global_variable ext/nokogiri/extconf.rb:614 : $LDFLAGS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:614 | |
global_variable ext/nokogiri/extconf.rb:620 : $CPPFLAGS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:620 | |
global_variable ext/nokogiri/extconf.rb:621 : $CPPFLAGS /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:621 | |
global_variable ext/nokogiri/extconf.rb:640 : $libs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:640 | |
global_variable ext/nokogiri/extconf.rb:640 : $libs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/ext/nokogiri/extconf.rb:640 | |
global_variable lib/nokogiri.rb:15 : $LOAD_PATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri.rb:15 | |
class_accessor css/parser_extras.rb:12 : cache_on /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/css/parser_extras.rb:12 | |
class_instance_variable css/parser_extras.rb:18 : @cache_on /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/css/parser_extras.rb:18 | |
class_instance_variable css/parser_extras.rb:19 : @mutex /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/css/parser_extras.rb:19 | |
class_instance_variable css/parser_extras.rb:19 : @cache /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/css/parser_extras.rb:19 | |
class_instance_variable css/parser_extras.rb:24 : @cache_on /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/css/parser_extras.rb:24 | |
class_instance_variable css/parser_extras.rb:25 : @mutex /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/css/parser_extras.rb:25 | |
class_instance_variable css/parser_extras.rb:25 : @cache /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/css/parser_extras.rb:25 | |
class_instance_variable css/parser_extras.rb:30 : @cache /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/css/parser_extras.rb:30 | |
class_instance_variable css/parser_extras.rb:30 : @mutex /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/css/parser_extras.rb:30 | |
class_instance_variable css/parser_extras.rb:35 : @cache_on /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/css/parser_extras.rb:35 | |
class_instance_variable css/parser_extras.rb:36 : @cache_on /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/css/parser_extras.rb:36 | |
class_instance_variable css/parser_extras.rb:38 : @cache_on /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/css/parser_extras.rb:38 | |
class_instance_variable css/parser_extras.rb:44 : @warned /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/css/parser_extras.rb:44 | |
class_instance_variable css/parser_extras.rb:45 : @warned /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/css/parser_extras.rb:45 | |
global_variable css/parser_extras.rb:46 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/css/parser_extras.rb:46 | |
class_instance_variable css/parser_extras.rb:47 : @warned /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/css/parser_extras.rb:47 | |
global_variable css.rb:3 : $-w /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/css.rb:3 | |
global_variable css.rb:4 : $-w /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/css.rb:4 | |
global_variable css.rb:6 : $-w /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/css.rb:6 | |
class_variable version.rb:92 : @@instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/version.rb:92 | |
class_variable version.rb:93 : @@instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/version.rb:93 | |
class_variable version.rb:96 : @@instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/nokogiri-1.10.1/lib/nokogiri/version.rb:96 | |
----------------- | |
rack-2.0.6 48 possible issues: | |
global_variable test/spec_session_pool.rb:148 : $DEBUG /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_session_pool.rb:148 | |
global_variable test/spec_handler.rb:39 : $LOAD_PATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_handler.rb:39 | |
global_variable test/spec_handler.rb:44 : $LOAD_PATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_handler.rb:44 | |
global_variable test/spec_handler.rb:51 : $LOAD_PATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_handler.rb:51 | |
global_variable test/spec_handler.rb:54 : $LOAD_PATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_handler.rb:54 | |
global_variable test/spec_thin.rb:95 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_thin.rb:95 | |
global_variable test/helper.rb:8 : $? /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/helper.rb:8 | |
global_variable test/spec_cgi.rb:16 : $? /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_cgi.rb:16 | |
class_variable test/spec_builder.rb:13 : @@env /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_builder.rb:13 | |
class_variable test/spec_builder.rb:18 : @@env /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_builder.rb:18 | |
global_variable test/spec_builder.rb:208 : $: /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_builder.rb:208 | |
global_variable test/spec_builder.rb:211 : $: /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_builder.rb:211 | |
global_variable test/spec_builder.rb:215 : $: /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_builder.rb:215 | |
global_variable test/spec_builder.rb:218 : $: /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_builder.rb:218 | |
global_variable test/cgi/rackup_stub.rb:4 : $: /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/cgi/rackup_stub.rb:4 | |
global_variable test/spec_server.rb:22 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_server.rb:22 | |
global_variable test/spec_server.rb:22 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_server.rb:22 | |
global_variable test/spec_server.rb:23 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_server.rb:23 | |
global_variable test/spec_server.rb:25 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_server.rb:25 | |
global_variable test/spec_server.rb:136 : $$ /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_server.rb:136 | |
global_variable test/spec_server.rb:138 : $$ /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_server.rb:138 | |
global_variable test/spec_server.rb:142 : $$ /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_server.rb:142 | |
class_instance_variable test/spec_rewindable_input.rb:120 : @io /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_rewindable_input.rb:120 | |
global_variable test/spec_session_memcache.rb:111 : $DEBUG /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_session_memcache.rb:111 | |
global_variable test/spec_session_memcache.rb:240 : $DEBUG /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_session_memcache.rb:240 | |
global_variable test/spec_session_memcache.rb:317 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_session_memcache.rb:317 | |
global_variable test/spec_session_memcache.rb:319 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/test/spec_session_memcache.rb:319 | |
class_instance_variable handler/webrick.rb:31 : @server /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler/webrick.rb:31 | |
class_instance_variable handler/webrick.rb:32 : @server /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler/webrick.rb:32 | |
class_instance_variable handler/webrick.rb:33 : @server /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler/webrick.rb:33 | |
class_instance_variable handler/webrick.rb:34 : @server /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler/webrick.rb:34 | |
class_instance_variable handler/webrick.rb:48 : @server /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler/webrick.rb:48 | |
class_instance_variable handler/webrick.rb:49 : @server /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler/webrick.rb:49 | |
global_variable handler/webrick.rb:68 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler/webrick.rb:68 | |
global_variable handler/scgi.rb:49 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler/scgi.rb:49 | |
global_variable handler/cgi.rb:8 : $stdin /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler/cgi.rb:8 | |
global_variable handler/cgi.rb:20 : $stdin /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler/cgi.rb:20 | |
global_variable handler/cgi.rb:21 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler/cgi.rb:21 | |
global_variable handler/cgi.rb:42 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler/cgi.rb:42 | |
global_variable handler/cgi.rb:45 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler/cgi.rb:45 | |
global_variable handler/cgi.rb:48 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler/cgi.rb:48 | |
global_variable handler/cgi.rb:49 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler/cgi.rb:49 | |
global_variable handler/cgi.rb:54 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler/cgi.rb:54 | |
global_variable handler/cgi.rb:55 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler/cgi.rb:55 | |
global_variable handler/lsws.rb:18 : $stdin /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler/lsws.rb:18 | |
global_variable handler/lsws.rb:23 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler/lsws.rb:23 | |
class_instance_variable mock.rb:83 : @parser /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/mock.rb:83 | |
class_instance_variable mock.rb:84 : @parser /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/mock.rb:84 | |
class_accessor auth/digest/nonce.rb:17 : time_limit /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/auth/digest/nonce.rb:17 | |
global_variable lobster.rb:64 : $0 /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/lobster.rb:64 | |
class_accessor utils.rb:21 : default_query_parser /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/utils.rb:21 | |
class_accessor utils.rb:56 : multipart_part_limit /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/utils.rb:56 | |
global_variable utils.rb:356 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/utils.rb:356 | |
global_variable request.rb:425 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/request.rb:425 | |
global_variable request.rb:436 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/request.rb:436 | |
class_instance_variable handler.rb:15 : @handlers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler.rb:15 | |
class_instance_variable handler.rb:19 : @handlers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler.rb:19 | |
class_instance_variable handler.rb:81 : @handlers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler.rb:81 | |
class_instance_variable handler.rb:82 : @handlers /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/handler.rb:82 | |
global_variable reloader.rb:48 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/reloader.rb:48 | |
global_variable reloader.rb:56 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/reloader.rb:56 | |
global_variable reloader.rb:68 : $0 /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/reloader.rb:68 | |
global_variable reloader.rb:68 : $LOADED_FEATURES /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/reloader.rb:68 | |
global_variable reloader.rb:69 : $LOAD_PATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/reloader.rb:69 | |
global_variable server.rb:62 : $0 /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/server.rb:62 | |
global_variable server.rb:225 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/server.rb:225 | |
global_variable server.rb:260 : $-w /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/server.rb:260 | |
global_variable server.rb:264 : $LOAD_PATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/server.rb:264 | |
global_variable server.rb:272 : $DEBUG /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/server.rb:272 | |
global_variable server.rb:372 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/server.rb:372 | |
global_variable session/abstract/id.rb:357 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/session/abstract/id.rb:357 | |
global_variable session/abstract/id.rb:413 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/session/abstract/id.rb:413 | |
global_variable session/memcache.rb:82 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/session/memcache.rb:82 | |
global_variable session/memcache.rb:84 : $! /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rack-2.0.6/lib/rack/session/memcache.rb:84 | |
----------------- | |
rails-dom-testing-2.0.3 2 possible issues: | |
class_accessor lib/rails/dom/testing/assertions/selector_assertions/html_selector.rb:33 : context /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rails-dom-testing-2.0.3/lib/rails/dom/testing/assertions/selector_assertions/html_selector.rb:33 | |
----------------- | |
rails-html-sanitizer-1.0.4 2 possible issues: | |
class_accessor lib/rails/html/sanitizer.rb:104 : allowed_tags /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rails-html-sanitizer-1.0.4/lib/rails/html/sanitizer.rb:104 | |
class_accessor lib/rails/html/sanitizer.rb:105 : allowed_attributes /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rails-html-sanitizer-1.0.4/lib/rails/html/sanitizer.rb:105 | |
----------------- | |
railties-5.2.2 44 possible issues: | |
class_instance_variable lib/rails.rb:35 : @application /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails.rb:35 | |
class_accessor lib/rails.rb:37 : application /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails.rb:37 | |
class_accessor lib/rails.rb:38 : logger /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails.rb:38 | |
class_instance_variable lib/rails.rb:40 : @application /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails.rb:40 | |
class_instance_variable lib/rails.rb:51 : @backtrace_cleaner /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails.rb:51 | |
class_instance_variable lib/rails.rb:73 : @_env /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails.rb:73 | |
class_instance_variable lib/rails.rb:80 : @_env /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails.rb:80 | |
class_accessor lib/minitest/rails_plugin.rb:62 : (pair | |
(sym :default) | |
(hash)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/minitest/rails_plugin.rb:62 | |
class_accessor lib/rails/info.rb:10 : (pair | |
(sym :default) | |
(array)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/info.rb:10 | |
class_variable lib/rails/info.rb:12 : @@properties /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/info.rb:12 | |
global_variable lib/rails/application.rb:330 : $LOAD_PATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/application.rb:330 | |
global_variable lib/rails/application.rb:331 : $LOAD_PATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/application.rb:331 | |
global_variable lib/rails/generators.rb:4 : $: /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators.rb:4 | |
global_variable lib/rails/generators.rb:4 : $: /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators.rb:4 | |
class_accessor lib/rails/generators.rb:30 : namespace /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators.rb:30 | |
class_instance_variable lib/rails/generators.rb:87 : @templates_path /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators.rb:87 | |
class_instance_variable lib/rails/generators.rb:91 : @aliases /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators.rb:91 | |
class_instance_variable lib/rails/generators.rb:95 : @options /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators.rb:95 | |
class_instance_variable lib/rails/generators.rb:111 : @fallbacks /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators.rb:111 | |
class_instance_variable lib/rails/generators.rb:144 : @hidden_namespaces /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators.rb:144 | |
class_instance_variable lib/rails/generators.rb:312 : @command_type /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators.rb:312 | |
class_instance_variable lib/rails/generators.rb:316 : @lookup_paths /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators.rb:316 | |
class_instance_variable lib/rails/generators.rb:320 : @file_lookup_paths /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators.rb:320 | |
class_accessor lib/rails/secrets.rb:23 : root /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/secrets.rb:23 | |
class_instance_variable lib/rails/secrets.rb:72 : @root /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/secrets.rb:72 | |
class_instance_variable lib/rails/secrets.rb:76 : @root /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/secrets.rb:76 | |
class_instance_variable lib/rails/secrets.rb:102 : @cipher /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/secrets.rb:102 | |
class_instance_variable lib/rails/secrets.rb:102 : @encryptor /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/secrets.rb:102 | |
class_accessor lib/rails/engine.rb:351 : isolated /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/engine.rb:351 | |
class_instance_variable lib/rails/engine.rb:377 : @endpoint /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/engine.rb:377 | |
class_instance_variable lib/rails/engine.rb:378 : @endpoint /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/engine.rb:378 | |
class_instance_variable lib/rails/engine.rb:379 : @endpoint /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/engine.rb:379 | |
global_variable lib/rails/engine.rb:557 : $LOAD_PATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/engine.rb:557 | |
global_variable lib/rails/engine.rb:559 : $LOAD_PATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/engine.rb:559 | |
class_instance_variable lib/rails/railtie.rb:130 : @subclasses /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/railtie.rb:130 | |
class_instance_variable lib/rails/railtie.rb:160 : @railtie_name /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/railtie.rb:160 | |
class_instance_variable lib/rails/railtie.rb:161 : @railtie_name /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/railtie.rb:161 | |
class_instance_variable lib/rails/railtie.rb:167 : @instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/railtie.rb:167 | |
class_accessor lib/rails/test_unit/runner.rb:11 : (pair | |
(sym :default) | |
(array)) /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/test_unit/runner.rb:11 | |
global_variable lib/rails/test_unit/runner.rb:29 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/test_unit/runner.rb:29 | |
global_variable lib/rails/app_loader.rb:56 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/app_loader.rb:56 | |
global_variable lib/rails/commands/test/test_command.rb:30 : $LOAD_PATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/commands/test/test_command.rb:30 | |
global_variable lib/rails/commands/runner/runner_command.rb:35 : $stdin /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/commands/runner/runner_command.rb:35 | |
global_variable lib/rails/commands/runner/runner_command.rb:37 : $0 /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/commands/runner/runner_command.rb:37 | |
global_variable lib/rails/commands/runner/runner_command.rb:43 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/commands/runner/runner_command.rb:43 | |
global_variable lib/rails/commands/runner/runner_command.rb:44 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/commands/runner/runner_command.rb:44 | |
global_variable lib/rails/commands/runner/runner_command.rb:45 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/commands/runner/runner_command.rb:45 | |
global_variable lib/rails/commands/runner/runner_command.rb:46 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/commands/runner/runner_command.rb:46 | |
class_instance_variable lib/rails/commands/rake/rake_command.rb:31 : @rake_tasks /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/commands/rake/rake_command.rb:31 | |
class_instance_variable lib/rails/commands/rake/rake_command.rb:31 : @rake_tasks /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/commands/rake/rake_command.rb:31 | |
class_instance_variable lib/rails/commands/rake/rake_command.rb:38 : @rake_tasks /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/commands/rake/rake_command.rb:38 | |
class_instance_variable lib/rails/command/base.rb:31 : @desc /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/command/base.rb:31 | |
class_instance_variable lib/rails/command/base.rb:42 : @namespace /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/command/base.rb:42 | |
class_instance_variable lib/rails/command/base.rb:85 : @base_name /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/command/base.rb:85 | |
class_instance_variable lib/rails/command/base.rb:96 : @command_name /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/command/base.rb:96 | |
class_instance_variable lib/rails/command/base.rb:130 : @usage /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/command/base.rb:130 | |
class_instance_variable lib/rails/command/base.rb:131 : @desc /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/command/base.rb:131 | |
global_variable lib/rails/command/behavior.rb:97 : $LOAD_PATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/command/behavior.rb:97 | |
class_instance_variable lib/rails/command.rb:24 : @hidden_commands /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/command.rb:24 | |
class_instance_variable lib/rails/command.rb:101 : @command_type /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/command.rb:101 | |
class_instance_variable lib/rails/command.rb:105 : @lookup_paths /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/command.rb:105 | |
class_instance_variable lib/rails/command.rb:109 : @file_lookup_paths /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/command.rb:109 | |
global_variable lib/rails/generators/base.rb:8 : $0 /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators/base.rb:8 | |
class_instance_variable lib/rails/generators/base.rb:29 : @_source_root /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators/base.rb:29 | |
class_instance_variable lib/rails/generators/base.rb:30 : @_source_root /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators/base.rb:30 | |
class_instance_variable lib/rails/generators/base.rb:38 : @desc /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators/base.rb:38 | |
class_instance_variable lib/rails/generators/base.rb:50 : @namespace /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators/base.rb:50 | |
class_instance_variable lib/rails/generators/base.rb:320 : @base_name /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators/base.rb:320 | |
class_instance_variable lib/rails/generators/base.rb:330 : @generator_name /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators/base.rb:330 | |
class_instance_variable lib/rails/generators/base.rb:365 : @hooks /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators/base.rb:365 | |
class_instance_variable lib/rails/generators/base.rb:391 : @shebang /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators/base.rb:391 | |
class_accessor lib/rails/generators/model_helpers.rb:10 : skip_warn /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/generators/model_helpers.rb:10 | |
class_variable lib/rails/railtie/configuration.rb:9 : @@options /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/railtie/configuration.rb:9 | |
class_variable lib/rails/railtie/configuration.rb:14 : @@eager_load_namespaces /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/railtie/configuration.rb:14 | |
class_variable lib/rails/railtie/configuration.rb:19 : @@eager_load_namespaces /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/railtie/configuration.rb:19 | |
class_variable lib/rails/railtie/configuration.rb:24 : @@watchable_files /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/railtie/configuration.rb:24 | |
class_variable lib/rails/railtie/configuration.rb:31 : @@watchable_dirs /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/railtie/configuration.rb:31 | |
class_variable lib/rails/railtie/configuration.rb:40 : @@app_middleware /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/railtie/configuration.rb:40 | |
class_variable lib/rails/railtie/configuration.rb:48 : @@app_generators /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/railtie/configuration.rb:48 | |
class_variable lib/rails/railtie/configuration.rb:49 : @@app_generators /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/railtie/configuration.rb:49 | |
class_variable lib/rails/railtie/configuration.rb:50 : @@app_generators /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/railtie/configuration.rb:50 | |
class_variable lib/rails/railtie/configuration.rb:76 : @@to_prepare_blocks /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/railtie/configuration.rb:76 | |
class_variable lib/rails/railtie/configuration.rb:86 : @@options /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/railtie/configuration.rb:86 | |
class_variable lib/rails/railtie/configuration.rb:93 : @@options /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/railtie/configuration.rb:93 | |
class_variable lib/rails/railtie/configuration.rb:94 : @@options /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/railtie/configuration.rb:94 | |
class_variable lib/rails/railtie/configuration.rb:95 : @@options /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/railtie/configuration.rb:95 | |
class_variable lib/rails/source_annotation_extractor.rb:20 : @@directories /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/source_annotation_extractor.rb:20 | |
class_variable lib/rails/source_annotation_extractor.rb:30 : @@extensions /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/source_annotation_extractor.rb:30 | |
class_instance_variable lib/rails/engine/updater.rb:11 : @generator /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/engine/updater.rb:11 | |
class_instance_variable lib/rails/app_updater.rb:14 : @app_generator /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/railties-5.2.2/lib/rails/app_updater.rb:14 | |
----------------- | |
rake-12.3.2 24 possible issues: | |
global_variable trace_output.rb:11 : $\ /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/trace_output.rb:11 | |
class_accessor task_manager.rb:318 : record_task_metadata /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/task_manager.rb:318 | |
global_variable file_utils.rb:55 : $? /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/file_utils.rb:55 | |
global_variable file_utils.rb:63 : $trace /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/file_utils.rb:63 | |
global_variable ext/core.rb:20 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/ext/core.rb:20 | |
global_variable application.rb:191 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/application.rb:191 | |
global_variable application.rb:260 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/application.rb:260 | |
global_variable application.rb:389 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/application.rb:389 | |
global_variable application.rb:492 : $: /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/application.rb:492 | |
global_variable application.rb:624 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/application.rb:624 | |
global_variable application.rb:626 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/application.rb:626 | |
global_variable application.rb:657 : $LOAD_PATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/application.rb:657 | |
global_variable application.rb:657 : $" /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/application.rb:657 | |
global_variable application.rb:684 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/application.rb:684 | |
global_variable application.rb:819 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/application.rb:819 | |
class_instance_variable rake_module.rb:9 : @application /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/rake_module.rb:9 | |
class_instance_variable rake_module.rb:14 : @application /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/rake_module.rb:14 | |
class_instance_variable rake_module.rb:18 : @cpu_count /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/rake_module.rb:18 | |
class_instance_variable rake_module.rb:19 : @cpu_count /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/rake_module.rb:19 | |
global_variable testtask.rb:194 : $LOAD_PATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/testtask.rb:194 | |
global_variable testtask.rb:216 : $LOAD_PATH /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/testtask.rb:216 | |
global_variable thread_pool.rb:52 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/thread_pool.rb:52 | |
global_variable thread_pool.rb:53 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/thread_pool.rb:53 | |
global_variable thread_pool.rb:55 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/thread_pool.rb:55 | |
global_variable thread_pool.rb:57 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/thread_pool.rb:57 | |
global_variable thread_pool.rb:59 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/thread_pool.rb:59 | |
global_variable thread_pool.rb:60 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/thread_pool.rb:60 | |
class_accessor file_utils_ext.rb:14 : nowrite_flag /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/file_utils_ext.rb:14 | |
global_variable file_utils_ext.rb:110 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/file_utils_ext.rb:110 | |
global_variable file_utils_ext.rb:128 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/file_utils_ext.rb:128 | |
class_instance_variable linked_list.rb:106 : @parent /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/linked_list.rb:106 | |
global_variable file_list.rb:312 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake/file_list.rb:312 | |
global_variable lib/rake.rb:64 : $trace /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/rake-12.3.2/lib/rake.rb:64 | |
----------------- | |
sprockets-3.7.2 34 possible issues: | |
class_instance_variable closure_compressor.rb:24 : @instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-3.7.2/lib/sprockets/closure_compressor.rb:24 | |
class_instance_variable eco_processor.rb:15 : @cache_key /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-3.7.2/lib/sprockets/eco_processor.rb:15 | |
class_instance_variable jst_processor.rb:29 : @instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-3.7.2/lib/sprockets/jst_processor.rb:29 | |
global_variable cache/file_store.rb:27 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-3.7.2/lib/sprockets/cache/file_store.rb:27 | |
class_instance_variable uglifier_compressor.rb:24 : @instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-3.7.2/lib/sprockets/uglifier_compressor.rb:24 | |
class_instance_variable sass_processor.rb:26 : @instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-3.7.2/lib/sprockets/sass_processor.rb:26 | |
class_instance_variable erb_processor.rb:9 : @instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-3.7.2/lib/sprockets/erb_processor.rb:9 | |
class_instance_variable ejs_processor.rb:14 : @cache_key /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-3.7.2/lib/sprockets/ejs_processor.rb:14 | |
class_instance_variable coffee_script_processor.rb:15 : @cache_key /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-3.7.2/lib/sprockets/coffee_script_processor.rb:15 | |
global_variable cache.rb:50 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-3.7.2/lib/sprockets/cache.rb:50 | |
class_instance_variable directive_processor.rb:53 : @instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-3.7.2/lib/sprockets/directive_processor.rb:53 | |
global_variable deprecation.rb:12 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-3.7.2/lib/sprockets/deprecation.rb:12 | |
class_instance_variable sass_compressor.rb:24 : @instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-3.7.2/lib/sprockets/sass_compressor.rb:24 | |
class_instance_variable yui_compressor.rb:24 : @instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-3.7.2/lib/sprockets/yui_compressor.rb:24 | |
global_variable manifest.rb:330 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-3.7.2/lib/sprockets/manifest.rb:330 | |
global_variable lib/rake/sprocketstask.rb:102 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-3.7.2/lib/rake/sprocketstask.rb:102 | |
global_variable lib/sprockets.rb:45 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-3.7.2/lib/sprockets.rb:45 | |
----------------- | |
sprockets-rails-3.2.1 2 possible issues: | |
class_instance_variable lib/sprockets/rails/helper.rb:49 : @assets_environment /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-rails-3.2.1/lib/sprockets/rails/helper.rb:49 | |
class_instance_variable lib/sprockets/rails/helper.rb:49 : @assets_environment /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-rails-3.2.1/lib/sprockets/rails/helper.rb:49 | |
class_instance_variable lib/sprockets/rails/helper.rb:51 : @assets_environment /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-rails-3.2.1/lib/sprockets/rails/helper.rb:51 | |
class_instance_variable lib/sprockets/rails/helper.rb:65 : @assets_environment /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-rails-3.2.1/lib/sprockets/rails/helper.rb:65 | |
class_instance_variable lib/sprockets/rails/helper.rb:66 : @assets_environment /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/sprockets-rails-3.2.1/lib/sprockets/rails/helper.rb:66 | |
----------------- | |
thor-0.20.2 (out of date) 18 possible issues: | |
class_instance_variable base.rb:103 : @subclasses /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/base.rb:103 | |
class_instance_variable base.rb:112 : @subclass_files /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/base.rb:112 | |
global_variable base.rb:495 : $thor_runner /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/base.rb:495 | |
global_variable base.rb:653 : $PROGRAM_NAME /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/base.rb:653 | |
global_variable line_editor/basic.rb:16 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/line_editor/basic.rb:16 | |
global_variable line_editor/basic.rb:24 : $stdin /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/line_editor/basic.rb:24 | |
global_variable line_editor/basic.rb:28 : $stdin /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/line_editor/basic.rb:28 | |
global_variable shell/basic.rb:349 : $stdout /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/shell/basic.rb:349 | |
global_variable shell/basic.rb:353 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/shell/basic.rb:353 | |
global_variable shell/basic.rb:427 : $KCODE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/shell/basic.rb:427 | |
global_variable shell/basic.rb:428 : $KCODE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/shell/basic.rb:428 | |
global_variable shell/basic.rb:431 : $KCODE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/shell/basic.rb:431 | |
class_instance_variable group.rb:18 : @desc /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/group.rb:18 | |
class_instance_variable group.rb:20 : @desc /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/group.rb:20 | |
class_instance_variable group.rb:40 : @invocations /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/group.rb:40 | |
class_instance_variable group.rb:46 : @invocation_blocks /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/group.rb:46 | |
global_variable actions.rb:263 : $? /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/actions.rb:263 | |
class_instance_variable rake_compat.rb:24 : @rake_classes /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/rake_compat.rb:24 | |
global_variable util.rb:158 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/util.rb:158 | |
global_variable util.rb:160 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/util.rb:160 | |
global_variable util.rb:162 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/util.rb:162 | |
class_variable util.rb:168 : @@user_home /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/util.rb:168 | |
class_instance_variable util.rb:221 : @ruby_command /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/util.rb:221 | |
class_accessor shell.rb:6 : shell /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/shell.rb:6 | |
class_instance_variable shell.rb:12 : @shell /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor/shell.rb:12 | |
class_instance_variable lib/thor.rb:13 : @package_name /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:13 | |
class_instance_variable lib/thor.rb:23 : @default_command /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:23 | |
class_instance_variable lib/thor.rb:25 : @default_command /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:25 | |
class_instance_variable lib/thor.rb:60 : @usage /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:60 | |
class_instance_variable lib/thor.rb:61 : @desc /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:61 | |
class_instance_variable lib/thor.rb:62 : @hide /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:62 | |
class_instance_variable lib/thor.rb:76 : @long_desc /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:76 | |
class_instance_variable lib/thor.rb:94 : @map /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:94 | |
class_instance_variable lib/thor.rb:99 : @map /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:99 | |
class_instance_variable lib/thor.rb:101 : @map /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:101 | |
class_instance_variable lib/thor.rb:106 : @map /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:106 | |
class_instance_variable lib/thor.rb:117 : @method_options /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:117 | |
class_instance_variable lib/thor.rb:118 : @method_options /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:118 | |
class_instance_variable lib/thor.rb:119 : @method_options /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:119 | |
class_instance_variable lib/thor.rb:197 : @package_name /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:197 | |
class_instance_variable lib/thor.rb:197 : @package_name /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:197 | |
class_instance_variable lib/thor.rb:198 : @package_name /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:198 | |
class_instance_variable lib/thor.rb:221 : @subcommands /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:221 | |
class_instance_variable lib/thor.rb:226 : @subcommand_classes /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:226 | |
class_instance_variable lib/thor.rb:251 : @check_unknown_options /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:251 | |
class_instance_variable lib/thor.rb:254 : @check_unknown_options /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:254 | |
class_instance_variable lib/thor.rb:256 : @check_unknown_options /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:256 | |
class_instance_variable lib/thor.rb:259 : @check_unknown_options /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:259 | |
class_instance_variable lib/thor.rb:345 : @stop_on_unknown_option /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:345 | |
class_instance_variable lib/thor.rb:350 : @disable_required_check /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:350 | |
global_variable lib/thor.rb:396 : $thor_runner /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:396 | |
class_instance_variable lib/thor.rb:408 : @usage /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:408 | |
class_instance_variable lib/thor.rb:409 : @desc /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:409 | |
class_instance_variable lib/thor.rb:410 : @long_desc /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:410 | |
class_instance_variable lib/thor.rb:411 : @hide /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:411 | |
class_instance_variable lib/thor.rb:413 : @desc /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:413 | |
class_instance_variable lib/thor.rb:413 : @usage /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:413 | |
class_instance_variable lib/thor.rb:414 : @hide /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:414 | |
class_instance_variable lib/thor.rb:415 : @long_desc /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:415 | |
class_instance_variable lib/thor.rb:415 : @desc /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:415 | |
class_instance_variable lib/thor.rb:415 : @usage /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:415 | |
class_instance_variable lib/thor.rb:416 : @hide /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:416 | |
class_instance_variable lib/thor.rb:416 : @desc /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:416 | |
class_instance_variable lib/thor.rb:416 : @usage /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:416 | |
class_instance_variable lib/thor.rb:416 : @long_desc /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:416 | |
class_instance_variable lib/thor.rb:416 : @method_options /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:416 | |
class_instance_variable lib/thor.rb:431 : @method_options /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thor-0.20.2/lib/thor.rb:431 | |
----------------- | |
thread_safe-0.3.6 4 possible issues: | |
global_variable spec/spec_helper.rb:19 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thread_safe-0.3.6/spec/spec_helper.rb:19 | |
global_variable spec/spec_helper.rb:22 : $stderr /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thread_safe-0.3.6/spec/spec_helper.rb:22 | |
global_variable cache.rb:16 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/thread_safe-0.3.6/lib/thread_safe/cache.rb:16 | |
----------------- | |
tzinfo-1.2.5 (out of date) 20 possible issues: | |
class_instance_variable test/tc_linked_timezone.rb:68 : @timezones /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/test/tc_linked_timezone.rb:68 | |
class_instance_variable test/tc_linked_timezone.rb:69 : @timezones /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/test/tc_linked_timezone.rb:69 | |
global_variable test/test_utils.rb:6 : $: /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/test/test_utils.rb:6 | |
global_variable test/test_utils.rb:6 : $: /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/test/test_utils.rb:6 | |
global_variable test/test_utils.rb:10 : $: /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/test/test_utils.rb:10 | |
global_variable test/test_utils.rb:10 : $: /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/test/test_utils.rb:10 | |
global_variable test/test_utils.rb:48 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/test/test_utils.rb:48 | |
global_variable test/test_utils.rb:50 : $VERBOSE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/test/test_utils.rb:50 | |
global_variable test/test_utils.rb:53 : $-v /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/test/test_utils.rb:53 | |
global_variable test/test_utils.rb:66 : $SAFE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/test/test_utils.rb:66 | |
global_variable test/test_utils.rb:67 : $SAFE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/test/test_utils.rb:67 | |
global_variable test/test_utils.rb:89 : $SAFE /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/test/test_utils.rb:89 | |
class_variable ruby_data_source.rb:13 : @@timezone_index_loaded /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/ruby_data_source.rb:13 | |
class_variable ruby_data_source.rb:16 : @@country_index_loaded /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/ruby_data_source.rb:16 | |
class_variable ruby_data_source.rb:117 : @@timezone_index_loaded /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/ruby_data_source.rb:117 | |
class_variable ruby_data_source.rb:119 : @@timezone_index_loaded /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/ruby_data_source.rb:119 | |
class_variable ruby_data_source.rb:130 : @@country_index_loaded /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/ruby_data_source.rb:130 | |
class_variable ruby_data_source.rb:132 : @@country_index_loaded /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/ruby_data_source.rb:132 | |
class_instance_variable timezone_index_definition.rb:12 : @timezones /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_index_definition.rb:12 | |
class_instance_variable timezone_index_definition.rb:13 : @data_timezones /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_index_definition.rb:13 | |
class_instance_variable timezone_index_definition.rb:14 : @linked_timezones /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone_index_definition.rb:14 | |
class_variable timezone.rb:53 : @@loaded_zones /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone.rb:53 | |
class_variable timezone.rb:59 : @@default_dst /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone.rb:59 | |
class_variable timezone.rb:67 : @@default_dst /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone.rb:67 | |
class_variable timezone.rb:74 : @@default_dst /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone.rb:74 | |
class_variable timezone.rb:82 : @@loaded_zones /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone.rb:82 | |
class_variable timezone.rb:94 : @@loaded_zones /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone.rb:94 | |
class_variable timezone.rb:649 : @@loaded_zones /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/timezone.rb:649 | |
class_instance_variable country_index_definition.rb:10 : @countries /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/country_index_definition.rb:10 | |
class_variable offset_rationals.rb:11 : @@rational_cache /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/offset_rationals.rb:11 | |
class_variable offset_rationals.rb:73 : @@rational_cache /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/offset_rationals.rb:73 | |
class_variable country.rb:30 : @@countries /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/country.rb:30 | |
class_variable country.rb:35 : @@index_loaded /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/country.rb:35 | |
class_variable country.rb:40 : @@countries /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/country.rb:40 | |
class_variable country.rb:52 : @@countries /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/country.rb:52 | |
class_variable country.rb:187 : @@countries /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/country.rb:187 | |
class_variable zoneinfo_data_source.rb:83 : @@search_path /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_data_source.rb:83 | |
class_variable zoneinfo_data_source.rb:87 : @@alternate_iso3166_tab_search_path /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_data_source.rb:87 | |
class_variable zoneinfo_data_source.rb:96 : @@search_path /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_data_source.rb:96 | |
class_variable zoneinfo_data_source.rb:109 : @@search_path /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_data_source.rb:109 | |
class_variable zoneinfo_data_source.rb:120 : @@alternate_iso3166_tab_search_path /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_data_source.rb:120 | |
class_variable zoneinfo_data_source.rb:133 : @@alternate_iso3166_tab_search_path /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/zoneinfo_data_source.rb:133 | |
class_variable data_source.rb:20 : @@instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/data_source.rb:20 | |
class_variable data_source.rb:23 : @@default_mutex /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/data_source.rb:23 | |
class_variable data_source.rb:38 : @@instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/data_source.rb:38 | |
class_variable data_source.rb:39 : @@default_mutex /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/data_source.rb:39 | |
class_variable data_source.rb:40 : @@instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/data_source.rb:40 | |
class_variable data_source.rb:44 : @@instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/data_source.rb:44 | |
class_variable data_source.rb:103 : @@instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/data_source.rb:103 | |
class_variable data_source.rb:105 : @@instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/data_source.rb:105 | |
class_variable data_source.rb:107 : @@instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/tzinfo-1.2.5/lib/tzinfo/data_source.rb:107 | |
----------------- | |
websocket-driver-0.7.0 2 possible issues: | |
class_instance_variable lib/websocket/driver.rb:39 : @instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/websocket-driver-0.7.0/lib/websocket/driver.rb:39 | |
class_instance_variable lib/websocket/driver.rb:40 : @instance /Users/markburns/code/problematic_variable_finder/vendor/ruby/2.4.0/gems/websocket-driver-0.7.0/lib/websocket/driver.rb:40 | |
Out of date gems: | |
* thor (newest 0.20.3, installed 0.20.2, requested = 0.20.2) in groups "production" | |
* tzinfo (newest 2.0.0, installed 1.2.5) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment