logophobia-feedzirra 0.0.28 → 0.0.31

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.
@@ -40,5 +40,5 @@ require 'feedzirra/parser/rss'
40
40
  require 'feedzirra/parser/atom'
41
41
 
42
42
  module Feedzirra
43
- VERSION = "0.0.28"
43
+ VERSION = "0.0.31"
44
44
  end
@@ -48,7 +48,6 @@ module Feedzirra
48
48
  def self.feed_classes
49
49
  @feed_classes ||= [
50
50
  Feedzirra::Parser::RSS,
51
- Feedzirra::Parser::AtomFeedBurner,
52
51
  Feedzirra::Parser::Atom
53
52
  ]
54
53
  end
@@ -16,8 +16,8 @@ module Feedzirra
16
16
  include SAXMachine
17
17
  include FeedEntryUtilities
18
18
  element :title
19
+ element :"feedburner:origLink", :as => :orig_url # stupid feedburner does weird things with some feeds, we need to be able to manually distinguis them
19
20
  element :link, :as => :url, :value => :href, :with => {:type => "text/html", :rel => "alternate"}
20
- element :"feedburner:origLink", :as => :url
21
21
  element :name, :as => :author
22
22
  element :content
23
23
  element :summary
@@ -30,8 +30,8 @@ module Feedzirra
30
30
 
31
31
  # RSS 2.0 elements
32
32
  element :title
33
+ element :"feedburner:origLink", :as => :orig_url # stupid feedburner does weird things with some feeds, we need to be able to manually distinguis them
33
34
  element :link, :as => :url
34
- element :"feedburner:origLink", :as => :url
35
35
  element :description, :as => :summary
36
36
  element :author
37
37
  elements :category, :as => :categories
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logophobia-feedzirra
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.28
4
+ version: 0.0.31
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Dix