require 'stoor/logger' require 'stoor/config' require 'stoor/github_auth' require 'stoor/git_config' require 'stoor/read_only' require 'stoor/transform_content' require 'stoor/views/layout' require 'stoor/views/logout' require 'stoor/views/sorry' # In at least gollum 2.4.13 and later: # https://github.com/gollum/gollum/blob/master/lib/gollum/uri_encode_component.rb#L36 # seems to get scoped funny, and I see this: # NoMethodError - undefined method `URIEncodeComponent' for #: # This fixes it. if RUBY_VERSION == '1.9.2' def encodeURIComponent(componentString) ::URI::URIEncodeComponent(componentString) end end