planet 0.2.5 → 0.2.6
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/planet.rb +1 -1
- data/lib/planet/version.rb +1 -1
- metadata +1 -1
data/lib/planet.rb
CHANGED
@@ -56,7 +56,7 @@ class Planet
|
|
56
56
|
|
57
57
|
feed.entries.each do |entry|
|
58
58
|
@@_posts << @post = Post.new(
|
59
|
-
title: entry.title,
|
59
|
+
title: entry.title.sanitize,
|
60
60
|
content: entry.content.strip.gsub('<img src="', "<img src=\"#{ blog.url }"),
|
61
61
|
date: entry.published,
|
62
62
|
url: blog.url + entry.url,
|
data/lib/planet/version.rb
CHANGED