gilenson 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,7 @@
1
+ === 1.1.1 / 2010-09-16
2
+
3
+ * Восстановлена совместимость с Ruby 1.9
4
+
1
5
  === 1.1.0 / 2010-08-15
2
6
 
3
7
  * Модули для интеграции с различными форматтерами теперь живут прямо тут а не в rutils.
@@ -1,5 +1,6 @@
1
+ # -*- encoding: utf-8 -*-
1
2
  class Gilenson
2
- VERSION = '1.1.0'
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, "need RedCloth 3.x" unless RedCloth::VERSION.to_s =~ /^3/
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, "need RedCloth 4.x" unless RedCloth::VERSION.to_s =~ /^4/
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: 19
4
+ hash: 17
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 0
10
- version: 1.1.0
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-08-16 00:00:00 +02:00
18
+ date: 2010-09-16 00:00:00 +02:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency