bluecloth 2.0.9 → 2.0.10
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/ChangeLog +29 -2
- data/Rakefile +18 -15
- data/ext/VERSION +1 -1
- data/ext/bluecloth.c +26 -5
- data/ext/config.h +13 -2
- data/ext/css.c +14 -5
- data/ext/cstring.h +1 -1
- data/ext/docheader.c +13 -7
- data/ext/emmatch.c +1 -1
- data/ext/generate.c +134 -48
- data/ext/markdown.c +207 -94
- data/ext/markdown.h +37 -28
- data/ext/mkdio.c +39 -32
- data/ext/mkdio.h +34 -24
- data/ext/resource.c +3 -1
- data/ext/setup.c +47 -0
- data/ext/tags.c +15 -2
- data/ext/tags.h +1 -0
- data/lib/bluecloth.rb +65 -40
- data/rake/documentation.rb +9 -1
- data/rake/hg.rb +34 -3
- data/rake/packaging.rb +1 -1
- data/rake/publishing.rb +2 -9
- data/rake/testing.rb +53 -88
- data/spec/bluecloth/101_changes_spec.rb +17 -17
- data/spec/bluecloth/autolinks_spec.rb +1 -1
- data/spec/bluecloth/blockquotes_spec.rb +18 -18
- data/spec/bluecloth/code_spans_spec.rb +1 -1
- data/spec/bluecloth/emphasis_spec.rb +1 -1
- data/spec/bluecloth/entities_spec.rb +1 -1
- data/spec/bluecloth/hrules_spec.rb +1 -1
- data/spec/bluecloth/images_spec.rb +1 -1
- data/spec/bluecloth/inline_html_spec.rb +1 -1
- data/spec/bluecloth/links_spec.rb +1 -1
- data/spec/bluecloth/lists_spec.rb +1 -1
- data/spec/bluecloth/paragraphs_spec.rb +1 -1
- data/spec/bluecloth/titles_spec.rb +1 -1
- data/spec/bluecloth_spec.rb +13 -13
- data/spec/bugfix_spec.rb +6 -1
- data/spec/contributions_spec.rb +1 -1
- data/spec/discount_spec.rb +2 -2
- data/spec/lib/helpers.rb +1 -124
- data/spec/lib/matchers.rb +1 -1
- data/spec/markdowntest_spec.rb +1 -1
- metadata +10 -10
- metadata.gz.sig +0 -0
data/spec/lib/matchers.rb
CHANGED
@@ -8,7 +8,7 @@ require 'diff/lcs/callbacks'
|
|
8
8
|
require 'spec/lib/constants'
|
9
9
|
|
10
10
|
|
11
|
-
###
|
11
|
+
### Expectation matcher classes/functions
|
12
12
|
module BlueCloth::Matchers
|
13
13
|
|
14
14
|
### Matcher for comparing output of a BlueCloth-generated HTML fragment against a known-good
|
data/spec/markdowntest_spec.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bluecloth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash: 29
|
5
4
|
prerelease: false
|
6
5
|
segments:
|
7
6
|
- 2
|
8
7
|
- 0
|
9
|
-
-
|
10
|
-
version: 2.0.
|
8
|
+
- 10
|
9
|
+
version: 2.0.10
|
11
10
|
platform: ruby
|
12
11
|
authors:
|
13
12
|
- Michael Granger
|
@@ -35,7 +34,7 @@ cert_chain:
|
|
35
34
|
cmlhXe46pZNJgWKbxZah85jIjx95hR8vOI+NAM5iH9kOqK13DrxacTKPhqj5PjwF
|
36
35
|
-----END CERTIFICATE-----
|
37
36
|
|
38
|
-
date:
|
37
|
+
date: 2011-01-17 00:00:00 -08:00
|
39
38
|
default_executable:
|
40
39
|
dependencies: []
|
41
40
|
|
@@ -93,6 +92,7 @@ files:
|
|
93
92
|
- ext/markdown.c
|
94
93
|
- ext/mkdio.c
|
95
94
|
- ext/resource.c
|
95
|
+
- ext/setup.c
|
96
96
|
- ext/tags.c
|
97
97
|
- ext/version.c
|
98
98
|
- ext/xml.c
|
@@ -171,8 +171,8 @@ files:
|
|
171
171
|
- LICENSE.discount
|
172
172
|
has_rdoc: true
|
173
173
|
homepage: http://deveiate.org/projects/BlueCloth/
|
174
|
-
licenses:
|
175
|
-
|
174
|
+
licenses:
|
175
|
+
- BSD
|
176
176
|
post_install_message:
|
177
177
|
rdoc_options:
|
178
178
|
- --tab-width=4
|
@@ -189,16 +189,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
189
189
|
requirements:
|
190
190
|
- - ">="
|
191
191
|
- !ruby/object:Gem::Version
|
192
|
-
hash: 3
|
193
192
|
segments:
|
194
|
-
-
|
195
|
-
|
193
|
+
- 1
|
194
|
+
- 8
|
195
|
+
- 7
|
196
|
+
version: 1.8.7
|
196
197
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
197
198
|
none: false
|
198
199
|
requirements:
|
199
200
|
- - ">="
|
200
201
|
- !ruby/object:Gem::Version
|
201
|
-
hash: 3
|
202
202
|
segments:
|
203
203
|
- 0
|
204
204
|
version: "0"
|
metadata.gz.sig
CHANGED
Binary file
|