blob: 703f24f93b27e4fae2dfc99379e1bb2d34396d46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
module Gollum
GIT_ADAPTER = "rugged"
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
|