Class: FReCon::Server
- Includes:
- Routes
- Defined in:
- lib/frecon/server.rb
Overview
Public: The Sinatra web server.
Class Method Summary collapse
-
.start(**keyword_arguments) ⇒ Object
Public: Start the Server.
Methods included from Routes
attribute_routes, included, resource_routes
Class Method Details
.start(**keyword_arguments) ⇒ Object
Public: Start the Server.
keyword_arguments - The Hash of arguments to use.
:configuration - The Configuration to use when
setting up the server.
Returns the result of starting the server.
34 35 36 |
# File 'lib/frecon/server.rb', line 34 def self.start(**keyword_arguments) run!(**keyword_arguments) end |