Class: Ransack::Name
- Inherits:
-
String
- Object
- String
- Ransack::Name
- Defined in:
- lib/ransack/naming.rb
Instance Attribute Summary collapse
-
#collection ⇒ Object
(also: #cache_key)
readonly
Returns the value of attribute collection.
-
#element ⇒ Object
readonly
Returns the value of attribute element.
-
#human ⇒ Object
readonly
Returns the value of attribute human.
-
#i18n_key ⇒ Object
readonly
Returns the value of attribute i18n_key.
-
#param_key ⇒ Object
readonly
Returns the value of attribute param_key.
-
#partial_path ⇒ Object
readonly
Returns the value of attribute partial_path.
-
#plural ⇒ Object
readonly
Returns the value of attribute plural.
-
#route_key ⇒ Object
readonly
Returns the value of attribute route_key.
-
#singular ⇒ Object
readonly
Returns the value of attribute singular.
Instance Method Summary collapse
-
#initialize ⇒ Name
constructor
A new instance of Name.
Constructor Details
#initialize ⇒ Name
Returns a new instance of Name.
29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/ransack/naming.rb', line 29 def initialize super("Search") @singular = "search".freeze @plural = "searches".freeze @element = "search".freeze @human = "Search".freeze @collection = "ransack/searches".freeze @partial_path = "#{@collection}/#{@element}".freeze @param_key = "q".freeze @route_key = "searches".freeze @i18n_key = :ransack end |
Instance Attribute Details
#collection ⇒ Object (readonly) Also known as: cache_key
Returns the value of attribute collection.
26 27 28 |
# File 'lib/ransack/naming.rb', line 26 def collection @collection end |
#element ⇒ Object (readonly)
Returns the value of attribute element.
26 27 28 |
# File 'lib/ransack/naming.rb', line 26 def element @element end |
#human ⇒ Object (readonly)
Returns the value of attribute human.
26 27 28 |
# File 'lib/ransack/naming.rb', line 26 def human @human end |
#i18n_key ⇒ Object (readonly)
Returns the value of attribute i18n_key.
26 27 28 |
# File 'lib/ransack/naming.rb', line 26 def i18n_key @i18n_key end |
#param_key ⇒ Object (readonly)
Returns the value of attribute param_key.
26 27 28 |
# File 'lib/ransack/naming.rb', line 26 def param_key @param_key end |
#partial_path ⇒ Object (readonly)
Returns the value of attribute partial_path.
26 27 28 |
# File 'lib/ransack/naming.rb', line 26 def partial_path @partial_path end |
#plural ⇒ Object (readonly)
Returns the value of attribute plural.
26 27 28 |
# File 'lib/ransack/naming.rb', line 26 def plural @plural end |
#route_key ⇒ Object (readonly)
Returns the value of attribute route_key.
26 27 28 |
# File 'lib/ransack/naming.rb', line 26 def route_key @route_key end |
#singular ⇒ Object (readonly)
Returns the value of attribute singular.
26 27 28 |
# File 'lib/ransack/naming.rb', line 26 def singular @singular end |