2016-02-28 07:11:43 -05:00
|
|
|
module Gollum
|
2017-02-21 18:32:18 -05:00
|
|
|
GIT_ADAPTER = "rugged".freeze
|
2016-02-28 07:11:43 -05:00
|
|
|
end
|
|
|
|
require "gollum-lib"
|
|
|
|
|
|
|
|
module Gollum
|
|
|
|
class Committer
|
|
|
|
# Patch for UTF-8 path
|
|
|
|
def method_missing(name, *args)
|
|
|
|
index.send(name, *args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|