gitlab-org--gitlab-foss/config/initializers/gollum.rb

14 lines
215 B
Ruby
Raw Normal View History

2016-02-28 12:11:43 +00:00
module Gollum
2017-02-21 23:32:18 +00:00
GIT_ADAPTER = "rugged".freeze
2016-02-28 12:11:43 +00: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