Class: Jekyll::RelatedPosts
- Inherits:
-
Object
- Object
- Jekyll::RelatedPosts
- Defined in:
- lib/jekyll/related_posts.rb
Class Attribute Summary collapse
-
.lsi ⇒ Object
Returns the value of attribute lsi.
Instance Attribute Summary collapse
-
#post ⇒ Object
readonly
Returns the value of attribute post.
-
#site ⇒ Object
readonly
Returns the value of attribute site.
Instance Method Summary collapse
- #build ⇒ Object
- #build_index ⇒ Object
- #display(output) ⇒ Object
-
#initialize(post) ⇒ RelatedPosts
constructor
A new instance of RelatedPosts.
- #lsi_related_posts ⇒ Object
- #most_recent_posts ⇒ Object
Constructor Details
#initialize(post) ⇒ RelatedPosts
Returns a new instance of RelatedPosts.
10 11 12 13 14 |
# File 'lib/jekyll/related_posts.rb', line 10 def initialize(post) @post = post @site = post.site require 'classifier' if site.lsi end |
Class Attribute Details
.lsi ⇒ Object
Returns the value of attribute lsi.
5 6 7 |
# File 'lib/jekyll/related_posts.rb', line 5 def lsi @lsi end |
Instance Attribute Details
#post ⇒ Object (readonly)
Returns the value of attribute post.
8 9 10 |
# File 'lib/jekyll/related_posts.rb', line 8 def post @post end |
#site ⇒ Object (readonly)
Returns the value of attribute site.
8 9 10 |
# File 'lib/jekyll/related_posts.rb', line 8 def site @site end |
Instance Method Details
#build ⇒ Object
16 17 18 19 20 21 22 23 24 25 |
# File 'lib/jekyll/related_posts.rb', line 16 def build return [] unless self.site.posts.size > 1 if self.site.lsi build_index else most_recent_posts end end |
#build_index ⇒ Object
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/jekyll/related_posts.rb', line 28 def build_index self.class.lsi ||= begin lsi = Classifier::LSI.new(:auto_rebuild => false) display("Populating LSI...") self.site.posts.each do |x| lsi.add_item(x) end display("Rebuilding index...") lsi.build_index display("") lsi end end |
#display(output) ⇒ Object
53 54 55 56 57 |
# File 'lib/jekyll/related_posts.rb', line 53 def display(output) $stdout.print("\n") $stdout.print(Jekyll.logger.formatted_topic(output)) $stdout.flush end |
#lsi_related_posts ⇒ Object
44 45 46 |
# File 'lib/jekyll/related_posts.rb', line 44 def self.class.lsi.(post.content, 11) - [self.post] end |
#most_recent_posts ⇒ Object
48 49 50 51 |
# File 'lib/jekyll/related_posts.rb', line 48 def most_recent_posts recent_posts = self.site.posts.reverse - [self.post] recent_posts.first(10) end |