Sha256: c42ab73e43e6cabbe00fcd06101f4ddb4731f8fc9a9290f4c7919d1bbd200430
Contents?: true
Size: 242 Bytes
Versions: 9
Compression:
Stored size: 242 Bytes
Contents
module Rail class Server < Rack::Server def initialize(options = nil) options = { Port: 3000, environment: Rail.env, config: 'config.ru' }.merge(options || {}) super(options) end end end
Version data entries
9 entries across 9 versions & 1 rubygems