class Monit::HTTPD
Attributes
address[R]
port[R]
ssl[R]
Public Class Methods
new(options = {})
click to toggle source
# File lib/monit/httpd.rb, line 6 def initialize(options = {}) @address = options["address"] @port = options["port"] @ssl = options["ssl"] == "1" ? true : false end