2017-07-24 16:20:53 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-05-27 15:10:24 -04:00
|
|
|
module ActionDispatch
|
|
|
|
module Routing
|
|
|
|
class Endpoint # :nodoc:
|
|
|
|
def dispatcher?; false; end
|
|
|
|
def redirect?; false; end
|
|
|
|
def matches?(req); true; end
|
|
|
|
def app; self; end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|