rubyful_soup 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +6 -0
- data/lib/rubyful_soup.rb +1 -2
- metadata +2 -2
data/CHANGELOG
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
Rubyful Soup Changelog
|
2
2
|
|
3
|
+
1.0.2
|
4
|
+
|
5
|
+
Fixed inconsistency in the way Rubyful Soup imported the htmltools
|
6
|
+
code. It was using the syntax you'd use if htmltools had not been
|
7
|
+
installed as a gem.
|
8
|
+
|
3
9
|
1.0.1
|
4
10
|
|
5
11
|
Changes from James Edward Gray (james at grayproductions dot net) to
|
data/lib/rubyful_soup.rb
CHANGED
@@ -11,8 +11,7 @@
|
|
11
11
|
#This library requires the sgml-parser library, written by Takahiro
|
12
12
|
#Maebashi. The easiest way to get it is to install the "htmltools"
|
13
13
|
#gem.
|
14
|
-
require '
|
15
|
-
require 'sgml-parser'
|
14
|
+
require 'html/sgml-parser'
|
16
15
|
|
17
16
|
#UTF-8 voodoo--does this really work?
|
18
17
|
$KCODE = 'u'
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.4
|
|
3
3
|
specification_version: 1
|
4
4
|
name: rubyful_soup
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 1.0.
|
7
|
-
date: 2005-
|
6
|
+
version: 1.0.2
|
7
|
+
date: 2005-11-04
|
8
8
|
summary: An HTML/XML parser that handles bad markup and provides tree traversal methods.
|
9
9
|
require_paths:
|
10
10
|
- lib
|