bluecloth 2.0.9 → 2.0.10

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.
Files changed (47) hide show
  1. data.tar.gz.sig +0 -0
  2. data/ChangeLog +29 -2
  3. data/Rakefile +18 -15
  4. data/ext/VERSION +1 -1
  5. data/ext/bluecloth.c +26 -5
  6. data/ext/config.h +13 -2
  7. data/ext/css.c +14 -5
  8. data/ext/cstring.h +1 -1
  9. data/ext/docheader.c +13 -7
  10. data/ext/emmatch.c +1 -1
  11. data/ext/generate.c +134 -48
  12. data/ext/markdown.c +207 -94
  13. data/ext/markdown.h +37 -28
  14. data/ext/mkdio.c +39 -32
  15. data/ext/mkdio.h +34 -24
  16. data/ext/resource.c +3 -1
  17. data/ext/setup.c +47 -0
  18. data/ext/tags.c +15 -2
  19. data/ext/tags.h +1 -0
  20. data/lib/bluecloth.rb +65 -40
  21. data/rake/documentation.rb +9 -1
  22. data/rake/hg.rb +34 -3
  23. data/rake/packaging.rb +1 -1
  24. data/rake/publishing.rb +2 -9
  25. data/rake/testing.rb +53 -88
  26. data/spec/bluecloth/101_changes_spec.rb +17 -17
  27. data/spec/bluecloth/autolinks_spec.rb +1 -1
  28. data/spec/bluecloth/blockquotes_spec.rb +18 -18
  29. data/spec/bluecloth/code_spans_spec.rb +1 -1
  30. data/spec/bluecloth/emphasis_spec.rb +1 -1
  31. data/spec/bluecloth/entities_spec.rb +1 -1
  32. data/spec/bluecloth/hrules_spec.rb +1 -1
  33. data/spec/bluecloth/images_spec.rb +1 -1
  34. data/spec/bluecloth/inline_html_spec.rb +1 -1
  35. data/spec/bluecloth/links_spec.rb +1 -1
  36. data/spec/bluecloth/lists_spec.rb +1 -1
  37. data/spec/bluecloth/paragraphs_spec.rb +1 -1
  38. data/spec/bluecloth/titles_spec.rb +1 -1
  39. data/spec/bluecloth_spec.rb +13 -13
  40. data/spec/bugfix_spec.rb +6 -1
  41. data/spec/contributions_spec.rb +1 -1
  42. data/spec/discount_spec.rb +2 -2
  43. data/spec/lib/helpers.rb +1 -124
  44. data/spec/lib/matchers.rb +1 -1
  45. data/spec/markdowntest_spec.rb +1 -1
  46. metadata +10 -10
  47. metadata.gz.sig +0 -0
@@ -8,7 +8,7 @@ require 'diff/lcs/callbacks'
8
8
  require 'spec/lib/constants'
9
9
 
10
10
 
11
- ### Fixturing functions
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
@@ -12,7 +12,7 @@ BEGIN {
12
12
  $LOAD_PATH.unshift( extdir ) unless $LOAD_PATH.include?( extdir )
13
13
  }
14
14
 
15
- require 'spec'
15
+ require 'rspec'
16
16
  require 'bluecloth'
17
17
  require 'tidy'
18
18
 
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
- - 9
10
- version: 2.0.9
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: 2010-09-23 00:00:00 -07:00
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
- - 0
195
- version: "0"
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