Sha256: 257650910302b764e2d29e2308cef0802813c98ce63422baea8ef1f56e578f74
Contents?: true
Size: 361 Bytes
Versions: 16
Compression:
Stored size: 361 Bytes
Contents
# coding: utf-8 # frozen_string_literal: true require 'rack/handler/puma' require 'stealth/commands/command' module Stealth module Commands class Server < Command def initialize(options) super(options) Stealth.load_environment end def start Rack::Handler::Puma.run(Stealth::Server) end end end end
Version data entries
16 entries across 16 versions & 1 rubygems