ruby-reddit 0.1.0 → 0.1.1

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 (3) hide show
  1. data/History.txt +4 -0
  2. data/lib/reddit.rb +2 -2
  3. metadata +1 -1
@@ -3,3 +3,7 @@
3
3
  * 1 minor enhancement
4
4
  * 1st release. Link scraping from reddit's hot and new pages.
5
5
 
6
+ == 0.1.1 / 2008-01-22
7
+
8
+ * 1 bug fix
9
+ * Link attributes assigned in proper order.
@@ -7,7 +7,7 @@ require "mechanize"
7
7
 
8
8
  module Reddit
9
9
 
10
- VERSION = '0.1.0'
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, url)
55
+ Link.new(rank, site_id, url, title, date)
56
56
  end
57
57
  end
58
58
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-reddit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julia West