soywiki 0.1.9 → 0.2.0
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/Rakefile +2 -2
- data/bin/soywiki-expand +1 -1
- data/lib/soywiki.rb +1 -1
- data/lib/soywiki.vim +0 -1
- metadata +3 -3
data/Rakefile
CHANGED
@@ -11,7 +11,7 @@ Bundler::GemHelper.install_tasks
|
|
11
11
|
|
12
12
|
|
13
13
|
desc "release and build and push new website"
|
14
|
-
task :push => [:release, :
|
14
|
+
task :push => [:release, :web]
|
15
15
|
|
16
16
|
desc "Bumps version number up one and git commits"
|
17
17
|
task :bump do
|
@@ -30,7 +30,7 @@ end
|
|
30
30
|
|
31
31
|
desc "build and push website"
|
32
32
|
task :web => :build_webpage do
|
33
|
-
"Building and pushing website"
|
33
|
+
puts "Building and pushing website"
|
34
34
|
`scp website/soywiki.html zoe2@instantwatcher.com:~/danielchoi.com/public/software/`
|
35
35
|
end
|
36
36
|
|
data/bin/soywiki-expand
CHANGED
@@ -6,7 +6,7 @@ require 'soywiki'
|
|
6
6
|
# this is different from Soywiki::WIKI_WORD in that it requires ^\s* before the
|
7
7
|
# first letter
|
8
8
|
|
9
|
-
WIKI_LINK_PATTERN = /^\s*([a-z]\w+\.)?[A-Z][a-z]+[A-Z]\w
|
9
|
+
WIKI_LINK_PATTERN = /^\s*([a-z]\w+\.)?[A-Z][a-z]+[A-Z]\w*\s*$/
|
10
10
|
|
11
11
|
PROCESSED_FILES = []
|
12
12
|
|
data/lib/soywiki.rb
CHANGED
data/lib/soywiki.vim
CHANGED