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.
Files changed (2) hide show
  1. data/lib/soywiki.rb +3 -3
  2. 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.1'
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 [wiki file]
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} #{ARGV.first}"
30
+ vim_command = "#{vim} -S #{vimscript}"
31
31
  exec vim_command
32
32
  end
33
33
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 4
8
- - 1
9
- version: 0.4.1
8
+ - 2
9
+ version: 0.4.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi