class Ronn::Index

def initialize(path, &bk)

def initialize(path, &bk)
  @path = path
  @references = []
  @manuals    = {}
  if block_given?
    read! yield
  elsif exist?
    read! File.read(path)
  end
end