soywiki 0.1.9 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
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, :build_webpage]
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
@@ -1,7 +1,7 @@
1
1
  require 'string_ext'
2
2
 
3
3
  module Soywiki
4
- VERSION = '0.1.9'
4
+ VERSION = '0.2.0'
5
5
  WIKI_WORD = /\b([a-z][\w_]+\.)?[A-Z][a-z]+[A-Z]\w*\b/
6
6
 
7
7
  def self.run
data/lib/soywiki.vim CHANGED
@@ -516,7 +516,6 @@ func! s:expand(seamless, vertical)
516
516
  silent! put =res
517
517
  silent! 1delete
518
518
  silent! normal 1G
519
- call s:highlight_wikiwords()
520
519
  redraw
521
520
  echom "Expanded " . (a:seamless == 0 ? 'seamfully' : 'seamlessly') . "."
522
521
  endfunc
metadata CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 0
7
- - 1
8
- - 9
9
- version: 0.1.9
7
+ - 2
8
+ - 0
9
+ version: 0.2.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi