soywiki 0.7.4 → 0.7.5
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/README.markdown +3 -2
- data/lib/soywiki.rb +1 -1
- data/soywiki.gemspec +2 -2
- 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`
|
|
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
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.
|
|
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
|
|
13
|
+
date: 2011-07-05 00:00:00 -04:00
|
|
14
14
|
default_executable:
|
|
15
|
-
dependencies:
|
|
16
|
-
|
|
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
|