class Blogr::Configuration

Public Class Methods

load(path) click to toggle source
# File lib/blogr/configuration.rb, line 13
def self.load(path)
  if File.exist?(path)
    require path
  else
    raise ConfigurationError, "Blogr configuration file not found at #{path}"
  end
end