assplecake-RedCloth 4.2.9 → 4.2.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.
- data/CHANGELOG +12 -3
- data/Gemfile +2 -2
- data/ext/redcloth_scan/redcloth_attributes.c +11 -10
- data/ext/redcloth_scan/redcloth_inline.c +11 -10
- data/ext/redcloth_scan/redcloth_scan.c +12 -11
- data/lib/redcloth.rb +3 -2
- data/lib/redcloth/formatters/latex.rb +5 -3
- data/lib/redcloth/version.rb +4 -4
- data/redcloth.gemspec +7 -5
- metadata +100 -108
data/CHANGELOG
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
== Head
|
|
2
|
+
|
|
3
|
+
* Lazy-load latex_entities.yml [Charlie Somerville]
|
|
4
|
+
|
|
5
|
+
== 4.2.9 / November 25, 2011
|
|
6
|
+
|
|
7
|
+
* Fix RbConfig / Config warning in Ruby 1.9.3. [Steve Purcell, Robert Gleeson, and unclaimedbaggage]
|
|
8
|
+
* Use RSTRING_NOT_MODIFIED header for Rubinius [Dirkjan Bussink]
|
|
9
|
+
|
|
1
10
|
== 4.2.8 / August 17, 2011
|
|
2
11
|
|
|
3
12
|
* Do not treat warnings as errors so it compiles cleanly. [Tomasz Wałkuski]
|
|
@@ -77,7 +86,7 @@
|
|
|
77
86
|
* Accept multiline content in table cells. [Jason Garber]
|
|
78
87
|
|
|
79
88
|
* Change to list attributes so you can give style/class to list items (taken from PyTextile). Breaks backwards compatibility.
|
|
80
|
-
|
|
89
|
+
|
|
81
90
|
Before, the style applied to the first list item applied to the entire list. Now, class/id/style placed
|
|
82
91
|
before the list applies to the list element and after the hash or asterisk applies to the list item. For
|
|
83
92
|
example:
|
|
@@ -158,7 +167,7 @@
|
|
|
158
167
|
To compile the jruby version of the gem: jruby -S rake compile
|
|
159
168
|
|
|
160
169
|
* Added textilize ERB utility method. [edraut]
|
|
161
|
-
Use it in an ERB template like this: <%=t my_textile_string %> or
|
|
170
|
+
Use it in an ERB template like this: <%=t my_textile_string %> or
|
|
162
171
|
<%=r %{Some *textile* if you please!} %>
|
|
163
172
|
|
|
164
173
|
* Fix extended blockcode stripping whitespace following blank line. #78
|
|
@@ -253,4 +262,4 @@
|
|
|
253
262
|
|
|
254
263
|
* Over 500 tests prevent regression
|
|
255
264
|
|
|
256
|
-
* It's 40 times faster than the previous version.
|
|
265
|
+
* It's 40 times faster than the previous version.
|
data/Gemfile
CHANGED
|
@@ -5,15 +5,16 @@
|
|
|
5
5
|
*
|
|
6
6
|
* Copyright (C) 2009 Jason Garber
|
|
7
7
|
*/
|
|
8
|
+
#define RSTRING_NOT_MODIFIED
|
|
8
9
|
#include <ruby.h>
|
|
9
10
|
#include "redcloth.h"
|
|
10
11
|
|
|
11
12
|
|
|
12
|
-
#line
|
|
13
|
+
#line 16 "ragel/redcloth_attributes.c.rl"
|
|
13
14
|
|
|
14
15
|
|
|
15
16
|
|
|
16
|
-
#line
|
|
17
|
+
#line 18 "ext/redcloth_scan/redcloth_attributes.c"
|
|
17
18
|
static const char _redcloth_attributes_actions[] = {
|
|
18
19
|
0, 1, 2, 1, 4, 1, 5, 1,
|
|
19
20
|
6, 1, 7, 1, 8, 1, 11, 1,
|
|
@@ -405,7 +406,7 @@ static const int redcloth_attributes_en_inline = 61;
|
|
|
405
406
|
static const int redcloth_attributes_en_link_says = 29;
|
|
406
407
|
|
|
407
408
|
|
|
408
|
-
#line
|
|
409
|
+
#line 19 "ragel/redcloth_attributes.c.rl"
|
|
409
410
|
|
|
410
411
|
|
|
411
412
|
VALUE
|
|
@@ -420,7 +421,7 @@ redcloth_attribute_parser(machine, self, p, pe)
|
|
|
420
421
|
VALUE attr_regs = rb_hash_new();
|
|
421
422
|
|
|
422
423
|
|
|
423
|
-
#line
|
|
424
|
+
#line 425 "ext/redcloth_scan/redcloth_attributes.c"
|
|
424
425
|
{
|
|
425
426
|
cs = redcloth_attributes_start;
|
|
426
427
|
ts = 0;
|
|
@@ -428,12 +429,12 @@ redcloth_attribute_parser(machine, self, p, pe)
|
|
|
428
429
|
act = 0;
|
|
429
430
|
}
|
|
430
431
|
|
|
431
|
-
#line
|
|
432
|
+
#line 33 "ragel/redcloth_attributes.c.rl"
|
|
432
433
|
|
|
433
434
|
cs = machine;
|
|
434
435
|
|
|
435
436
|
|
|
436
|
-
#line
|
|
437
|
+
#line 438 "ext/redcloth_scan/redcloth_attributes.c"
|
|
437
438
|
{
|
|
438
439
|
int _klen;
|
|
439
440
|
unsigned int _trans;
|
|
@@ -454,7 +455,7 @@ _resume:
|
|
|
454
455
|
#line 1 "NONE"
|
|
455
456
|
{ts = p;}
|
|
456
457
|
break;
|
|
457
|
-
#line
|
|
458
|
+
#line 459 "ext/redcloth_scan/redcloth_attributes.c"
|
|
458
459
|
}
|
|
459
460
|
}
|
|
460
461
|
|
|
@@ -592,7 +593,7 @@ _eof_trans:
|
|
|
592
593
|
#line 26 "ragel/redcloth_attributes.rl"
|
|
593
594
|
{{p = ((te))-1;}{ SET_ATTRIBUTE("name_without_attributes", "name"); }}
|
|
594
595
|
break;
|
|
595
|
-
#line
|
|
596
|
+
#line 597 "ext/redcloth_scan/redcloth_attributes.c"
|
|
596
597
|
}
|
|
597
598
|
}
|
|
598
599
|
|
|
@@ -605,7 +606,7 @@ _again:
|
|
|
605
606
|
#line 1 "NONE"
|
|
606
607
|
{ts = 0;}
|
|
607
608
|
break;
|
|
608
|
-
#line
|
|
609
|
+
#line 610 "ext/redcloth_scan/redcloth_attributes.c"
|
|
609
610
|
}
|
|
610
611
|
}
|
|
611
612
|
|
|
@@ -625,7 +626,7 @@ _again:
|
|
|
625
626
|
_out: {}
|
|
626
627
|
}
|
|
627
628
|
|
|
628
|
-
#line
|
|
629
|
+
#line 37 "ragel/redcloth_attributes.c.rl"
|
|
629
630
|
|
|
630
631
|
return regs;
|
|
631
632
|
}
|
|
@@ -5,15 +5,16 @@
|
|
|
5
5
|
*
|
|
6
6
|
* Copyright (C) 2009 Jason Garber
|
|
7
7
|
*/
|
|
8
|
+
#define RSTRING_NOT_MODIFIED
|
|
8
9
|
#include <ruby.h>
|
|
9
10
|
#include "redcloth.h"
|
|
10
11
|
|
|
11
12
|
|
|
12
|
-
#line
|
|
13
|
+
#line 16 "ragel/redcloth_inline.c.rl"
|
|
13
14
|
|
|
14
15
|
|
|
15
16
|
|
|
16
|
-
#line
|
|
17
|
+
#line 18 "ext/redcloth_scan/redcloth_inline.c"
|
|
17
18
|
static const char _redcloth_inline_actions[] = {
|
|
18
19
|
0, 1, 0, 1, 1, 1, 3, 1,
|
|
19
20
|
4, 1, 8, 1, 9, 1, 10, 1,
|
|
@@ -7247,7 +7248,7 @@ static const int redcloth_inline_en_code_tag = 1555;
|
|
|
7247
7248
|
static const int redcloth_inline_en_main = 1298;
|
|
7248
7249
|
|
|
7249
7250
|
|
|
7250
|
-
#line
|
|
7251
|
+
#line 19 "ragel/redcloth_inline.c.rl"
|
|
7251
7252
|
|
|
7252
7253
|
VALUE
|
|
7253
7254
|
red_pass(VALUE self, VALUE regs, VALUE ref, ID meth, VALUE refs)
|
|
@@ -7388,7 +7389,7 @@ redcloth_inline(self, p, pe, refs)
|
|
|
7388
7389
|
VALUE attr_regs = Qnil;
|
|
7389
7390
|
|
|
7390
7391
|
|
|
7391
|
-
#line
|
|
7392
|
+
#line 7393 "ext/redcloth_scan/redcloth_inline.c"
|
|
7392
7393
|
{
|
|
7393
7394
|
cs = redcloth_inline_start;
|
|
7394
7395
|
ts = 0;
|
|
@@ -7396,10 +7397,10 @@ redcloth_inline(self, p, pe, refs)
|
|
|
7396
7397
|
act = 0;
|
|
7397
7398
|
}
|
|
7398
7399
|
|
|
7399
|
-
#line
|
|
7400
|
+
#line 159 "ragel/redcloth_inline.c.rl"
|
|
7400
7401
|
|
|
7401
7402
|
|
|
7402
|
-
#line
|
|
7403
|
+
#line 7404 "ext/redcloth_scan/redcloth_inline.c"
|
|
7403
7404
|
{
|
|
7404
7405
|
int _klen;
|
|
7405
7406
|
unsigned int _trans;
|
|
@@ -7425,7 +7426,7 @@ _resume:
|
|
|
7425
7426
|
#line 1 "NONE"
|
|
7426
7427
|
{ts = p;}
|
|
7427
7428
|
break;
|
|
7428
|
-
#line
|
|
7429
|
+
#line 7430 "ext/redcloth_scan/redcloth_inline.c"
|
|
7429
7430
|
}
|
|
7430
7431
|
}
|
|
7431
7432
|
|
|
@@ -8060,7 +8061,7 @@ _eof_trans:
|
|
|
8060
8061
|
}
|
|
8061
8062
|
}
|
|
8062
8063
|
break;
|
|
8063
|
-
#line
|
|
8064
|
+
#line 8065 "ext/redcloth_scan/redcloth_inline.c"
|
|
8064
8065
|
}
|
|
8065
8066
|
}
|
|
8066
8067
|
|
|
@@ -8073,7 +8074,7 @@ _again:
|
|
|
8073
8074
|
#line 1 "NONE"
|
|
8074
8075
|
{ts = 0;}
|
|
8075
8076
|
break;
|
|
8076
|
-
#line
|
|
8077
|
+
#line 8078 "ext/redcloth_scan/redcloth_inline.c"
|
|
8077
8078
|
}
|
|
8078
8079
|
}
|
|
8079
8080
|
|
|
@@ -8093,7 +8094,7 @@ _again:
|
|
|
8093
8094
|
_out: {}
|
|
8094
8095
|
}
|
|
8095
8096
|
|
|
8096
|
-
#line
|
|
8097
|
+
#line 161 "ragel/redcloth_inline.c.rl"
|
|
8097
8098
|
|
|
8098
8099
|
return block;
|
|
8099
8100
|
}
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
*/
|
|
8
8
|
#define redcloth_scan_c
|
|
9
9
|
|
|
10
|
+
#define RSTRING_NOT_MODIFIED
|
|
10
11
|
#include <ruby.h>
|
|
11
12
|
#include "redcloth.h"
|
|
12
13
|
|
|
@@ -14,11 +15,11 @@ VALUE mRedCloth, super_ParseError, super_RedCloth, super_HTML, super_LATEX;
|
|
|
14
15
|
VALUE SYM_escape_preformatted, SYM_escape_attributes;
|
|
15
16
|
|
|
16
17
|
|
|
17
|
-
#line
|
|
18
|
+
#line 24 "ragel/redcloth_scan.c.rl"
|
|
18
19
|
|
|
19
20
|
|
|
20
21
|
|
|
21
|
-
#line
|
|
22
|
+
#line 23 "ext/redcloth_scan/redcloth_scan.c"
|
|
22
23
|
static const unsigned char _redcloth_scan_actions[] = {
|
|
23
24
|
0, 1, 0, 1, 2, 1, 3, 1,
|
|
24
25
|
4, 1, 5, 1, 6, 1, 7, 1,
|
|
@@ -23042,7 +23043,7 @@ static const int redcloth_scan_en_dl = 2484;
|
|
|
23042
23043
|
static const int redcloth_scan_en_main = 2250;
|
|
23043
23044
|
|
|
23044
23045
|
|
|
23045
|
-
#line
|
|
23046
|
+
#line 27 "ragel/redcloth_scan.c.rl"
|
|
23046
23047
|
|
|
23047
23048
|
VALUE
|
|
23048
23049
|
redcloth_transform(self, p, pe, refs)
|
|
@@ -23068,7 +23069,7 @@ redcloth_transform(self, p, pe, refs)
|
|
|
23068
23069
|
VALUE refs_found = rb_hash_new();
|
|
23069
23070
|
|
|
23070
23071
|
|
|
23071
|
-
#line
|
|
23072
|
+
#line 23073 "ext/redcloth_scan/redcloth_scan.c"
|
|
23072
23073
|
{
|
|
23073
23074
|
cs = redcloth_scan_start;
|
|
23074
23075
|
ts = 0;
|
|
@@ -23076,10 +23077,10 @@ redcloth_transform(self, p, pe, refs)
|
|
|
23076
23077
|
act = 0;
|
|
23077
23078
|
}
|
|
23078
23079
|
|
|
23079
|
-
#line
|
|
23080
|
+
#line 52 "ragel/redcloth_scan.c.rl"
|
|
23080
23081
|
|
|
23081
23082
|
|
|
23082
|
-
#line
|
|
23083
|
+
#line 23084 "ext/redcloth_scan/redcloth_scan.c"
|
|
23083
23084
|
{
|
|
23084
23085
|
int _klen;
|
|
23085
23086
|
unsigned int _trans;
|
|
@@ -23101,7 +23102,7 @@ _resume:
|
|
|
23101
23102
|
#line 1 "NONE"
|
|
23102
23103
|
{ts = p;}
|
|
23103
23104
|
break;
|
|
23104
|
-
#line
|
|
23105
|
+
#line 23106 "ext/redcloth_scan/redcloth_scan.c"
|
|
23105
23106
|
}
|
|
23106
23107
|
}
|
|
23107
23108
|
|
|
@@ -23321,7 +23322,7 @@ _eof_trans:
|
|
|
23321
23322
|
{ STORE_ATTR("start"); }
|
|
23322
23323
|
break;
|
|
23323
23324
|
case 24:
|
|
23324
|
-
#line
|
|
23325
|
+
#line 20 "ragel/redcloth_scan.c.rl"
|
|
23325
23326
|
{ extend = rb_hash_aref(regs, ID2SYM(rb_intern("type"))); }
|
|
23326
23327
|
break;
|
|
23327
23328
|
case 25:
|
|
@@ -24192,7 +24193,7 @@ _eof_trans:
|
|
|
24192
24193
|
}
|
|
24193
24194
|
}
|
|
24194
24195
|
break;
|
|
24195
|
-
#line
|
|
24196
|
+
#line 24197 "ext/redcloth_scan/redcloth_scan.c"
|
|
24196
24197
|
}
|
|
24197
24198
|
}
|
|
24198
24199
|
|
|
@@ -24205,7 +24206,7 @@ _again:
|
|
|
24205
24206
|
#line 1 "NONE"
|
|
24206
24207
|
{ts = 0;}
|
|
24207
24208
|
break;
|
|
24208
|
-
#line
|
|
24209
|
+
#line 24210 "ext/redcloth_scan/redcloth_scan.c"
|
|
24209
24210
|
}
|
|
24210
24211
|
}
|
|
24211
24212
|
|
|
@@ -24225,7 +24226,7 @@ _again:
|
|
|
24225
24226
|
_out: {}
|
|
24226
24227
|
}
|
|
24227
24228
|
|
|
24228
|
-
#line
|
|
24229
|
+
#line 54 "ragel/redcloth_scan.c.rl"
|
|
24229
24230
|
|
|
24230
24231
|
if (RSTRING_LEN(block) > 0)
|
|
24231
24232
|
{
|
data/lib/redcloth.rb
CHANGED
|
@@ -7,7 +7,8 @@ Object.send(:remove_const, :RedCloth) if Object.const_defined?(:RedCloth) && Red
|
|
|
7
7
|
|
|
8
8
|
require 'rbconfig'
|
|
9
9
|
begin
|
|
10
|
-
|
|
10
|
+
conf = Object.const_get(defined?(RbConfig) ? :RbConfig : :Config)::CONFIG
|
|
11
|
+
prefix = conf['arch'] =~ /mswin|mingw/ ? "#{conf['MAJOR']}.#{conf['MINOR']}/" : ''
|
|
11
12
|
lib = "#{prefix}redcloth_scan"
|
|
12
13
|
require lib
|
|
13
14
|
rescue LoadError => e
|
|
@@ -41,4 +42,4 @@ begin
|
|
|
41
42
|
require 'redcloth/erb_extension'
|
|
42
43
|
include ERB::Util
|
|
43
44
|
rescue LoadError
|
|
44
|
-
end
|
|
45
|
+
end
|
|
@@ -3,7 +3,9 @@ require 'yaml'
|
|
|
3
3
|
module RedCloth::Formatters::LATEX
|
|
4
4
|
include RedCloth::Formatters::Base
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
def self.entities
|
|
7
|
+
@entities ||= YAML.load(File.read(File.dirname(__FILE__)+'/latex_entities.yml'))
|
|
8
|
+
end
|
|
7
9
|
|
|
8
10
|
module Settings
|
|
9
11
|
# Maps CSS style names to latex formatting options
|
|
@@ -282,8 +284,8 @@ module RedCloth::Formatters::LATEX
|
|
|
282
284
|
# TODO: what do we do with (unknown) unicode entities ?
|
|
283
285
|
#
|
|
284
286
|
def entity(opts)
|
|
285
|
-
text = opts[:text][0..0] == '#' ? opts[:text][1..-1] : opts[:text]
|
|
286
|
-
|
|
287
|
+
text = opts[:text][0..0] == '#' ? opts[:text][1..-1] : opts[:text]
|
|
288
|
+
RedCloth::Formatters::LATEX.entities[text]
|
|
287
289
|
end
|
|
288
290
|
|
|
289
291
|
def dim(opts)
|
data/lib/redcloth/version.rb
CHANGED
|
@@ -2,24 +2,24 @@ module RedCloth
|
|
|
2
2
|
module VERSION
|
|
3
3
|
MAJOR = 4
|
|
4
4
|
MINOR = 2
|
|
5
|
-
TINY =
|
|
5
|
+
TINY = 10
|
|
6
6
|
RELEASE_CANDIDATE = nil
|
|
7
7
|
|
|
8
8
|
STRING = [MAJOR, MINOR, TINY, RELEASE_CANDIDATE].compact.join('.')
|
|
9
9
|
TAG = "REL_#{[MAJOR, MINOR, TINY, RELEASE_CANDIDATE].compact.join('_')}".upcase.gsub(/\.|-/, '_')
|
|
10
10
|
FULL_VERSION = "#{[MAJOR, MINOR, TINY, RELEASE_CANDIDATE].compact.join('.')}"
|
|
11
|
-
|
|
11
|
+
|
|
12
12
|
class << self
|
|
13
13
|
def to_s
|
|
14
14
|
STRING
|
|
15
15
|
end
|
|
16
|
-
|
|
16
|
+
|
|
17
17
|
def ==(arg)
|
|
18
18
|
STRING == arg
|
|
19
19
|
end
|
|
20
20
|
end
|
|
21
21
|
end
|
|
22
|
-
|
|
22
|
+
|
|
23
23
|
NAME = "RedCloth"
|
|
24
24
|
GEM_NAME = NAME
|
|
25
25
|
URL = "http://redcloth.org/"
|
data/redcloth.gemspec
CHANGED
|
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
|
|
|
27
27
|
s.files -= Dir['lib/**/*.dll']
|
|
28
28
|
s.files -= Dir['lib/**/*.bundle']
|
|
29
29
|
s.files -= Dir['lib/**/*.so']
|
|
30
|
-
|
|
30
|
+
|
|
31
31
|
s.platform = RUBY_PLATFORM[/java/] || 'ruby'
|
|
32
32
|
case s.platform.to_s
|
|
33
33
|
when /java/
|
|
@@ -38,15 +38,17 @@ Gem::Specification.new do |s|
|
|
|
38
38
|
s.extensions = Dir['ext/**/extconf.rb']
|
|
39
39
|
end
|
|
40
40
|
|
|
41
|
-
s.add_development_dependency('bundler', '~> 1.
|
|
42
|
-
s.add_development_dependency('rake', '~> 0.
|
|
41
|
+
s.add_development_dependency('bundler', '~> 1.3.4')
|
|
42
|
+
s.add_development_dependency('rake', '~> 10.0.3')
|
|
43
43
|
s.add_development_dependency('rspec', '~> 2.4')
|
|
44
44
|
s.add_development_dependency('diff-lcs', '~> 1.1.2')
|
|
45
|
-
|
|
45
|
+
|
|
46
46
|
# Have to load these even though they're only needed for
|
|
47
47
|
# gem packaging. Otherwise, Bundler complains that they're
|
|
48
48
|
# not installed even though they're not required.
|
|
49
49
|
# See https://github.com/carlhuda/bundler/issues/issue/1021
|
|
50
50
|
s.add_development_dependency('rvm', '~> 1.2.6')
|
|
51
51
|
s.add_development_dependency('rake-compiler', '~> 0.7.1')
|
|
52
|
-
|
|
52
|
+
|
|
53
|
+
s.license = "MIT"
|
|
54
|
+
end
|
metadata
CHANGED
|
@@ -1,131 +1,125 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: assplecake-RedCloth
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 4.2.10
|
|
5
5
|
prerelease:
|
|
6
|
-
segments:
|
|
7
|
-
- 4
|
|
8
|
-
- 2
|
|
9
|
-
- 9
|
|
10
|
-
version: 4.2.9
|
|
11
6
|
platform: ruby
|
|
12
|
-
authors:
|
|
7
|
+
authors:
|
|
13
8
|
- Jason Garber
|
|
14
9
|
- why the lucky stiff
|
|
15
10
|
- Ola Bini
|
|
16
11
|
autorequire:
|
|
17
12
|
bindir: bin
|
|
18
13
|
cert_chain: []
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
dependencies:
|
|
23
|
-
- !ruby/object:Gem::Dependency
|
|
14
|
+
date: 2014-02-05 00:00:00.000000000 Z
|
|
15
|
+
dependencies:
|
|
16
|
+
- !ruby/object:Gem::Dependency
|
|
24
17
|
name: bundler
|
|
25
|
-
|
|
26
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
|
18
|
+
requirement: !ruby/object:Gem::Requirement
|
|
27
19
|
none: false
|
|
28
|
-
requirements:
|
|
20
|
+
requirements:
|
|
29
21
|
- - ~>
|
|
30
|
-
- !ruby/object:Gem::Version
|
|
31
|
-
|
|
32
|
-
segments:
|
|
33
|
-
- 1
|
|
34
|
-
- 0
|
|
35
|
-
- 10
|
|
36
|
-
version: 1.0.10
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 1.3.4
|
|
37
24
|
type: :development
|
|
38
|
-
version_requirements: *id001
|
|
39
|
-
- !ruby/object:Gem::Dependency
|
|
40
|
-
name: rake
|
|
41
25
|
prerelease: false
|
|
42
|
-
|
|
26
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
43
27
|
none: false
|
|
44
|
-
requirements:
|
|
28
|
+
requirements:
|
|
45
29
|
- - ~>
|
|
46
|
-
- !ruby/object:Gem::Version
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: 1.3.4
|
|
32
|
+
- !ruby/object:Gem::Dependency
|
|
33
|
+
name: rake
|
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
|
35
|
+
none: false
|
|
36
|
+
requirements:
|
|
37
|
+
- - ~>
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: 10.0.3
|
|
53
40
|
type: :development
|
|
54
|
-
version_requirements: *id002
|
|
55
|
-
- !ruby/object:Gem::Dependency
|
|
56
|
-
name: rspec
|
|
57
41
|
prerelease: false
|
|
58
|
-
|
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
43
|
+
none: false
|
|
44
|
+
requirements:
|
|
45
|
+
- - ~>
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: 10.0.3
|
|
48
|
+
- !ruby/object:Gem::Dependency
|
|
49
|
+
name: rspec
|
|
50
|
+
requirement: !ruby/object:Gem::Requirement
|
|
59
51
|
none: false
|
|
60
|
-
requirements:
|
|
52
|
+
requirements:
|
|
61
53
|
- - ~>
|
|
62
|
-
- !ruby/object:Gem::Version
|
|
63
|
-
|
|
64
|
-
segments:
|
|
65
|
-
- 2
|
|
66
|
-
- 4
|
|
67
|
-
version: "2.4"
|
|
54
|
+
- !ruby/object:Gem::Version
|
|
55
|
+
version: '2.4'
|
|
68
56
|
type: :development
|
|
69
|
-
version_requirements: *id003
|
|
70
|
-
- !ruby/object:Gem::Dependency
|
|
71
|
-
name: diff-lcs
|
|
72
57
|
prerelease: false
|
|
73
|
-
|
|
58
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
74
59
|
none: false
|
|
75
|
-
requirements:
|
|
60
|
+
requirements:
|
|
76
61
|
- - ~>
|
|
77
|
-
- !ruby/object:Gem::Version
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
62
|
+
- !ruby/object:Gem::Version
|
|
63
|
+
version: '2.4'
|
|
64
|
+
- !ruby/object:Gem::Dependency
|
|
65
|
+
name: diff-lcs
|
|
66
|
+
requirement: !ruby/object:Gem::Requirement
|
|
67
|
+
none: false
|
|
68
|
+
requirements:
|
|
69
|
+
- - ~>
|
|
70
|
+
- !ruby/object:Gem::Version
|
|
83
71
|
version: 1.1.2
|
|
84
72
|
type: :development
|
|
85
|
-
version_requirements: *id004
|
|
86
|
-
- !ruby/object:Gem::Dependency
|
|
87
|
-
name: rvm
|
|
88
73
|
prerelease: false
|
|
89
|
-
|
|
74
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
90
75
|
none: false
|
|
91
|
-
requirements:
|
|
76
|
+
requirements:
|
|
92
77
|
- - ~>
|
|
93
|
-
- !ruby/object:Gem::Version
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
78
|
+
- !ruby/object:Gem::Version
|
|
79
|
+
version: 1.1.2
|
|
80
|
+
- !ruby/object:Gem::Dependency
|
|
81
|
+
name: rvm
|
|
82
|
+
requirement: !ruby/object:Gem::Requirement
|
|
83
|
+
none: false
|
|
84
|
+
requirements:
|
|
85
|
+
- - ~>
|
|
86
|
+
- !ruby/object:Gem::Version
|
|
99
87
|
version: 1.2.6
|
|
100
88
|
type: :development
|
|
101
|
-
version_requirements: *id005
|
|
102
|
-
- !ruby/object:Gem::Dependency
|
|
103
|
-
name: rake-compiler
|
|
104
89
|
prerelease: false
|
|
105
|
-
|
|
90
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
106
91
|
none: false
|
|
107
|
-
requirements:
|
|
92
|
+
requirements:
|
|
108
93
|
- - ~>
|
|
109
|
-
- !ruby/object:Gem::Version
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: 1.2.6
|
|
96
|
+
- !ruby/object:Gem::Dependency
|
|
97
|
+
name: rake-compiler
|
|
98
|
+
requirement: !ruby/object:Gem::Requirement
|
|
99
|
+
none: false
|
|
100
|
+
requirements:
|
|
101
|
+
- - ~>
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
115
103
|
version: 0.7.1
|
|
116
104
|
type: :development
|
|
117
|
-
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
none: false
|
|
108
|
+
requirements:
|
|
109
|
+
- - ~>
|
|
110
|
+
- !ruby/object:Gem::Version
|
|
111
|
+
version: 0.7.1
|
|
118
112
|
description: Textile parser for Ruby with auto_link support.
|
|
119
113
|
email: assplecake@gmail.com
|
|
120
|
-
executables:
|
|
114
|
+
executables:
|
|
121
115
|
- redcloth
|
|
122
|
-
extensions:
|
|
116
|
+
extensions:
|
|
123
117
|
- ext/redcloth_scan/extconf.rb
|
|
124
|
-
extra_rdoc_files:
|
|
118
|
+
extra_rdoc_files:
|
|
125
119
|
- README.rdoc
|
|
126
120
|
- COPYING
|
|
127
121
|
- CHANGELOG
|
|
128
|
-
files:
|
|
122
|
+
files:
|
|
129
123
|
- .gemtest
|
|
130
124
|
- .rspec
|
|
131
125
|
- CHANGELOG
|
|
@@ -189,12 +183,11 @@ files:
|
|
|
189
183
|
- ext/redcloth_scan/redcloth_scan.c
|
|
190
184
|
- ext/redcloth_scan/redcloth.h
|
|
191
185
|
- ext/redcloth_scan/extconf.rb
|
|
192
|
-
has_rdoc: true
|
|
193
186
|
homepage: http://redcloth.org
|
|
194
|
-
licenses:
|
|
195
|
-
|
|
187
|
+
licenses:
|
|
188
|
+
- MIT
|
|
196
189
|
post_install_message:
|
|
197
|
-
rdoc_options:
|
|
190
|
+
rdoc_options:
|
|
198
191
|
- --charset=UTF-8
|
|
199
192
|
- --line-numbers
|
|
200
193
|
- --inline-source
|
|
@@ -202,36 +195,35 @@ rdoc_options:
|
|
|
202
195
|
- RedCloth
|
|
203
196
|
- --main
|
|
204
197
|
- README.rdoc
|
|
205
|
-
require_paths:
|
|
198
|
+
require_paths:
|
|
206
199
|
- lib
|
|
207
200
|
- lib/case_sensitive_require
|
|
208
201
|
- ext
|
|
209
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
202
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
210
203
|
none: false
|
|
211
|
-
requirements:
|
|
212
|
-
- -
|
|
213
|
-
- !ruby/object:Gem::Version
|
|
214
|
-
|
|
215
|
-
segments:
|
|
204
|
+
requirements:
|
|
205
|
+
- - ! '>='
|
|
206
|
+
- !ruby/object:Gem::Version
|
|
207
|
+
version: '0'
|
|
208
|
+
segments:
|
|
216
209
|
- 0
|
|
217
|
-
|
|
218
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
210
|
+
hash: 3232329881498193384
|
|
211
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
219
212
|
none: false
|
|
220
|
-
requirements:
|
|
221
|
-
- -
|
|
222
|
-
- !ruby/object:Gem::Version
|
|
223
|
-
|
|
224
|
-
segments:
|
|
213
|
+
requirements:
|
|
214
|
+
- - ! '>='
|
|
215
|
+
- !ruby/object:Gem::Version
|
|
216
|
+
version: '0'
|
|
217
|
+
segments:
|
|
225
218
|
- 0
|
|
226
|
-
|
|
219
|
+
hash: 3232329881498193384
|
|
227
220
|
requirements: []
|
|
228
|
-
|
|
229
221
|
rubyforge_project: assplecake-redcloth
|
|
230
|
-
rubygems_version: 1.
|
|
222
|
+
rubygems_version: 1.8.23
|
|
231
223
|
signing_key:
|
|
232
224
|
specification_version: 3
|
|
233
|
-
summary: RedCloth-4.2.
|
|
234
|
-
test_files:
|
|
225
|
+
summary: RedCloth-4.2.10
|
|
226
|
+
test_files:
|
|
235
227
|
- spec/benchmark_spec.rb
|
|
236
228
|
- spec/custom_tags_spec.rb
|
|
237
229
|
- spec/erb_spec.rb
|