Class: ElasticRansack::Name

Inherits:
String
  • Object
show all
Defined in:
lib/elastic_ransack/naming.rb

Constant Summary

Constants inherited from String

String::LUCENE_ESCAPE_REGEX

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from String

#lucene_escape

Constructor Details

#initializeName

Returns a new instance of Name.



29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/elastic_ransack/naming.rb', line 29

def initialize
  super('Search')
  @singular = 'search'.freeze
  @plural = 'searches'.freeze
  @element = 'search'.freeze
  @human = 'Search'.freeze
  @collection = 'elastic_ransack/searches'.freeze
  @partial_path = "#{@collection}/#{@element}".freeze
  @param_key = 'q'.freeze
  @route_key = 'searches'.freeze
  @i18n_key = :elastic_ransack
end

Instance Attribute Details

#collectionObject (readonly) Also known as: cache_key

Returns the value of attribute collection.



26
27
28
# File 'lib/elastic_ransack/naming.rb', line 26

def collection
  @collection
end

#elementObject (readonly)

Returns the value of attribute element.



26
27
28
# File 'lib/elastic_ransack/naming.rb', line 26

def element
  @element
end

#humanObject (readonly)

Returns the value of attribute human.



26
27
28
# File 'lib/elastic_ransack/naming.rb', line 26

def human
  @human
end

#i18n_keyObject (readonly)

Returns the value of attribute i18n_key.



26
27
28
# File 'lib/elastic_ransack/naming.rb', line 26

def i18n_key
  @i18n_key
end

#param_keyObject (readonly)

Returns the value of attribute param_key.



26
27
28
# File 'lib/elastic_ransack/naming.rb', line 26

def param_key
  @param_key
end

#partial_pathObject (readonly)

Returns the value of attribute partial_path.



26
27
28
# File 'lib/elastic_ransack/naming.rb', line 26

def partial_path
  @partial_path
end

#pluralObject (readonly)

Returns the value of attribute plural.



26
27
28
# File 'lib/elastic_ransack/naming.rb', line 26

def plural
  @plural
end

#route_keyObject (readonly)

Returns the value of attribute route_key.



26
27
28
# File 'lib/elastic_ransack/naming.rb', line 26

def route_key
  @route_key
end

#singularObject (readonly)

Returns the value of attribute singular.



26
27
28
# File 'lib/elastic_ransack/naming.rb', line 26

def singular
  @singular
end