Class: FilterColumnPlaceholder
- Inherits:
-
Object
- Object
- FilterColumnPlaceholder
- Defined in:
- lib/full_search/index.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name:) ⇒ FilterColumnPlaceholder
constructor
A new instance of FilterColumnPlaceholder.
- #unindexed? ⇒ Boolean
Constructor Details
#initialize(name:) ⇒ FilterColumnPlaceholder
Returns a new instance of FilterColumnPlaceholder.
5 6 7 |
# File 'lib/full_search/index.rb', line 5 def initialize(name:) @name = name.to_s end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
4 5 6 |
# File 'lib/full_search/index.rb', line 4 def name @name end |
Instance Method Details
#unindexed? ⇒ Boolean
9 10 11 |
# File 'lib/full_search/index.rb', line 9 def unindexed? true end |