module RHosts

Public Class Methods

config() click to toggle source
# File lib/rhosts.rb, line 14
def self.config
  @config ||= RHosts::Configuration.new
end
configure() { |config| ... } click to toggle source
# File lib/rhosts.rb, line 18
def self.configure
  yield config if block_given?
end
root() click to toggle source
# File lib/rhosts.rb, line 10
def self.root
  @root ||= File.dirname(__FILE__)
end