class ServerHealthCheckRails::Config

Public Class Methods

method_missing(method, *args, &block) click to toggle source
# File lib/server_health_check_rails.rb, line 18
def method_missing(method, *args, &block)
  ServerHealthCheckRack::Config.send(method, *args, &block)
end
respond_to_missing?(method, include_private = false) click to toggle source
# File lib/server_health_check_rails.rb, line 22
def respond_to_missing?(method, include_private = false)
  ServerHealthCheckRack::Config.respond_to?(method)
end