class RSpec::Httpd::Config

Attributes

command[RW]
host[RW]
logger[RW]
port[RW]

Public Class Methods

new() click to toggle source
# File lib/rspec/httpd/config.rb, line 7
def initialize
  self.host = "127.0.0.1"
  self.port = 12_345
  self.command = nil
  self.logger = Logger.new(STDERR).tap { |logger| logger.level = Logger::INFO }
end