summaryrefslogtreecommitdiff
path: root/lib/rss/content/2.0.rb
blob: 3b468248ace8664989cb184ce95ac20e810833d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: false
require "rss/2.0"

module RSS
  Rss.install_ns(CONTENT_PREFIX, CONTENT_URI)

  class Rss
    class Channel
      class Item; include ContentModel; end
    end
  end
end