RedCloth 4.2.5-java → 4.2.7-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/CHANGELOG +12 -0
- data/README.rdoc +1 -1
- data/lib/redcloth/formatters/latex.rb +2 -2
- data/lib/redcloth/formatters/latex_entities.yml +2 -2
- data/lib/redcloth/version.rb +1 -1
- data/lib/redcloth_scan.jar +0 -0
- data/redcloth.gemspec +3 -3
- data/spec/fixtures/basic.yml +1 -1
- metadata +13 -5
data/CHANGELOG
CHANGED
@@ -1,3 +1,15 @@
|
|
1
|
+
== 4.2.7 / Febrary 10, 2011
|
2
|
+
|
3
|
+
* Fixed typo in gemspec to make case-sensitive require work. [Gabe da Silveira]
|
4
|
+
* Tested installing the gem and requiring it with both cases on Ubuntu 8.04, 10.10 and OS X Version 10.6.6.
|
5
|
+
* Have spaces around the en-dash in LaTeX [Benjamin Quorning]
|
6
|
+
* Turned double-quote close to smart quotes in LaTeX [Jonathan D. Blake]
|
7
|
+
|
8
|
+
=== 4.2.6 / February 9, 2011
|
9
|
+
|
10
|
+
* Add case-sensitive require back into the gemspec.
|
11
|
+
* Fix rdoc options in gemspec.
|
12
|
+
|
1
13
|
=== 4.2.5 / February 7, 2011
|
2
14
|
|
3
15
|
* Fix bundler and rubygems-test incompatibilities. Working around bug:
|
data/README.rdoc
CHANGED
@@ -241,7 +241,7 @@ module RedCloth::Formatters::LATEX
|
|
241
241
|
end
|
242
242
|
|
243
243
|
def quote2(opts)
|
244
|
-
"``#{opts[:text]}
|
244
|
+
"``#{opts[:text]}''"
|
245
245
|
end
|
246
246
|
|
247
247
|
def ellipsis(opts)
|
@@ -253,7 +253,7 @@ module RedCloth::Formatters::LATEX
|
|
253
253
|
end
|
254
254
|
|
255
255
|
def endash(opts)
|
256
|
-
"--"
|
256
|
+
" -- "
|
257
257
|
end
|
258
258
|
|
259
259
|
def arrow(opts)
|
data/lib/redcloth/version.rb
CHANGED
data/lib/redcloth_scan.jar
CHANGED
Binary file
|
data/redcloth.gemspec
CHANGED
@@ -19,9 +19,9 @@ Gem::Specification.new do |s|
|
|
19
19
|
s.files = Dir['.gemtest', '.rspec', 'CHANGELOG', 'COPYING', 'Gemfile', 'README.rdoc', 'Rakefile', 'doc/**/*', 'bin/**/*', 'lib/**/*', 'redcloth.gemspec', 'spec/**/*', 'tasks/**/*']
|
20
20
|
s.test_files = Dir['spec/**/*']
|
21
21
|
s.executables = ['redcloth']
|
22
|
-
s.extra_rdoc_files = ["
|
23
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
24
|
-
s.
|
22
|
+
s.extra_rdoc_files = ["README.rdoc", "COPYING", "CHANGELOG"]
|
23
|
+
s.rdoc_options = ["--charset=UTF-8", "--line-numbers", "--inline-source", "--title", "RedCloth", "--main", "README.rdoc"]
|
24
|
+
s.require_paths += ["lib/case_sensitive_require", "ext"]
|
25
25
|
|
26
26
|
s.files -= Dir['lib/redcloth.jar']
|
27
27
|
s.files -= Dir['lib/**/*.dll']
|
data/spec/fixtures/basic.yml
CHANGED
@@ -173,7 +173,7 @@ name: single hyphens with spaces
|
|
173
173
|
desc: Single hyphens are replaced with en-dashes if they are surrounded by spaces.
|
174
174
|
in: Observe - tiny and brief.
|
175
175
|
html: <p>Observe – tiny and brief.</p>
|
176
|
-
latex: "Observe--tiny and brief.\n\n"
|
176
|
+
latex: "Observe -- tiny and brief.\n\n"
|
177
177
|
---
|
178
178
|
name: midword hyphens
|
179
179
|
desc: Single hyphens are left alone if not surrounded by spaces.
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 4
|
7
7
|
- 2
|
8
|
-
-
|
9
|
-
version: 4.2.
|
8
|
+
- 7
|
9
|
+
version: 4.2.7
|
10
10
|
platform: java
|
11
11
|
authors:
|
12
12
|
- Jason Garber
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2011-02-
|
19
|
+
date: 2011-02-11 00:00:00 -06:00
|
20
20
|
default_executable: redcloth
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
@@ -109,8 +109,8 @@ executables:
|
|
109
109
|
extensions: []
|
110
110
|
|
111
111
|
extra_rdoc_files:
|
112
|
-
- COPYING
|
113
112
|
- README.rdoc
|
113
|
+
- COPYING
|
114
114
|
- CHANGELOG
|
115
115
|
files:
|
116
116
|
- .gemtest
|
@@ -179,8 +179,16 @@ licenses: []
|
|
179
179
|
post_install_message:
|
180
180
|
rdoc_options:
|
181
181
|
- --charset=UTF-8
|
182
|
+
- --line-numbers
|
183
|
+
- --inline-source
|
184
|
+
- --title
|
185
|
+
- RedCloth
|
186
|
+
- --main
|
187
|
+
- README.rdoc
|
182
188
|
require_paths:
|
183
189
|
- lib
|
190
|
+
- lib/case_sensitive_require
|
191
|
+
- ext
|
184
192
|
required_ruby_version: !ruby/object:Gem::Requirement
|
185
193
|
requirements:
|
186
194
|
- - ">="
|
@@ -201,7 +209,7 @@ rubyforge_project: redcloth
|
|
201
209
|
rubygems_version: 1.3.6
|
202
210
|
signing_key:
|
203
211
|
specification_version: 3
|
204
|
-
summary: RedCloth-4.2.
|
212
|
+
summary: RedCloth-4.2.7
|
205
213
|
test_files:
|
206
214
|
- spec/benchmark_spec.rb
|
207
215
|
- spec/custom_tags_spec.rb
|