Module: Guard::Falcon::Plugin::Environment
- Includes:
- Falcon::Environment::Rackup, Falcon::Environment::Server
- Defined in:
- lib/guard/falcon/plugin.rb
Instance Method Summary collapse
-
#endpoint ⇒ Object
The upstream endpoint that will handle incoming requests.
Instance Method Details
#endpoint ⇒ Object
The upstream endpoint that will handle incoming requests.
25 26 27 28 29 30 31 |
# File 'lib/guard/falcon/plugin.rb', line 25 def endpoint ::Falcon::Endpoint.parse(url).with( reuse_address: true, # reuse_port: true, timeout: timeout, ) end |