class Attr::Gather::Filters::Filtering
Information about a filtered item
@!attribute [r] path
@return [Hash] path of the filtered key
@!attribute [r] reason
@return [String] why the item was filtered
@!attribute [r] input
@return [String] input value that was filtered
Attributes
input[R]
path[R]
reason[R]
Public Class Methods
new(path, reason, input)
click to toggle source
# File lib/attr/gather/filters/filtering.rb, line 19 def initialize(path, reason, input) @path = path @reason = reason @input = input end