ruby-reddit 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +4 -0
- data/lib/reddit.rb +2 -2
- metadata +1 -1
data/History.txt
CHANGED
data/lib/reddit.rb
CHANGED
@@ -7,7 +7,7 @@ require "mechanize"
|
|
7
7
|
|
8
8
|
module Reddit
|
9
9
|
|
10
|
-
VERSION = '0.1.
|
10
|
+
VERSION = '0.1.1'
|
11
11
|
|
12
12
|
DefaultOptions = {
|
13
13
|
:page => 0
|
@@ -52,7 +52,7 @@ module Reddit
|
|
52
52
|
date = (item/:"dc:date").inner_html
|
53
53
|
url = parse_description((item/:description).inner_html)
|
54
54
|
|
55
|
-
Link.new(rank, site_id, title, date
|
55
|
+
Link.new(rank, site_id, url, title, date)
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|