JezK
Edit File: speed.rb
# frozen-string-literal: true require 'benchmark/ips' require 'did_you_mean/jaro_winkler' Benchmark.ips do |x| x.report "original" do DidYouMean::Jaro.distance "user_signed_in?", "user_logged_in?" end # This #proposed method is not defined. Write your own method using this # name so we can reliably run the benchmark and measure the difference. # # Alternatively, you could directly update the #distance method and remove # this completely. # # x.report "proposed" do # DidYouMean::Jaro.proposed "user_signed_in?", "user_logged_in?" # end x.compare! end