Sha256: 1c9a003fafbcfd7f856b222c596f592344f468fca82e6668200ad3279ffb596d

Contents?: true

Size: 1.07 KB

Versions: 10

Compression:

Stored size: 1.07 KB

Contents

module Jekyll
  class RelatedPosts

    class << self
      attr_accessor :lsi
    end

    attr_reader :post, :site

    def initialize(post)
      @post = post
      @site = post.site
      require 'classifier' if site.lsi
    end

    def build
      return [] unless site.posts.size > 1

      if site.lsi
        build_index
        lsi_related_posts
      else
        most_recent_posts
      end
    end


    def build_index
      self.class.lsi ||= begin
        lsi = Classifier::LSI.new(:auto_rebuild => false)
        display("Populating LSI...")

        site.posts.each do |x|
          lsi.add_item(x)
        end

        display("Rebuilding index...")
        lsi.build_index
        display("")
        lsi
      end
    end

    def lsi_related_posts
      self.class.lsi.find_related(post.content, 11) - [post]
    end

    def most_recent_posts
      recent_posts = site.posts.reverse - [post]
      recent_posts.first(10)
    end

    def display(output)
      $stdout.print("\n")
      $stdout.print(Jekyll.logger.formatted_topic(output))
      $stdout.flush
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
jekyll-2.2.0 lib/jekyll/related_posts.rb
jekyll-2.1.1 lib/jekyll/related_posts.rb
jekyll-2.1.0 lib/jekyll/related_posts.rb
jekyll-2.0.3 lib/jekyll/related_posts.rb
jekyll-2.0.2 lib/jekyll/related_posts.rb
jekyll-2.0.1 lib/jekyll/related_posts.rb
jekyll-2.0.0 lib/jekyll/related_posts.rb
jekyll-2.0.0.rc1 lib/jekyll/related_posts.rb
jekyll-2.0.0.alpha.3 lib/jekyll/related_posts.rb
jekyll-2.0.0.alpha.2 lib/jekyll/related_posts.rb