nokorexi 0.1.2 → 0.1.3

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.
Files changed (2) hide show
  1. data/lib/nokorexi.rb +3 -2
  2. metadata +1 -1
data/lib/nokorexi.rb CHANGED
@@ -4,14 +4,15 @@
4
4
 
5
5
  require 'nokogiri'
6
6
  require 'open-uri'
7
- require 'rexle'
7
+ require 'rexml/document'
8
+ include REXML
8
9
 
9
10
  class Nokorexi
10
11
 
11
12
  def initialize(buffer)
12
13
  buffer = open(buffer, 'UserAgent' => 'Nokorexi').read if buffer[/^http/]
13
14
  raw_doc = Nokogiri::HTML(buffer)
14
- @doc = Rexle.new(raw_doc.xpath('html/body').to_xml)
15
+ @doc = Document.new(raw_doc.xpath('html/body').to_xml)
15
16
  end
16
17
 
17
18
  def to_doc
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: nokorexi
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.2
5
+ version: 0.1.3
6
6
  platform: ruby
7
7
  authors: []
8
8