Flowdock
method

inspection_filter

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: Core
inspection_filter() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/core.rb, line 589
      def inspection_filter
        @inspection_filter ||= begin
          mask = DelegateClass(::String).new(ActiveSupport::ParameterFilter::FILTERED)
          def mask.pretty_print(pp)
            pp.text __getobj__
          end
          ActiveSupport::ParameterFilter.new(self.class.filter_attributes, mask: mask)
        end
      end
Register or log in to add new notes.