soywiki 0.7.4 → 0.7.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.markdown +3 -2
  2. data/lib/soywiki.rb +1 -1
  3. data/soywiki.gemspec +2 -2
  4. metadata +4 -25
data/README.markdown CHANGED
@@ -343,8 +343,7 @@ your search to the current namespace.
343
343
  Vim will load any matches in the quickfix list window. If there are
344
344
  matches, you can use `:cn` and `:cp` to go from match to match, `:cl` to
345
345
  list the matches, and `:cc [item number]` to see a particular match ln
346
- the list. See `:help quickfix` to see the list of matches. for more
347
- QuickFix commands.
346
+ the list. See `:help quickfix` or more QuickFix commands.
348
347
 
349
348
  Examples:
350
349
 
@@ -450,6 +449,8 @@ Aside from WikiWords, SoyWiki uses no markup system whatsoever. You can
450
449
  write your content in whatever markup system you want, or no markup
451
450
  system at all.
452
451
 
452
+ Please note that you need `haml` and `rdiscount` install on your system to
453
+ export to HTML.
453
454
  By default, the HTML export feature just wraps your content in
454
455
  <pre> tags after turning your WikiWords into hyperlinks.
455
456
 
data/lib/soywiki.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'string_ext'
2
2
 
3
3
  module Soywiki
4
- VERSION = '0.7.4'
4
+ VERSION = '0.7.5'
5
5
  WIKI_WORD = /\b([a-z][\w_]+\.)?[A-Z][a-z]+[A-Z]\w*\b/
6
6
  HYPERLINK = %r|\bhttps?://[^ >)\n\]]+|
7
7
 
data/soywiki.gemspec CHANGED
@@ -19,6 +19,6 @@ Gem::Specification.new do |s|
19
19
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
20
  s.require_paths = ["lib"]
21
21
 
22
- s.add_dependency 'haml'
23
- s.add_dependency 'rdiscount'
22
+ #s.add_dependency 'haml'
23
+ #s.add_dependency 'rdiscount'
24
24
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: soywiki
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.7.4
5
+ version: 0.7.5
6
6
  platform: ruby
7
7
  authors:
8
8
  - Daniel Choi
@@ -10,31 +10,10 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-05-09 00:00:00 -04:00
13
+ date: 2011-07-05 00:00:00 -04:00
14
14
  default_executable:
15
- dependencies:
16
- - !ruby/object:Gem::Dependency
17
- name: haml
18
- prerelease: false
19
- requirement: &id001 !ruby/object:Gem::Requirement
20
- none: false
21
- requirements:
22
- - - ">="
23
- - !ruby/object:Gem::Version
24
- version: "0"
25
- type: :runtime
26
- version_requirements: *id001
27
- - !ruby/object:Gem::Dependency
28
- name: rdiscount
29
- prerelease: false
30
- requirement: &id002 !ruby/object:Gem::Requirement
31
- none: false
32
- requirements:
33
- - - ">="
34
- - !ruby/object:Gem::Version
35
- version: "0"
36
- type: :runtime
37
- version_requirements: *id002
15
+ dependencies: []
16
+
38
17
  description: A personal and collaborative wiki for Vim users
39
18
  email:
40
19
  - dhchoi@gmail.com