aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rss2html/feed_item.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rss2html/feed_item.rb')
-rw-r--r--lib/rss2html/feed_item.rb18
1 files changed, 10 insertions, 8 deletions
diff --git a/lib/rss2html/feed_item.rb b/lib/rss2html/feed_item.rb
index a64c9fc..82adb4b 100644
--- a/lib/rss2html/feed_item.rb
+++ b/lib/rss2html/feed_item.rb
@@ -14,14 +14,16 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-class FeedItem
- attr_reader :title, :author, :date, :summary, :url
+module Rss2Html
+ class FeedItem
+ attr_reader :title, :author, :date, :summary, :url
- def initialize(item)
- @title = item.title.content
- @author = item.author.name.content
- @date = item.updated.content
- @summary = item.summary.content.strip
- @url = item.link.href
+ def initialize(item)
+ @title = item.title.content
+ @author = item.author.name.content
+ @date = item.updated.content
+ @summary = item.summary.content.strip
+ @url = item.link.href
+ end
end
end