X7ROOT File Manager
Current Path:
/opt/alt/ruby34/share/ruby
opt
/
alt
/
ruby34
/
share
/
ruby
/
📁
..
📄
English.rb
(5.54 KB)
📄
benchmark.rb
(18.66 KB)
📁
bigdecimal
📄
bundled_gems.rb
(7.28 KB)
📁
cgi
📄
cgi.rb
(9.83 KB)
📄
coverage.rb
(368 B)
📄
date.rb
(1.17 KB)
📄
delegate.rb
(11.68 KB)
📁
did_you_mean
📄
did_you_mean.rb
(4.51 KB)
📁
digest
📄
digest.rb
(3.3 KB)
📁
erb
📄
erb.rb
(14.53 KB)
📁
error_highlight
📄
error_highlight.rb
(84 B)
📄
expect.rb
(2.19 KB)
📁
fiddle
📄
fiddle.rb
(3.67 KB)
📄
fileutils.rb
(78.8 KB)
📄
find.rb
(2.52 KB)
📁
forwardable
📄
forwardable.rb
(9.03 KB)
📁
io
📄
ipaddr.rb
(22.4 KB)
📁
json
📄
json.rb
(19.58 KB)
📁
logger
📄
logger.rb
(22.49 KB)
📄
mkmf.rb
(92.63 KB)
📄
monitor.rb
(6.97 KB)
📁
net
📁
objspace
📄
objspace.rb
(4.14 KB)
📄
open-uri.rb
(28.38 KB)
📁
open3
📄
open3.rb
(47.51 KB)
📁
openssl
📄
openssl.rb
(1.06 KB)
📄
optionparser.rb
(59 B)
📁
optparse
📄
optparse.rb
(64.17 KB)
📄
ostruct.rb
(14.22 KB)
📄
pathname.rb
(17.2 KB)
📄
pp.rb
(18.36 KB)
📄
prettyprint.rb
(15.93 KB)
📁
prism
📄
prism.rb
(2.93 KB)
📄
pstore.rb
(20.36 KB)
📁
psych
📄
psych.rb
(25.1 KB)
📁
random
📄
readline.rb
(215 B)
📁
reline
📄
reline.rb
(14.93 KB)
📄
resolv.rb
(86.88 KB)
📁
ripper
📄
ripper.rb
(2.44 KB)
📁
ruby_vm
📄
securerandom.rb
(2.28 KB)
📁
set
📄
set.rb
(25 KB)
📄
shellwords.rb
(7.53 KB)
📄
singleton.rb
(5.52 KB)
📄
socket.rb
(59.49 KB)
📁
strscan
📁
syntax_suggest
📄
syntax_suggest.rb
(74 B)
📄
tempfile.rb
(20.68 KB)
📄
time.rb
(23.96 KB)
📄
timeout.rb
(5.72 KB)
📄
tmpdir.rb
(5.62 KB)
📄
tsort.rb
(14.29 KB)
📄
un.rb
(11.17 KB)
📁
unicode_normalize
📁
uri
📄
uri.rb
(3.09 KB)
📁
vendor_ruby
📄
weakref.rb
(1.36 KB)
📁
yaml
📄
yaml.rb
(2.13 KB)
Editing: did_you_mean.rb
require_relative "did_you_mean/version" require_relative "did_you_mean/core_ext/name_error" require_relative "did_you_mean/spell_checker" require_relative 'did_you_mean/spell_checkers/name_error_checkers' require_relative 'did_you_mean/spell_checkers/method_name_checker' require_relative 'did_you_mean/spell_checkers/key_error_checker' require_relative 'did_you_mean/spell_checkers/null_checker' require_relative 'did_you_mean/spell_checkers/require_path_checker' require_relative 'did_you_mean/spell_checkers/pattern_key_name_checker' require_relative 'did_you_mean/formatter' require_relative 'did_you_mean/tree_spell_checker' # The +DidYouMean+ gem adds functionality to suggest possible method/class # names upon errors such as +NameError+ and +NoMethodError+. In Ruby 2.3 or # later, it is automatically activated during startup. # # @example # # methosd # # => NameError: undefined local variable or method `methosd' for main:Object # # Did you mean? methods # # method # # OBject # # => NameError: uninitialized constant OBject # # Did you mean? Object # # @full_name = "Yuki Nishijima" # first_name, last_name = full_name.split(" ") # # => NameError: undefined local variable or method `full_name' for main:Object # # Did you mean? @full_name # # @@full_name = "Yuki Nishijima" # @@full_anme # # => NameError: uninitialized class variable @@full_anme in Object # # Did you mean? @@full_name # # full_name = "Yuki Nishijima" # full_name.starts_with?("Y") # # => NoMethodError: undefined method `starts_with?' for "Yuki Nishijima":String # # Did you mean? start_with? # # hash = {foo: 1, bar: 2, baz: 3} # hash.fetch(:fooo) # # => KeyError: key not found: :fooo # # Did you mean? :foo # # # == Disabling +did_you_mean+ # # Occasionally, you may want to disable the +did_you_mean+ gem for e.g. # debugging issues in the error object itself. You can disable it entirely by # specifying +--disable-did_you_mean+ option to the +ruby+ command: # # $ ruby --disable-did_you_mean -e "1.zeor?" # -e:1:in `<main>': undefined method `zeor?' for 1:Integer (NameError) # # When you do not have direct access to the +ruby+ command (e.g. # +rails console+, +irb+), you could applyoptions using the +RUBYOPT+ # environment variable: # # $ RUBYOPT='--disable-did_you_mean' irb # irb:0> 1.zeor? # # => NoMethodError (undefined method `zeor?' for 1:Integer) # # # == Getting the original error message # # Sometimes, you do not want to disable the gem entirely, but need to get the # original error message without suggestions (e.g. testing). In this case, you # could use the +#original_message+ method on the error object: # # no_method_error = begin # 1.zeor? # rescue NoMethodError => error # error # end # # no_method_error.message # # => NoMethodError (undefined method `zeor?' for 1:Integer) # # Did you mean? zero? # # no_method_error.original_message # # => NoMethodError (undefined method `zeor?' for 1:Integer) # module DidYouMean # Map of error types and spell checker objects. @spell_checkers = Hash.new(NullChecker) # Returns a sharable hash map of error types and spell checker objects. def self.spell_checkers @spell_checkers end # Adds +DidYouMean+ functionality to an error using a given spell checker def self.correct_error(error_class, spell_checker) if defined?(Ractor) new_mapping = { **@spell_checkers, error_class.to_s => spell_checker } new_mapping.default = NullChecker @spell_checkers = Ractor.make_shareable(new_mapping) else spell_checkers[error_class.to_s] = spell_checker end error_class.prepend(Correctable) if error_class.is_a?(Class) && !(error_class < Correctable) end correct_error NameError, NameErrorCheckers correct_error KeyError, KeyErrorChecker correct_error NoMethodError, MethodNameChecker correct_error LoadError, RequirePathChecker if RUBY_VERSION >= '2.8.0' correct_error NoMatchingPatternKeyError, PatternKeyNameChecker if defined?(::NoMatchingPatternKeyError) # Returns the currently set formatter. By default, it is set to +DidYouMean::Formatter+. def self.formatter if defined?(Ractor) Ractor.current[:__did_you_mean_formatter__] || Formatter else Formatter end end # Updates the primary formatter used to format the suggestions. def self.formatter=(formatter) if defined?(Ractor) Ractor.current[:__did_you_mean_formatter__] = formatter end end end
Upload File
Create Folder