Methods

Class Public methods

new(error)

📝 Source code
# File actionpack/lib/action_controller/metal/strong_parameters.rb, line 31
      def initialize(error)
        @error = error
      end
🔎 See on GitHub

Instance Public methods

corrections()

📝 Source code
# File actionpack/lib/action_controller/metal/strong_parameters.rb, line 35
      def corrections
        if @error.param && @error.keys
          maybe_these = @error.keys

          maybe_these.sort_by { |n|
            DidYouMean::Jaro.distance(@error.param.to_s, n)
          }.reverse.first(4)
        else
          []
        end
      end
🔎 See on GitHub