BlueCloth 1.0.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/CHANGES +506 -0
- data/LICENSE +340 -0
- data/README +99 -0
- data/bin/bluecloth +83 -0
- data/install.rb +185 -0
- data/lib/bluecloth.rb +1144 -0
- data/test.rb +117 -0
- data/tests/00_Class.tests.rb +71 -0
- data/tests/05_Markdown.tests.rb +1541 -0
- data/tests/10_Bug.tests.rb +67 -0
- data/tests/15_Contrib.tests.rb +132 -0
- data/tests/bctestcase.rb +283 -0
- data/tests/data/antsugar.txt +34 -0
- data/tests/data/hr-dos.txt +4 -0
- data/tests/data/ml-announce.txt +17 -0
- data/tests/data/re-overflow.txt +67 -0
- data/tests/data/re-overflow2.txt +281 -0
- data/utils.rb +739 -0
- metadata +74 -0
metadata
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: BlueCloth
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Michael Granger
|
8
|
+
autorequire: bluecloth
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-07-15 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description:
|
17
|
+
email: ged@FaerieMUD.org
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files: []
|
23
|
+
|
24
|
+
files:
|
25
|
+
- utils.rb
|
26
|
+
- tests/bctestcase.rb
|
27
|
+
- tests/data/antsugar.txt
|
28
|
+
- tests/data/hr-dos.txt
|
29
|
+
- tests/data/ml-announce.txt
|
30
|
+
- tests/data/re-overflow.txt
|
31
|
+
- tests/data/re-overflow2.txt
|
32
|
+
- tests/00_Class.tests.rb
|
33
|
+
- tests/05_Markdown.tests.rb
|
34
|
+
- tests/10_Bug.tests.rb
|
35
|
+
- tests/15_Contrib.tests.rb
|
36
|
+
- test.rb
|
37
|
+
- README
|
38
|
+
- CHANGES
|
39
|
+
- LICENSE
|
40
|
+
- lib/bluecloth.rb
|
41
|
+
- install.rb
|
42
|
+
- bin/bluecloth
|
43
|
+
has_rdoc: false
|
44
|
+
homepage: http://deveiate.org/projects/BlueCloth
|
45
|
+
post_install_message:
|
46
|
+
rdoc_options: []
|
47
|
+
|
48
|
+
require_paths:
|
49
|
+
- lib
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: "0"
|
55
|
+
version:
|
56
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: "0"
|
61
|
+
version:
|
62
|
+
requirements:
|
63
|
+
- strscan
|
64
|
+
- logger
|
65
|
+
rubyforge_project: deveiate
|
66
|
+
rubygems_version: 1.3.1
|
67
|
+
signing_key:
|
68
|
+
specification_version: 3
|
69
|
+
summary: BlueCloth is a Ruby implementation of Markdown, a text-to-HTML conversion tool for web writers. Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HTML).
|
70
|
+
test_files:
|
71
|
+
- tests/00_Class.tests.rb
|
72
|
+
- tests/05_Markdown.tests.rb
|
73
|
+
- tests/10_Bug.tests.rb
|
74
|
+
- tests/15_Contrib.tests.rb
|