Sha256: d673f913ab4c7b66b3026c95bd251b040a7705f79b5e1738bf122560bd553d3b
Contents?: true
Size: 1.1 KB
Versions: 1
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true module Jekyll class RelatedPosts class << self attr_accessor :lsi end attr_reader :post, :site def initialize(post) @post = post @site = post.site Jekyll::External.require_with_graceful_fail("classifier-reborn") if site.lsi end def build return [] unless site.posts.docs.size > 1 if site.lsi build_index lsi_related_posts else most_recent_posts end end def build_index self.class.lsi ||= begin lsi = ClassifierReborn::LSI.new(:auto_rebuild => false) Jekyll.logger.info("Populating LSI...") site.posts.docs.each do |x| lsi.add_item(x) end Jekyll.logger.info("Rebuilding index...") lsi.build_index Jekyll.logger.info("") lsi end end def lsi_related_posts self.class.lsi.find_related(post, 11) end def most_recent_posts @most_recent_posts ||= (site.posts.docs.last(11).reverse - [post]).first(10) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ngage-0.0.0 | lib/ngage/jekyll/related_posts.rb |