tidy 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/CHANGES +5 -0
  2. data/VERSION +1 -1
  3. data/lib/tidy/tidybuf.rb +1 -1
  4. metadata +2 -2
data/CHANGES CHANGED
@@ -1,3 +1,8 @@
1
+ V 1.1.2 2005/03/14
2
+
3
+ - Tidybuf.to_s bugfix: added nil check
4
+ @struct.bp ? @struct.bp.to_s(@struct.size) : ''
5
+
1
6
  V 1.1.1 2005/03/07
2
7
 
3
8
  - Bugfix
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.1
1
+ 1.1.2
@@ -36,7 +36,7 @@ class Tidybuf
36
36
  # Convert to string.
37
37
  #
38
38
  def to_s
39
- @struct.bp.to_s(@struct.size)
39
+ @struct.bp ? @struct.bp.to_s(@struct.size) : ''
40
40
  end
41
41
 
42
42
  end
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.6
3
3
  specification_version: 1
4
4
  name: tidy
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.1.1
7
- date: 2005-03-07
6
+ version: 1.1.2
7
+ date: 2005-03-14
8
8
  summary: Ruby interface to HTML Tidy Library Project
9
9
  require_paths:
10
10
  - lib