Class: Jekyll::Post
- Inherits:
-
Object
- Object
- Jekyll::Post
- Includes:
- Comparable, Convertible
- Defined in:
- lib/jekyll/post.rb
Constant Summary collapse
- MATCHER =
/^(\d+-\d+-\d+)-(.*)(\.[^.]+)$/
Class Attribute Summary collapse
-
.lsi ⇒ Object
Returns the value of attribute lsi.
Instance Attribute Summary collapse
-
#content ⇒ Object
Returns the value of attribute content.
-
#data ⇒ Object
Returns the value of attribute data.
-
#date ⇒ Object
Returns the value of attribute date.
-
#ext ⇒ Object
Returns the value of attribute ext.
-
#output ⇒ Object
Returns the value of attribute output.
-
#slug ⇒ Object
Returns the value of attribute slug.
Class Method Summary collapse
-
.valid?(name) ⇒ Boolean
Post name validator.
Instance Method Summary collapse
-
#<=>(other) ⇒ Object
Spaceship is based on Post#date.
-
#add_layout(layouts, site_payload) ⇒ Object
Add any necessary layouts to this post
layoutsis a Hash of => “layout”site_payloadis the site payload hash. -
#dir ⇒ Object
The generated directory into which the post will be placed upon generation.
-
#id ⇒ Object
The UID for this post (useful in feeds) e.g.
-
#initialize(base, name) ⇒ Post
constructor
Initialize this Post instance.
-
#permalink ⇒ Object
The full path and filename of the post.
-
#process(name) ⇒ Object
Extract information from the post filename
nameis the String filename of the post file. -
#related_posts(posts) ⇒ Object
Calculate related posts.
-
#to_liquid ⇒ Object
Convert this post into a Hash for use in Liquid templates.
-
#url ⇒ Object
The generated relative url of this post e.g.
-
#write(dest) ⇒ Object
Write the generated post file to the destination directory.
Constructor Details
#initialize(base, name) ⇒ Post
Initialize this Post instance.
+base+ is the String path to the dir containing the post file
+name+ is the String filename of the post file
Returns <Post>
29 30 31 32 33 34 35 36 37 |
# File 'lib/jekyll/post.rb', line 29 def initialize(base, name) @base = base @name = name self.process(name) self.read_yaml(base, name) #Removed to avoid munging of liquid tags, replaced in convertible.rb#48 #self.transform end |
Class Attribute Details
.lsi ⇒ Object
Returns the value of attribute lsi.
8 9 10 |
# File 'lib/jekyll/post.rb', line 8 def lsi @lsi end |
Instance Attribute Details
#content ⇒ Object
Returns the value of attribute content.
22 23 24 |
# File 'lib/jekyll/post.rb', line 22 def content @content end |
#data ⇒ Object
Returns the value of attribute data.
22 23 24 |
# File 'lib/jekyll/post.rb', line 22 def data @data end |
#date ⇒ Object
Returns the value of attribute date.
21 22 23 |
# File 'lib/jekyll/post.rb', line 21 def date @date end |
#ext ⇒ Object
Returns the value of attribute ext.
21 22 23 |
# File 'lib/jekyll/post.rb', line 21 def ext @ext end |
#output ⇒ Object
Returns the value of attribute output.
22 23 24 |
# File 'lib/jekyll/post.rb', line 22 def output @output end |
#slug ⇒ Object
Returns the value of attribute slug.
21 22 23 |
# File 'lib/jekyll/post.rb', line 21 def slug @slug end |
Class Method Details
.valid?(name) ⇒ Boolean
Post name validator. Post filenames must be like:
2008-11-05-my-awesome-post.textile
Returns <Bool>
17 18 19 |
# File 'lib/jekyll/post.rb', line 17 def self.valid?(name) name =~ MATCHER end |
Instance Method Details
#<=>(other) ⇒ Object
Spaceship is based on Post#date
Returns -1, 0, 1
42 43 44 |
# File 'lib/jekyll/post.rb', line 42 def <=>(other) self.date <=> other.date end |
#add_layout(layouts, site_payload) ⇒ Object
Add any necessary layouts to this post
+layouts+ is a Hash of {"name" => "layout"}
+site_payload+ is the site payload hash
Returns nothing
122 123 124 125 126 127 |
# File 'lib/jekyll/post.rb', line 122 def add_layout(layouts, site_payload) # construct post payload = (site_payload["site"]["posts"]) payload = {"page" => self.to_liquid.merge(self.data), "related_posts" => } do_layout(payload, layouts, site_payload) end |
#dir ⇒ Object
The generated directory into which the post will be placed upon generation. This is derived from the permalink or, if permalink is absent, set to the default date e.g. “/2008/11/05/”
Returns <String>
63 64 65 66 67 |
# File 'lib/jekyll/post.rb', line 63 def dir permalink ? permalink.to_s.split("/")[0..-2].join("/") : date.strftime("/%Y/%m/%d/") end |
#id ⇒ Object
The UID for this post (useful in feeds) e.g. /2008/11/05/my-awesome-post
Returns <String>
91 92 93 |
# File 'lib/jekyll/post.rb', line 91 def id self.dir + self.slug end |
#permalink ⇒ Object
The full path and filename of the post. Defined in the YAML of the post body (Optional)
Returns <String>
74 75 76 |
# File 'lib/jekyll/post.rb', line 74 def permalink self.data && self.data['permalink'] end |
#process(name) ⇒ Object
Extract information from the post filename
+name+ is the String filename of the post file
Returns nothing
50 51 52 53 54 55 |
# File 'lib/jekyll/post.rb', line 50 def process(name) m, date, slug, ext = *name.match(MATCHER) self.date = Time.parse(date) self.slug = slug self.ext = ext end |
#related_posts(posts) ⇒ Object
Calculate related posts.
Returns [<Post>]
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
# File 'lib/jekyll/post.rb', line 98 def (posts) return [] unless posts.size > 1 if Jekyll.lsi self.class.lsi ||= begin puts "Running the classifier... this could take a while." lsi = Classifier::LSI.new posts.each { |x| $stdout.print(".");$stdout.flush;lsi.add_item(x) } puts "" lsi end = self.class.lsi.(self.content, 11) - [self] else (posts - [self])[0..9] end end |
#to_liquid ⇒ Object
Convert this post into a Hash for use in Liquid templates.
Returns <Hash>
145 146 147 148 149 150 151 |
# File 'lib/jekyll/post.rb', line 145 def to_liquid { "title" => self.data["title"] || "", "url" => self.url, "date" => self.date, "id" => self.id, "content" => self.content } end |
#url ⇒ Object
The generated relative url of this post e.g. /2008/11/05/my-awesome-post.html
Returns <String>
83 84 85 |
# File 'lib/jekyll/post.rb', line 83 def url self.dir + self.slug + ".html" end |
#write(dest) ⇒ Object
Write the generated post file to the destination directory.
+dest+ is the String path to the destination dir
Returns nothing
133 134 135 136 137 138 139 140 |
# File 'lib/jekyll/post.rb', line 133 def write(dest) FileUtils.mkdir_p(File.join(dest, dir)) path = File.join(dest, self.url) File.open(path, 'w') do |f| f.write(self.output) end end |