summaryrefslogtreecommitdiff
path: root/config/initializers/gollum.rb
blob: 1ebe3c7a74230aae9031472c4581029aae129aca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Gollum
  GIT_ADAPTER = "rugged".freeze
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