gilenson 1.1.0 → 1.1.1
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/History.txt +4 -0
- data/lib/gilenson.rb +3 -2
- data/test/test_integration_redcloth3.rb +1 -1
- data/test/test_integration_redcloth4.rb +1 -1
- metadata +4 -4
data/History.txt
CHANGED
data/lib/gilenson.rb
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
1
2
|
class Gilenson
|
|
2
|
-
VERSION = '1.1.
|
|
3
|
+
VERSION = '1.1.1'
|
|
3
4
|
autoload :BlueClothExtra, File.dirname(__FILE__) + '/extras/bluecloth_extra'
|
|
4
5
|
autoload :RedClothExtra, File.dirname(__FILE__) + '/extras/redcloth_extra'
|
|
5
6
|
autoload :RDiscountExtra, File.dirname(__FILE__) + '/extras/rdiscount_extra'
|
|
@@ -574,4 +575,4 @@ class Gilenson
|
|
|
574
575
|
end
|
|
575
576
|
end
|
|
576
577
|
|
|
577
|
-
Object::String.send(:include, Gilenson::StringFormatting)
|
|
578
|
+
Object::String.send(:include, Gilenson::StringFormatting)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
2
|
begin
|
|
3
3
|
require 'redcloth'
|
|
4
|
-
raise LoadError, "
|
|
4
|
+
raise LoadError, "Need RedCloth 3.x to run this test" unless RedCloth::VERSION.to_s =~ /^3/
|
|
5
5
|
|
|
6
6
|
# Интеграция с RedCloth - Textile.
|
|
7
7
|
# Нужно иметь в виду что Textile осуществляет свою обработку типографики, которую мы подменяем!
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
2
|
begin
|
|
3
3
|
require 'redcloth'
|
|
4
|
-
raise LoadError, "
|
|
4
|
+
raise LoadError, "Need RedCloth 4.x to run this test" unless RedCloth::VERSION.to_s =~ /^4/
|
|
5
5
|
|
|
6
6
|
# Интеграция с RedCloth 4 - Textile.
|
|
7
7
|
class Redcloth4IntegrationTest < Test::Unit::TestCase
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gilenson
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 17
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 1.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 1.1.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Julik Tarkhanov
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-
|
|
18
|
+
date: 2010-09-16 00:00:00 +02:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|