gollum 2.2.8 → 2.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +4 -1
- data/gollum.gemspec +1 -1
- data/lib/gollum.rb +1 -1
- data/lib/gollum/markup.rb +2 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -413,7 +413,10 @@ By default, internal wiki links are all absolute from the root. To specify a dif
|
|
|
413
413
|
|
|
414
414
|
wiki = Gollum::Wiki.new("my-gollum-repo.git", :base_path => "/wiki")
|
|
415
415
|
|
|
416
|
-
Note that base_path just modifies the links. To map gollum to a non-root location
|
|
416
|
+
Note that base_path just modifies the links. To map gollum to a non-root location:
|
|
417
|
+
|
|
418
|
+
- Use the gollum binary: `gollum path/to/wiki --base-path mywiki`
|
|
419
|
+
- Define config.ru with `map`. See [#532](https://github.com/github/gollum/issues/532) for an example.
|
|
417
420
|
|
|
418
421
|
> :base_path - String base path for all Wiki links.
|
|
419
422
|
>
|
data/gollum.gemspec
CHANGED
data/lib/gollum.rb
CHANGED
|
@@ -23,7 +23,7 @@ require File.expand_path('../gollum/web_sequence_diagram', __FILE__)
|
|
|
23
23
|
require File.expand_path('../gollum/frontend/uri_encode_component', __FILE__)
|
|
24
24
|
|
|
25
25
|
module Gollum
|
|
26
|
-
VERSION = '2.2.
|
|
26
|
+
VERSION = '2.2.9'
|
|
27
27
|
|
|
28
28
|
def self.assets_path
|
|
29
29
|
::File.expand_path('gollum/frontend/public', ::File.dirname(__FILE__))
|
data/lib/gollum/markup.rb
CHANGED