46 lines
1.3 KiB
Ruby
46 lines
1.3 KiB
Ruby
# stdlib
|
|
require 'digest/md5'
|
|
require 'ostruct'
|
|
|
|
# external
|
|
require 'grit'
|
|
require 'github/markup'
|
|
require 'sanitize'
|
|
|
|
# internal
|
|
require File.expand_path('../gollum/git_access', __FILE__)
|
|
require File.expand_path('../gollum/committer', __FILE__)
|
|
require File.expand_path('../gollum/pagination', __FILE__)
|
|
require File.expand_path('../gollum/blob_entry', __FILE__)
|
|
require File.expand_path('../gollum/wiki', __FILE__)
|
|
require File.expand_path('../gollum/page', __FILE__)
|
|
require File.expand_path('../gollum/file', __FILE__)
|
|
require File.expand_path('../gollum/markup', __FILE__)
|
|
require File.expand_path('../gollum/sanitization', __FILE__)
|
|
require File.expand_path('../gollum/tex', __FILE__)
|
|
require File.expand_path('../gollum/web_sequence_diagram', __FILE__)
|
|
|
|
module Gollum
|
|
VERSION = '2.0.0'
|
|
|
|
def self.assets_path
|
|
::File.expand_path('gollum/frontend/public', ::File.dirname(__FILE__))
|
|
end
|
|
|
|
class Error < StandardError; end
|
|
|
|
class DuplicatePageError < Error
|
|
attr_accessor :dir
|
|
attr_accessor :existing_path
|
|
attr_accessor :attempted_path
|
|
|
|
def initialize(dir, existing, attempted, message = nil)
|
|
@dir = dir
|
|
@existing_path = existing
|
|
@attempted_path = attempted
|
|
super(message || "Cannot write #{@dir}/#{@attempted_path}, found #{@dir}/#{@existing_path}.")
|
|
end
|
|
end
|
|
end
|
|
|