hparser 0.1.0
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 +17 -0
- data/lib/hparser/block/all.rb +1 -0
- data/lib/hparser/block/collectable.rb +7 -0
- data/lib/hparser/block/head.rb +45 -0
- data/lib/hparser/block/list.rb +101 -0
- data/lib/hparser/block/p.rb +59 -0
- data/lib/hparser/block/pair.rb +52 -0
- data/lib/hparser/block/pre.rb +15 -0
- data/lib/hparser/block/quote.rb +11 -0
- data/lib/hparser/block/super_pre.rb +19 -0
- data/lib/hparser/block/table.rb +71 -0
- data/lib/hparser/html.rb +144 -0
- data/lib/hparser/inline/all.rb +1 -0
- data/lib/hparser/inline/collectable.rb +6 -0
- data/lib/hparser/inline/hatena_id.rb +30 -0
- data/lib/hparser/inline/parser.rb +48 -0
- data/lib/hparser/inline/text.rb +35 -0
- data/lib/hparser/inline/url.rb +26 -0
- data/lib/hparser/parser.rb +70 -0
- data/lib/hparser/util/line_scanner.rb +43 -0
- data/lib/hparser/util/parser.rb +74 -0
- data/lib/hparser.rb +8 -0
- data/test/test_block.rb +75 -0
- data/test/test_head.rb +34 -0
- data/test/test_html.rb +54 -0
- data/test/test_id.rb +22 -0
- data/test/test_inline.rb +20 -0
- data/test/test_inline_html.rb +34 -0
- data/test/test_p.rb +54 -0
- data/test/test_pair.rb +34 -0
- data/test/test_table.rb +40 -0
- data/test/test_url.rb +34 -0
- metadata +86 -0
metadata
ADDED
@@ -0,0 +1,86 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.8.11
|
3
|
+
specification_version: 1
|
4
|
+
name: hparser
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.1.0
|
7
|
+
date: 2006-08-02 00:00:00 +09:00
|
8
|
+
summary: Hatena Format Parser
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: hiroki1124@gmail.com
|
12
|
+
homepage: http://d.hatena.ne.jp/mzp/
|
13
|
+
rubyforge_project:
|
14
|
+
description:
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
authors:
|
29
|
+
- MIZUNO Hiroki
|
30
|
+
files:
|
31
|
+
- test/test_block.rb
|
32
|
+
- test/test_head.rb
|
33
|
+
- test/test_html.rb
|
34
|
+
- test/test_id.rb
|
35
|
+
- test/test_inline.rb
|
36
|
+
- test/test_inline_html.rb
|
37
|
+
- test/test_p.rb
|
38
|
+
- test/test_pair.rb
|
39
|
+
- test/test_table.rb
|
40
|
+
- test/test_url.rb
|
41
|
+
- lib/hparser.rb
|
42
|
+
- lib/hparser/html.rb
|
43
|
+
- lib/hparser/parser.rb
|
44
|
+
- lib/hparser/block/all.rb
|
45
|
+
- lib/hparser/block/collectable.rb
|
46
|
+
- lib/hparser/block/head.rb
|
47
|
+
- lib/hparser/block/list.rb
|
48
|
+
- lib/hparser/block/p.rb
|
49
|
+
- lib/hparser/block/pair.rb
|
50
|
+
- lib/hparser/block/pre.rb
|
51
|
+
- lib/hparser/block/quote.rb
|
52
|
+
- lib/hparser/block/super_pre.rb
|
53
|
+
- lib/hparser/block/table.rb
|
54
|
+
- lib/hparser/inline/all.rb
|
55
|
+
- lib/hparser/inline/collectable.rb
|
56
|
+
- lib/hparser/inline/hatena_id.rb
|
57
|
+
- lib/hparser/inline/parser.rb
|
58
|
+
- lib/hparser/inline/text.rb
|
59
|
+
- lib/hparser/inline/url.rb
|
60
|
+
- lib/hparser/util/line_scanner.rb
|
61
|
+
- lib/hparser/util/parser.rb
|
62
|
+
- README
|
63
|
+
test_files:
|
64
|
+
- test/test_block.rb
|
65
|
+
- test/test_head.rb
|
66
|
+
- test/test_html.rb
|
67
|
+
- test/test_id.rb
|
68
|
+
- test/test_inline.rb
|
69
|
+
- test/test_inline_html.rb
|
70
|
+
- test/test_p.rb
|
71
|
+
- test/test_pair.rb
|
72
|
+
- test/test_table.rb
|
73
|
+
- test/test_url.rb
|
74
|
+
rdoc_options:
|
75
|
+
- --main
|
76
|
+
- README
|
77
|
+
extra_rdoc_files:
|
78
|
+
- README
|
79
|
+
executables: []
|
80
|
+
|
81
|
+
extensions: []
|
82
|
+
|
83
|
+
requirements: []
|
84
|
+
|
85
|
+
dependencies: []
|
86
|
+
|