soywiki 0.4.1 → 0.4.2
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/lib/soywiki.rb +3 -3
- metadata +2 -2
data/lib/soywiki.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'string_ext'
|
2
2
|
|
3
3
|
module Soywiki
|
4
|
-
VERSION = '0.4.
|
4
|
+
VERSION = '0.4.2'
|
5
5
|
WIKI_WORD = /\b([a-z][\w_]+\.)?[A-Z][a-z]+[A-Z]\w*\b/
|
6
6
|
HYPERLINK = %r|\bhttps?://[^ >)\n\]]+|
|
7
7
|
|
@@ -12,7 +12,7 @@ module Soywiki
|
|
12
12
|
puts
|
13
13
|
puts <<END
|
14
14
|
---
|
15
|
-
Usage: soywiki
|
15
|
+
Usage: soywiki
|
16
16
|
|
17
17
|
Run the command in a directory you've made to contain soywiki files.
|
18
18
|
|
@@ -27,7 +27,7 @@ END
|
|
27
27
|
else
|
28
28
|
vim = ENV['SOYWIKI_VIM'] || 'vim'
|
29
29
|
vimscript = File.expand_path("../soywiki.vim", __FILE__)
|
30
|
-
vim_command = "#{vim} -S #{vimscript}
|
30
|
+
vim_command = "#{vim} -S #{vimscript}"
|
31
31
|
exec vim_command
|
32
32
|
end
|
33
33
|
end
|