Class: ActionDispatch::Routing::RouteWrapper

Inherits:
SimpleDelegator
  • Object
show all
Defined in:
actionpack/lib/action_dispatch/routing/inspector.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#actionObject



54
55
56
# File 'actionpack/lib/action_dispatch/routing/inspector.rb', line 54

def action
  parts.include?(:action) ? ":action" : requirements[:action]
end

#constraintsObject



26
27
28
# File 'actionpack/lib/action_dispatch/routing/inspector.rb', line 26

def constraints
  requirements.except(:controller, :action)
end

#controllerObject



50
51
52
# File 'actionpack/lib/action_dispatch/routing/inspector.rb', line 50

def controller
  parts.include?(:controller) ? ":controller" : requirements[:controller]
end

#endpointObject



15
16
17
18
19
20
21
22
23
24
# File 'actionpack/lib/action_dispatch/routing/inspector.rb', line 15

def endpoint
  case
  when app.dispatcher?
    "#{controller}##{action}"
  when rack_app.is_a?(Proc)
    "Inline handler (Proc/Lambda)"
  else
    rack_app.inspect
  end
end

#engine?Boolean

Returns:

  • (Boolean)


62
63
64
# File 'actionpack/lib/action_dispatch/routing/inspector.rb', line 62

def engine?
  app.engine?
end

#internal?Boolean

Returns:

  • (Boolean)


58
59
60
# File 'actionpack/lib/action_dispatch/routing/inspector.rb', line 58

def internal?
  internal
end

#matches_filter?(filter, value) ⇒ Boolean

Returns:

  • (Boolean)


9
10
11
12
13
# File 'actionpack/lib/action_dispatch/routing/inspector.rb', line 9

def matches_filter?(filter, value)
  return __getobj__.path.match(value) if filter == :exact_path_match

  value.match?(public_send(filter))
end

#nameObject



38
39
40
# File 'actionpack/lib/action_dispatch/routing/inspector.rb', line 38

def name
  super.to_s
end

#pathObject



34
35
36
# File 'actionpack/lib/action_dispatch/routing/inspector.rb', line 34

def path
  super.spec.to_s
end

#rack_appObject



30
31
32
# File 'actionpack/lib/action_dispatch/routing/inspector.rb', line 30

def rack_app
  app.rack_app
end

#reqsObject



42
43
44
45
46
47
48
# File 'actionpack/lib/action_dispatch/routing/inspector.rb', line 42

def reqs
  @reqs ||= begin
    reqs = endpoint
    reqs += " #{constraints}" unless constraints.empty?
    reqs
  end
end