Class: ActionDispatch::Journey::Nodes::Symbol
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
|
|
Instance Chain:
|
|
Inherits: |
ActionDispatch::Journey::Nodes::Terminal
|
Defined in: | actionpack/lib/action_dispatch/journey/nodes/node.rb |
Constant Summary
-
DEFAULT_EXP =
# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 142/[^.\/?]+/
-
GREEDY_EXP =
# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 143/(.+)/
Class Method Summary
Instance Attribute Summary
- #name readonly
- #regexp (also: #symbol) rw
-
#symbol
readonly
Alias for #regexp.
- #symbol? ⇒ Boolean readonly
Terminal
- Inherited
Node
- Inherited
::Enumerable
- Included
#many? | Returns |
Instance Method Summary
Terminal
- Inherited
Node
- Inherited
::Enumerable
- Included
#compact_blank | Returns a new |
#exclude? | The negative of the |
#excluding | Returns a copy of the enumerable excluding the specified elements. |
#in_order_of | Returns a new |
#including | Returns a new array that includes the passed elements. |
#index_by | Convert an enumerable to a hash, using the block result as the key and the element as the value. |
#index_with | Convert an enumerable to a hash, using the element as the key and the block result as the value. |
#maximum | Calculates the maximum from the extracted elements. |
#minimum | Calculates the minimum from the extracted elements. |
#pick | Extract the given key from the first element in the enumerable. |
#pluck | Extract the given key from each element in the enumerable. |
#sole | Returns the sole item in the enumerable. |
#without | Alias for Enumerable#excluding. |
#as_json |
::ActiveSupport::EnumerableCoreExt::Constants
- Included
Constructor Details
.new(left, regexp = DEFAULT_EXP) ⇒ Symbol
# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 144
def initialize(left, regexp = DEFAULT_EXP) super(left) @regexp = regexp @name = -left.tr("*:", "") end
Instance Attribute Details
#name (readonly)
[ GitHub ]# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 140
attr_reader :name
#regexp (rw) Also known as: #symbol
[ GitHub ]# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 138
attr_accessor :regexp
#symbol (readonly)
Alias for #regexp.
# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 139
alias :symbol :regexp
#symbol? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 151
def symbol?; true; end
Instance Method Details
#type
[ GitHub ]# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 150
def type; :SYMBOL; end