class Hikkoshi::Hexo::Importer

Private Instance Methods

read_posts() click to toggle source
# File lib/hikkoshi/hexo/importer.rb, line 4
def read_posts
  Dir.glob(File.join(@path, EXTENSIONS)).map {|filename|
    Hikkoshi::Hexo::Post.new(filename)
  }
end