mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 21:56:19 +10:00
14 lines
208 B
Ruby
14 lines
208 B
Ruby
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
|