mediacloth 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/test/parser.rb CHANGED
@@ -16,7 +16,6 @@ class Parser_Test < Test::Unit::TestCase
16
16
  ast = parser.parse(input)
17
17
  walker = DebugWalker.new
18
18
  walker.parse(ast)
19
- puts walker.tree
20
19
  }
21
20
  end
22
21
 
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.8.11
2
+ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: mediacloth
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.2
7
- date: 2006-08-22 00:00:00 +03:00
6
+ version: 0.0.3
7
+ date: 2007-10-31 00:00:00 +02:00
8
8
  summary: A MediaWiki syntax parser and HTML generator.
9
9
  require_paths:
10
10
  - lib
@@ -25,15 +25,18 @@ required_ruby_version: !ruby/object:Gem::Version::Requirement
25
25
  platform: ruby
26
26
  signing_key:
27
27
  cert_chain:
28
+ post_install_message:
28
29
  authors:
29
30
  - Pluron Inc.
30
31
  files:
31
32
  - lib/mediacloth
32
33
  - lib/mediacloth.rb
33
34
  - lib/mediacloth/mediawikihtmlgenerator.rb
35
+ - lib/mediacloth/mediawikilexer.rb~
34
36
  - lib/mediacloth/mediawikiparams.rb
35
37
  - lib/mediacloth/mediawikiwalker.rb
36
38
  - lib/mediacloth/mediawikiparser.rb
39
+ - lib/mediacloth/mediawikiparser.y~
37
40
  - lib/mediacloth/mediawikiparser.y
38
41
  - lib/mediacloth/mediawikilexer.rb
39
42
  - lib/mediacloth/mediawikiast.rb
@@ -52,6 +55,7 @@ files:
52
55
  - test/data/lex6
53
56
  - test/data/lex7
54
57
  - test/data/lex8
58
+ - test/data/lex9
55
59
  - test/data/result1
56
60
  - test/data/html1
57
61
  - test/data/html2
@@ -61,6 +65,9 @@ files:
61
65
  - test/data/html6
62
66
  - test/data/html7
63
67
  - test/data/html8
68
+ - test/data/html9
69
+ - test/data/lex10
70
+ - test/data/html10
64
71
  - test/data/input1
65
72
  - test/data/input2
66
73
  - test/data/input3
@@ -69,6 +76,10 @@ files:
69
76
  - test/data/input6
70
77
  - test/data/input7
71
78
  - test/data/input8
79
+ - test/data/input9
80
+ - test/data/input10
81
+ - test/dataproducers/html.rb~
82
+ - test/dataproducers/lex.rb~
72
83
  - test/dataproducers/lex.rb
73
84
  - test/dataproducers/html.rb
74
85
  - README