WikiCreole 0.1.0 → 0.1.1
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/Changelog +5 -0
- data/Rakefile +17 -0
- data/lib/wiki_creole.rb +3 -1
- data/test/test_all.rb +895 -0
- data/test/test_amp.html +3 -0
- data/test/test_amp.markup +2 -0
- data/test/test_block.html +131 -0
- data/test/test_block.markup +69 -0
- data/test/test_escape.html +33 -0
- data/test/test_escape.markup +35 -0
- data/test/test_inline.html +67 -0
- data/test/test_inline.markup +48 -0
- data/test/test_jsp_wiki.html +157 -0
- data/test/test_jsp_wiki.markup +100 -0
- data/test/test_specialchars.html +29 -0
- data/test/test_specialchars.markup +18 -0
- metadata +18 -4
data/Changelog
CHANGED
data/Rakefile
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'rake'
|
2
|
+
require 'rake/testtask'
|
3
|
+
|
4
|
+
desc "Default Task"
|
5
|
+
task :default => :test_all
|
6
|
+
|
7
|
+
desc "Test Task"
|
8
|
+
task :test => :test_all
|
9
|
+
|
10
|
+
desc "Check - same as test_all"
|
11
|
+
task :check => :test_all
|
12
|
+
|
13
|
+
Rake::TestTask.new(:test_all) do |t|
|
14
|
+
t.libs << 'lib'
|
15
|
+
t.warning = true
|
16
|
+
t.test_files = FileList['test/test_all.rb']
|
17
|
+
end
|
data/lib/wiki_creole.rb
CHANGED
@@ -4,7 +4,9 @@
|
|
4
4
|
#
|
5
5
|
# Author:: Gordon McCreight (mailto:wikicreole.to.gordon@mccreight.com)
|
6
6
|
# Copyright:: Copyright (c) 2008 Gordon McCreight
|
7
|
-
# License:: Distributes under the same terms as Ruby (see the
|
7
|
+
# License:: Distributes under the same terms as Ruby (see the LICENSE file)
|
8
|
+
# Version:: 0.1.1
|
9
|
+
# Date:: 2008-12-12
|
8
10
|
#
|
9
11
|
# == Synopsis
|
10
12
|
# Most likely you'll just want to do:
|