RedCloth 4.2.4.pre3-java → 4.2.5-java
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of RedCloth might be problematic. Click here for more details.
- data/.gemtest +0 -0
- data/CHANGELOG +9 -1
- data/COPYING +1 -1
- data/Gemfile +5 -0
- data/{README → README.rdoc} +11 -9
- data/Rakefile +11 -3
- data/lib/redcloth/formatters/html.rb +2 -2
- data/lib/redcloth/version.rb +3 -3
- data/lib/redcloth_scan.jar +0 -0
- data/redcloth.gemspec +13 -9
- data/spec/benchmark_spec.rb +1 -1
- data/spec/fixtures/html.yml +9 -1
- data/spec/parser_spec.rb +7 -0
- data/tasks/compile.rake +3 -3
- data/tasks/gems.rake +1 -2
- data/tasks/rspec.rake +4 -2
- data/tasks/rvm.rake +43 -7
- metadata +94 -43
- data/.gitignore +0 -25
- data/.rvmrc +0 -1
- data/Gemfile.lock +0 -31
- data/Manifest +0 -52
- data/setup.rb +0 -1585
- data/test/ragel_profiler.rb +0 -73
- data/test/validate_fixtures.rb +0 -74
data/.gemtest
ADDED
File without changes
|
data/CHANGELOG
CHANGED
@@ -1,5 +1,13 @@
|
|
1
|
-
===
|
1
|
+
=== 4.2.5 / February 7, 2011
|
2
2
|
|
3
|
+
* Fix bundler and rubygems-test incompatibilities. Working around bug:
|
4
|
+
https://github.com/carlhuda/bundler/issues/issue/1021
|
5
|
+
|
6
|
+
=== 4.2.4 / February 7, 2011
|
7
|
+
|
8
|
+
* Add .gemtest to opt-in to rubygems-test program (gem install rubygems-test to participate)
|
9
|
+
* Allow attributes to be set on hr and br tags [Jesse Stormier]
|
10
|
+
* Fix dangling <li> [Stephen Bannasch]
|
3
11
|
* Switch to bundler and rake-compiler for gem management/compilation
|
4
12
|
* Fix invalid YAML for Ruby 1.9.2 [Aaron Patterson]
|
5
13
|
|
data/COPYING
CHANGED
data/Gemfile
CHANGED
data/{README → README.rdoc}
RENAMED
@@ -27,17 +27,17 @@ compiled from C sources automatically when you install the gem on the ruby
|
|
27
27
|
platform. Precompiled binary gems are provided for JRuby and Win32 platforms.
|
28
28
|
|
29
29
|
RedCloth can be compiled with <tt>rake compile</tt>. Ragel 6.3 or greater is
|
30
|
-
|
31
|
-
simply use RedCloth.
|
30
|
+
required. Again, Ragel is NOT needed to simply use RedCloth.
|
32
31
|
|
33
32
|
=== Supported platforms
|
34
33
|
|
35
|
-
By default, the rake compile task builds a native C
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
indicates in which language your
|
34
|
+
By default, the rake compile task builds a native C extension (MRI 1.8 or 1.9)
|
35
|
+
or Java extension (JRuby 1.3). A pure Ruby version can also be generated, but
|
36
|
+
it's super slow and Ruby 1.8-only. The JRuby and pure-Ruby extensions don't
|
37
|
+
support multi-byte characters. Cross-compiling for win32 uses rake-compiler.
|
38
|
+
|
39
|
+
The RedCloth::EXTENSION_LANGUAGE constant indicates in which language your
|
40
|
+
copy of RedCloth is compiled.
|
41
41
|
|
42
42
|
=== Compiling gems
|
43
43
|
|
@@ -47,6 +47,8 @@ takes care of compiling and packaging all gems.
|
|
47
47
|
|
48
48
|
# gem install bundler
|
49
49
|
# bundle install
|
50
|
+
# rake-compiler cross-ruby VERSION=1.8.6-p398
|
51
|
+
# rake-compiler cross-ruby VERSION=1.9.1-p243
|
50
52
|
# rake build:all
|
51
53
|
|
52
54
|
== Bugs
|
@@ -55,7 +57,7 @@ Please submit bugs to http://jgarber.lighthouseapp.com/projects/13054-redcloth/o
|
|
55
57
|
|
56
58
|
== Using RedCloth
|
57
59
|
|
58
|
-
RedCloth is simply an extension of the String class
|
60
|
+
RedCloth is simply an extension of the String class that can handle
|
59
61
|
Textile formatting. Use it like a String and output HTML with its
|
60
62
|
RedCloth#to_html method.
|
61
63
|
|
data/Rakefile
CHANGED
@@ -1,10 +1,18 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
require 'rubygems'
|
3
3
|
require 'bundler'
|
4
|
-
Bundler.setup
|
5
|
-
Bundler::GemHelper.install_tasks
|
6
4
|
ENV['RUBYOPT'] = nil # Necessary to prevent Bundler from *&^%$#ing up rake-compiler.
|
7
5
|
|
8
6
|
require 'rake/clean'
|
9
7
|
|
10
|
-
|
8
|
+
if File.directory? "ragel"
|
9
|
+
Bundler.setup
|
10
|
+
Bundler::GemHelper.install_tasks
|
11
|
+
Dir['tasks/**/*.rake'].each { |rake| load File.expand_path(rake) }
|
12
|
+
else
|
13
|
+
# Omit generation/compile tasks and dependencies. In a gem package
|
14
|
+
# we only need tasks and dependencies required for running specs.
|
15
|
+
Bundler.settings.without = [:compilation]
|
16
|
+
Bundler.setup(:default, :development)
|
17
|
+
load 'tasks/rspec.rake'
|
18
|
+
end
|
@@ -15,7 +15,7 @@ module RedCloth::Formatters::HTML
|
|
15
15
|
end
|
16
16
|
|
17
17
|
def hr(opts)
|
18
|
-
"<hr />\n"
|
18
|
+
"<hr#{pba(opts)} />\n"
|
19
19
|
end
|
20
20
|
|
21
21
|
def acronym(opts)
|
@@ -205,7 +205,7 @@ module RedCloth::Formatters::HTML
|
|
205
205
|
if hard_breaks == false
|
206
206
|
"\n"
|
207
207
|
else
|
208
|
-
"<br />\n"
|
208
|
+
"<br#{pba(opts)} />\n"
|
209
209
|
end
|
210
210
|
end
|
211
211
|
|
data/lib/redcloth/version.rb
CHANGED
@@ -2,10 +2,10 @@ module RedCloth
|
|
2
2
|
module VERSION
|
3
3
|
MAJOR = 4
|
4
4
|
MINOR = 2
|
5
|
-
TINY =
|
6
|
-
RELEASE_CANDIDATE =
|
5
|
+
TINY = 5
|
6
|
+
RELEASE_CANDIDATE = nil
|
7
7
|
|
8
|
-
STRING = [MAJOR, MINOR, TINY, RELEASE_CANDIDATE].join('.')
|
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
|
|
Binary file
|
data/redcloth.gemspec
CHANGED
@@ -16,15 +16,13 @@ Gem::Specification.new do |s|
|
|
16
16
|
s.rubygems_version = "1.3.7"
|
17
17
|
s.default_executable = "redcloth"
|
18
18
|
|
19
|
-
s.files =
|
20
|
-
s.test_files =
|
21
|
-
s.executables =
|
22
|
-
s.extra_rdoc_files = ["COPYING", "README", "CHANGELOG"]
|
19
|
+
s.files = Dir['.gemtest', '.rspec', 'CHANGELOG', 'COPYING', 'Gemfile', 'README.rdoc', 'Rakefile', 'doc/**/*', 'bin/**/*', 'lib/**/*', 'redcloth.gemspec', 'spec/**/*', 'tasks/**/*']
|
20
|
+
s.test_files = Dir['spec/**/*']
|
21
|
+
s.executables = ['redcloth']
|
22
|
+
s.extra_rdoc_files = ["COPYING", "README.rdoc", "CHANGELOG"]
|
23
23
|
s.rdoc_options = ["--charset=UTF-8"]
|
24
24
|
s.require_path = "lib"
|
25
25
|
|
26
|
-
s.files -= Dir['ext/**/*']
|
27
|
-
s.files -= Dir['ragel/*']
|
28
26
|
s.files -= Dir['lib/redcloth.jar']
|
29
27
|
s.files -= Dir['lib/**/*.dll']
|
30
28
|
s.files -= Dir['lib/**/*.bundle']
|
@@ -38,11 +36,17 @@ Gem::Specification.new do |s|
|
|
38
36
|
s.files += %w[attributes inline scan].map {|f| "ext/redcloth_scan/redcloth_#{f}.c"}
|
39
37
|
s.files += ["ext/redcloth_scan/redcloth.h"]
|
40
38
|
s.extensions = Dir['ext/**/extconf.rb']
|
41
|
-
s.add_development_dependency('rvm')
|
42
39
|
end
|
43
40
|
|
41
|
+
s.add_development_dependency('bundler', '~> 1.0.10')
|
44
42
|
s.add_development_dependency('rake', '~> 0.8.7')
|
45
|
-
s.add_development_dependency('rspec', '~> 2.
|
46
|
-
s.add_development_dependency('diff-lcs')
|
43
|
+
s.add_development_dependency('rspec', '~> 2.4')
|
44
|
+
s.add_development_dependency('diff-lcs', '~> 1.1.2')
|
45
|
+
|
46
|
+
# Have to load these even though they're only needed for
|
47
|
+
# gem packaging. Otherwise, Bundler complains that they're
|
48
|
+
# not installed even though they're not required.
|
49
|
+
# See https://github.com/carlhuda/bundler/issues/issue/1021
|
50
|
+
s.add_development_dependency('rvm', '~> 1.2.6')
|
47
51
|
s.add_development_dependency('rake-compiler', '~> 0.7.1')
|
48
52
|
end
|
data/spec/benchmark_spec.rb
CHANGED
@@ -5,7 +5,7 @@ describe "Benchmarking", :type => :formatter do
|
|
5
5
|
platform = RedCloth.const_defined?(:EXTENSION_LANGUAGE) ? RedCloth::EXTENSION_LANGUAGE : (version < "4.0.0" ? "ruby-regex" : "C")
|
6
6
|
|
7
7
|
it "should not be too slow" do
|
8
|
-
puts "Benchmarking version #{version} compiled in #{platform}..."
|
8
|
+
# puts "Benchmarking version #{version} compiled in #{platform}..."
|
9
9
|
fixtures.each do |name, doc|
|
10
10
|
if doc['html']
|
11
11
|
RedCloth.new(doc['in']).to_html
|
data/spec/fixtures/html.yml
CHANGED
@@ -337,4 +337,12 @@ name: notextile beginning the line
|
|
337
337
|
in: |-
|
338
338
|
<notextile><a href="http://a.com">Sir Bobby Robson</a></notextile>, is a famous footballer
|
339
339
|
html: |-
|
340
|
-
<p><a href="http://a.com">Sir Bobby Robson</a>, is a famous footballer</p>
|
340
|
+
<p><a href="http://a.com">Sir Bobby Robson</a>, is a famous footballer</p>
|
341
|
+
---
|
342
|
+
name: br tag with class
|
343
|
+
in: "br(clear). "
|
344
|
+
html: "<br class=\"clear\" />"
|
345
|
+
---
|
346
|
+
name: hr tag with class
|
347
|
+
in: "hr(clear). "
|
348
|
+
html: "<hr class=\"clear\" />"
|
data/spec/parser_spec.rb
CHANGED
@@ -75,6 +75,13 @@ describe RedCloth do
|
|
75
75
|
html = "<p>This is a paragraph</p>\n<p>This is a<br />\nline break.</p>\n<div>\n<p>test</p>\n</div>"
|
76
76
|
RedCloth.new(input).to_html.should == html
|
77
77
|
end
|
78
|
+
|
79
|
+
it "should not add spurious li tags to the end of markup" do
|
80
|
+
input = "* one\n* two\n* three \n\n"
|
81
|
+
failing_input = "* one\n* two\n* three \n\n\n"
|
82
|
+
RedCloth.new(input).to_html.should_not match(/<li>$/)
|
83
|
+
RedCloth.new(failing_input).to_html.should_not match(/<li>$/)
|
84
|
+
end
|
78
85
|
|
79
86
|
if RUBY_VERSION > "1.9.0"
|
80
87
|
it "should preserve character encoding" do
|
data/tasks/compile.rake
CHANGED
@@ -6,8 +6,8 @@ CLEAN.include [
|
|
6
6
|
]
|
7
7
|
CLOBBER.include [
|
8
8
|
'pkg',
|
9
|
-
'**/*.{c}',
|
10
|
-
'lib
|
9
|
+
'**/*.{c,java}',
|
10
|
+
'lib/**/*.{bundle,so,o,obj,pdb,lib,def,exp,jar}',
|
11
11
|
'lib/redcloth_scan.rb',
|
12
12
|
]
|
13
13
|
|
@@ -30,7 +30,7 @@ else
|
|
30
30
|
io.write(<<-EOF)
|
31
31
|
require 'mkmf'
|
32
32
|
CONFIG['warnflags'].gsub!(/-Wshorten-64-to-32/, '') if CONFIG['warnflags']
|
33
|
-
$CFLAGS << ' -O0 -Wall' if CONFIG['CC'] =~ /gcc/
|
33
|
+
$CFLAGS << ' -O0 -Wall -Werror' if CONFIG['CC'] =~ /gcc/
|
34
34
|
dir_config("redcloth_scan")
|
35
35
|
have_library("c", "main")
|
36
36
|
create_makefile("redcloth_scan")
|
data/tasks/gems.rake
CHANGED
data/tasks/rspec.rake
CHANGED
@@ -7,5 +7,7 @@ RSpec::Core::RakeTask.new(:rcov) do |t|
|
|
7
7
|
t.rcov_opts = %w{--exclude osx\/objc,gems\/,spec\/}
|
8
8
|
end
|
9
9
|
|
10
|
-
task :default =>
|
11
|
-
task :spec =>
|
10
|
+
task :default => :spec
|
11
|
+
task :spec => :compile
|
12
|
+
|
13
|
+
RSpec::Core::RakeTask.new(:test) # for rubygems-test
|
data/tasks/rvm.rake
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
namespace :rvm do
|
2
2
|
|
3
|
-
RVM_RUBIES = ['jruby-1.5.
|
3
|
+
RVM_RUBIES = ['jruby-1.5.6' , 'ruby-1.8.6-p398', 'ruby-1.9.1-p243', 'ruby-1.9.2-p136', 'ree-1.8.7-2010.02']
|
4
4
|
RVM_GEMSET_NAME = 'redcloth'
|
5
5
|
|
6
6
|
task :setup do
|
@@ -13,16 +13,51 @@ namespace :rvm do
|
|
13
13
|
end
|
14
14
|
end
|
15
15
|
|
16
|
-
desc "
|
17
|
-
task :
|
18
|
-
|
16
|
+
desc "Runs specs under each rvm ruby"
|
17
|
+
task :spec => :setup do
|
18
|
+
puts rvm_rubies.join(',')
|
19
|
+
rvm_each_rubie do
|
20
|
+
# Make sure all dependencies are installed but ignore Gemfile.lock. It
|
21
|
+
# gets confused when locked to java and running ruby and vice-versa.
|
22
|
+
STDERR << RVM.run('bundle update').stderr
|
23
|
+
|
24
|
+
result = RVM.perform_set_operation(:rake)
|
25
|
+
STDOUT << result.stdout
|
26
|
+
STDERR << result.stderr
|
27
|
+
end
|
19
28
|
end
|
20
29
|
|
21
|
-
desc "
|
22
|
-
task :
|
23
|
-
puts
|
30
|
+
desc "Show rubies"
|
31
|
+
task :rubies => :setup do
|
32
|
+
puts rvm_rubies.join(",")
|
24
33
|
end
|
25
34
|
|
35
|
+
namespace :install do
|
36
|
+
task :rubies => :setup do
|
37
|
+
installed_rubies = RVM.list_strings
|
38
|
+
RVM_RUBIES.each do |rubie|
|
39
|
+
if installed_rubies.include?(rubie)
|
40
|
+
puts "info: Rubie #{rubie} already installed."
|
41
|
+
else
|
42
|
+
good_msg = "info: Rubie #{rubie} installed."
|
43
|
+
bad_msg = "Failed #{rubie} install! Check RVM logs here: #{RVM.path}/log/#{rubie}"
|
44
|
+
puts "info: Rubie #{rubie} installation inprogress. This could take awhile..."
|
45
|
+
if RVM.install(rubie,{})
|
46
|
+
puts(good_msg)
|
47
|
+
RVM.use(rubie)
|
48
|
+
RVM.perform_set_operation(:gem, 'install', 'bundler')
|
49
|
+
RVM.reset_current!
|
50
|
+
else
|
51
|
+
abort(bad_msg)
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
task :remove => :setup do
|
59
|
+
rvm_rubies.each { |rubie| RVM.remove(rubie) }
|
60
|
+
end
|
26
61
|
end
|
27
62
|
|
28
63
|
|
@@ -31,6 +66,7 @@ end
|
|
31
66
|
def rvm_each_rubie
|
32
67
|
rvm_rubies.each do |rubie|
|
33
68
|
RVM.use(rubie)
|
69
|
+
puts "Using #{rubie}"
|
34
70
|
yield
|
35
71
|
end
|
36
72
|
ensure
|
metadata
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: RedCloth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
4
|
+
prerelease: false
|
5
5
|
segments:
|
6
6
|
- 4
|
7
7
|
- 2
|
8
|
-
-
|
9
|
-
|
10
|
-
version: 4.2.4.pre3
|
8
|
+
- 5
|
9
|
+
version: 4.2.5
|
11
10
|
platform: java
|
12
11
|
authors:
|
13
12
|
- Jason Garber
|
@@ -17,12 +16,26 @@ autorequire:
|
|
17
16
|
bindir: bin
|
18
17
|
cert_chain: []
|
19
18
|
|
20
|
-
date:
|
19
|
+
date: 2011-02-07 00:00:00 -06:00
|
21
20
|
default_executable: redcloth
|
22
21
|
dependencies:
|
23
22
|
- !ruby/object:Gem::Dependency
|
24
|
-
name:
|
23
|
+
name: bundler
|
25
24
|
version_requirements: &id001 !ruby/object:Gem::Requirement
|
25
|
+
requirements:
|
26
|
+
- - ~>
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
segments:
|
29
|
+
- 1
|
30
|
+
- 0
|
31
|
+
- 10
|
32
|
+
version: 1.0.10
|
33
|
+
requirement: *id001
|
34
|
+
prerelease: false
|
35
|
+
type: :development
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: rake
|
38
|
+
version_requirements: &id002 !ruby/object:Gem::Requirement
|
26
39
|
requirements:
|
27
40
|
- - ~>
|
28
41
|
- !ruby/object:Gem::Version
|
@@ -31,37 +44,53 @@ dependencies:
|
|
31
44
|
- 8
|
32
45
|
- 7
|
33
46
|
version: 0.8.7
|
34
|
-
requirement: *
|
47
|
+
requirement: *id002
|
35
48
|
prerelease: false
|
36
49
|
type: :development
|
37
50
|
- !ruby/object:Gem::Dependency
|
38
51
|
name: rspec
|
39
|
-
version_requirements: &
|
52
|
+
version_requirements: &id003 !ruby/object:Gem::Requirement
|
40
53
|
requirements:
|
41
54
|
- - ~>
|
42
55
|
- !ruby/object:Gem::Version
|
43
56
|
segments:
|
44
57
|
- 2
|
45
|
-
-
|
46
|
-
version: "2.
|
47
|
-
requirement: *
|
58
|
+
- 4
|
59
|
+
version: "2.4"
|
60
|
+
requirement: *id003
|
48
61
|
prerelease: false
|
49
62
|
type: :development
|
50
63
|
- !ruby/object:Gem::Dependency
|
51
64
|
name: diff-lcs
|
52
|
-
version_requirements: &
|
65
|
+
version_requirements: &id004 !ruby/object:Gem::Requirement
|
53
66
|
requirements:
|
54
|
-
- -
|
67
|
+
- - ~>
|
55
68
|
- !ruby/object:Gem::Version
|
56
69
|
segments:
|
57
|
-
-
|
58
|
-
|
59
|
-
|
70
|
+
- 1
|
71
|
+
- 1
|
72
|
+
- 2
|
73
|
+
version: 1.1.2
|
74
|
+
requirement: *id004
|
75
|
+
prerelease: false
|
76
|
+
type: :development
|
77
|
+
- !ruby/object:Gem::Dependency
|
78
|
+
name: rvm
|
79
|
+
version_requirements: &id005 !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ~>
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
segments:
|
84
|
+
- 1
|
85
|
+
- 2
|
86
|
+
- 6
|
87
|
+
version: 1.2.6
|
88
|
+
requirement: *id005
|
60
89
|
prerelease: false
|
61
90
|
type: :development
|
62
91
|
- !ruby/object:Gem::Dependency
|
63
92
|
name: rake-compiler
|
64
|
-
version_requirements: &
|
93
|
+
version_requirements: &id006 !ruby/object:Gem::Requirement
|
65
94
|
requirements:
|
66
95
|
- - ~>
|
67
96
|
- !ruby/object:Gem::Version
|
@@ -70,7 +99,7 @@ dependencies:
|
|
70
99
|
- 7
|
71
100
|
- 1
|
72
101
|
version: 0.7.1
|
73
|
-
requirement: *
|
102
|
+
requirement: *id006
|
74
103
|
prerelease: false
|
75
104
|
type: :development
|
76
105
|
description: Textile parser for Ruby.
|
@@ -81,38 +110,36 @@ extensions: []
|
|
81
110
|
|
82
111
|
extra_rdoc_files:
|
83
112
|
- COPYING
|
84
|
-
- README
|
113
|
+
- README.rdoc
|
85
114
|
- CHANGELOG
|
86
115
|
files:
|
87
|
-
- .
|
88
|
-
- .gitignore
|
116
|
+
- .gemtest
|
89
117
|
- .rspec
|
90
|
-
- .rvmrc
|
91
118
|
- CHANGELOG
|
92
119
|
- COPYING
|
93
120
|
- Gemfile
|
94
|
-
-
|
95
|
-
- Manifest
|
96
|
-
- README
|
121
|
+
- README.rdoc
|
97
122
|
- Rakefile
|
98
|
-
- bin/redcloth
|
99
123
|
- doc/textile_reference.html
|
100
|
-
-
|
124
|
+
- bin/redcloth
|
101
125
|
- lib/redcloth.rb
|
126
|
+
- lib/redcloth_scan.jar
|
127
|
+
- lib/case_sensitive_require/RedCloth.rb
|
102
128
|
- lib/redcloth/erb_extension.rb
|
129
|
+
- lib/redcloth/textile_doc.rb
|
130
|
+
- lib/redcloth/version.rb
|
103
131
|
- lib/redcloth/formatters/base.rb
|
104
132
|
- lib/redcloth/formatters/html.rb
|
105
133
|
- lib/redcloth/formatters/latex.rb
|
106
134
|
- lib/redcloth/formatters/latex_entities.yml
|
107
|
-
- lib/redcloth/textile_doc.rb
|
108
|
-
- lib/redcloth/version.rb
|
109
135
|
- lib/tasks/pureruby.rake
|
110
136
|
- redcloth.gemspec
|
111
|
-
- setup.rb
|
112
137
|
- spec/benchmark_spec.rb
|
113
138
|
- spec/custom_tags_spec.rb
|
114
139
|
- spec/erb_spec.rb
|
115
140
|
- spec/extension_spec.rb
|
141
|
+
- spec/parser_spec.rb
|
142
|
+
- spec/spec_helper.rb
|
116
143
|
- spec/fixtures/basic.yml
|
117
144
|
- spec/fixtures/code.yml
|
118
145
|
- spec/fixtures/definitions.yml
|
@@ -139,17 +166,12 @@ files:
|
|
139
166
|
- spec/formatters/no_span_caps_html_spec.rb
|
140
167
|
- spec/formatters/sanitized_html_spec.rb
|
141
168
|
- spec/formatters/style_filtered_html_spec.rb
|
142
|
-
- spec/parser_spec.rb
|
143
|
-
- spec/spec_helper.rb
|
144
169
|
- tasks/compile.rake
|
145
170
|
- tasks/gems.rake
|
146
171
|
- tasks/ragel_extension_task.rb
|
147
172
|
- tasks/release.rake
|
148
173
|
- tasks/rspec.rake
|
149
174
|
- tasks/rvm.rake
|
150
|
-
- test/ragel_profiler.rb
|
151
|
-
- test/validate_fixtures.rb
|
152
|
-
- lib/redcloth_scan.jar
|
153
175
|
has_rdoc: true
|
154
176
|
homepage: http://redcloth.org
|
155
177
|
licenses: []
|
@@ -168,19 +190,48 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
168
190
|
version: "0"
|
169
191
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
170
192
|
requirements:
|
171
|
-
- - "
|
193
|
+
- - ">="
|
172
194
|
- !ruby/object:Gem::Version
|
173
195
|
segments:
|
174
|
-
-
|
175
|
-
|
176
|
-
- 1
|
177
|
-
version: 1.3.1
|
196
|
+
- 0
|
197
|
+
version: "0"
|
178
198
|
requirements: []
|
179
199
|
|
180
200
|
rubyforge_project: redcloth
|
181
201
|
rubygems_version: 1.3.6
|
182
202
|
signing_key:
|
183
203
|
specification_version: 3
|
184
|
-
summary: RedCloth-4.2.
|
185
|
-
test_files:
|
186
|
-
|
204
|
+
summary: RedCloth-4.2.5
|
205
|
+
test_files:
|
206
|
+
- spec/benchmark_spec.rb
|
207
|
+
- spec/custom_tags_spec.rb
|
208
|
+
- spec/erb_spec.rb
|
209
|
+
- spec/extension_spec.rb
|
210
|
+
- spec/parser_spec.rb
|
211
|
+
- spec/spec_helper.rb
|
212
|
+
- spec/fixtures/basic.yml
|
213
|
+
- spec/fixtures/code.yml
|
214
|
+
- spec/fixtures/definitions.yml
|
215
|
+
- spec/fixtures/extra_whitespace.yml
|
216
|
+
- spec/fixtures/filter_html.yml
|
217
|
+
- spec/fixtures/filter_pba.yml
|
218
|
+
- spec/fixtures/html.yml
|
219
|
+
- spec/fixtures/images.yml
|
220
|
+
- spec/fixtures/instiki.yml
|
221
|
+
- spec/fixtures/links.yml
|
222
|
+
- spec/fixtures/lists.yml
|
223
|
+
- spec/fixtures/poignant.yml
|
224
|
+
- spec/fixtures/sanitize_html.yml
|
225
|
+
- spec/fixtures/table.yml
|
226
|
+
- spec/fixtures/textism.yml
|
227
|
+
- spec/fixtures/threshold.yml
|
228
|
+
- spec/formatters/class_filtered_html_spec.rb
|
229
|
+
- spec/formatters/filtered_html_spec.rb
|
230
|
+
- spec/formatters/html_no_breaks_spec.rb
|
231
|
+
- spec/formatters/html_spec.rb
|
232
|
+
- spec/formatters/id_filtered_html_spec.rb
|
233
|
+
- spec/formatters/latex_spec.rb
|
234
|
+
- spec/formatters/lite_mode_html_spec.rb
|
235
|
+
- spec/formatters/no_span_caps_html_spec.rb
|
236
|
+
- spec/formatters/sanitized_html_spec.rb
|
237
|
+
- spec/formatters/style_filtered_html_spec.rb
|