2016-06-02 11:05:42 +05:30
|
|
|
module Gollum
|
2017-08-17 22:00:37 +05:30
|
|
|
GIT_ADAPTER = "rugged".freeze
|
2016-06-02 11:05:42 +05:30
|
|
|
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
|