bluecloth 2.0.11pre158-x86-mswin32 → 2.0.11-x86-mswin32

Sign up to get free protection for your applications and to get access to all the features.
data.tar.gz.sig CHANGED
Binary file
data/History.md CHANGED
@@ -1,4 +1,97 @@
1
- ## 0.0.1 [2011-02-08] Michael Granger <ged@FaerieMUD.org>
1
+ ## 2.0.11 [2011-02-10] Michael Granger <ged@FaerieMUD.org>
2
2
 
3
- Initial release.
3
+ Enhancements:
4
4
 
5
+ * gem-testers support
6
+ * Update to Discount 2.0.5
7
+
8
+ Bugfixes:
9
+
10
+ * Removed unnecessary requires from top-level file
11
+ * Fix for Windows devkit installs
12
+
13
+
14
+ ## v2.0.10 [2011-02-09] Michael Granger <ged@FaerieMUD.org>
15
+
16
+ Enhancements:
17
+
18
+ Updated to Discount 2.0.4:
19
+ * Added configuration options for all of Discount's extensions.
20
+ * Worked around a Discount bug when rendering the same document twice (appends a \0)
21
+
22
+
23
+ ## 2.0.9 [2011-01-17] Michael Granger <ged@FaerieMUD.org>
24
+
25
+ Enhancements:
26
+
27
+ * 1.9.2 compatibility
28
+ * Updated to Discount 1.6.8
29
+
30
+ Bugfixes:
31
+
32
+ * Transcode input to UTF8, then re-transcode back to the original encoding on the way out
33
+ (fixes #63)
34
+
35
+
36
+ ## 2.0.8 [2010-09-23] Michael Granger <ged@FaerieMUD.org>
37
+
38
+ Updated to Discount 1.6.6; add HTML5 tag support.
39
+
40
+
41
+ ## 2.0.7 [2010-08-11] Michael Granger <ged@FaerieMUD.org>
42
+
43
+ Fixed m17n
44
+
45
+
46
+ ## 2.0.6 [2010-01-21] Michael Granger <ged@FaerieMUD.org>
47
+
48
+ Enhancements:
49
+
50
+ * HTML results now have the same encoding as the source Markdown text (fixes #63).
51
+ * Native Windows gems.
52
+ * Updated to Discount 1.5.8.
53
+
54
+ Bugfixes
55
+
56
+ * Fix a sefault when creating a BlueCloth object with an object other than a
57
+ String. Closes #61 and #62.
58
+ * Test for bzero (used in generate.c), and if it isn't defined (e.g.,
59
+ Windows using VC), define it in terms of memset().
60
+
61
+
62
+ ## 2.0.5 [2010-01-16] Michael Granger <ged@FaerieMUD.org>
63
+
64
+ * Set the top-level 'Markdown' constant as an alias for BlueCloth if it's not
65
+ already set by something else.
66
+ * Adding a spec to test out the DoS reported by Ben Sandofsky (refs #57).
67
+ * Updated with Discount 1.4.4.
68
+
69
+
70
+ ## 2.0.4 [2009-07-15] Michael Granger <ged@FaerieMUD.org>
71
+
72
+ * Updated to Discount 1.4.2.
73
+ * Added some more tests for various Discount extensions.
74
+ * Added support for the MKD_AUTOLINK and MKD_SAFELINK.
75
+ * Fixing tests under Ruby 1.9.1. Thanks to Diego Elio Pettenò for the fix.
76
+ * Adding Discount files for missing symbols on some platforms.
77
+
78
+
79
+ ## 2.0.3 [2009-06-15] Michael Granger <ged@FaerieMUD.org>
80
+
81
+ Dependency fix.
82
+
83
+
84
+ ## 2.0.2 [2009-05-14] Michael Granger <ged@FaerieMUD.org>
85
+
86
+ * Updated to Discount 1.4.0.
87
+ * Added support for the MKD_TAGTEXT constant.
88
+
89
+
90
+ ## 2.0.1 [2009-05-14] Michael Granger <ged@FaerieMUD.org>
91
+
92
+ Fixed the VERSION constant.
93
+
94
+
95
+ ## 2.0.0 [2009-03-25] Michael Granger <ged@FaerieMUD.org>
96
+
97
+ Rewritten using Discount.
data/ext/bluecloth.c CHANGED
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * BlueCloth -- a Ruby implementation of Markdown
3
- * $Id: bluecloth.c,v 0cda68a5fc00 2011/02/09 22:33:27 ged $
3
+ * $Id: bluecloth.c,v a12b01a92197 2011/01/17 17:13:22 ged $
4
4
  *
5
5
  * = Authors
6
6
  *
data/ext/bluecloth.h CHANGED
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * BlueCloth -- a Ruby implementation of Markdown
3
- * $Id: bluecloth.h,v 0cda68a5fc00 2011/02/09 22:33:27 ged $
3
+ * $Id: bluecloth.h,v 055519ec5f78 2010/09/17 20:42:27 ged $
4
4
  *
5
5
  */
6
6
 
Binary file
Binary file
data/lib/bluecloth.rb CHANGED
@@ -18,7 +18,7 @@
18
18
  #
19
19
  # == Version
20
20
  #
21
- # $Id: bluecloth.rb,v fd890510cecf 2011/02/10 15:39:54 ged $
21
+ # $Id: bluecloth.rb,v 20ece393cda0 2011/02/10 01:37:48 ged $
22
22
  #
23
23
  # == License
24
24
  #
metadata CHANGED
@@ -1,15 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bluecloth
3
3
  version: !ruby/object:Gem::Version
4
- hash: 1923832205
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 2
8
8
  - 0
9
9
  - 11
10
- - pre
11
- - 158
12
- version: 2.0.11pre158
10
+ version: 2.0.11
13
11
  platform: x86-mswin32
14
12
  authors:
15
13
  - Michael Granger
@@ -310,7 +308,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
310
308
  requirements: []
311
309
 
312
310
  rubyforge_project: bluecloth
313
- rubygems_version: 1.5.0
311
+ rubygems_version: 1.4.2
314
312
  signing_key:
315
313
  specification_version: 3
316
314
  summary: BlueCloth is a Ruby implementation of John Gruber's [Markdown][markdown], a text-to-HTML conversion tool for web writers
metadata.gz.sig CHANGED
Binary file