Object
# File lib/jekyll/tags/post_url.rb, line 8 def initialize(name) all, path, date, slug = *name.sub(/^\//, "").match(MATCHER) @slug = path ? path + slug : slug @date = Time.parse(date) end
# File lib/jekyll/tags/post_url.rb, line 14 def ==(other) slug == post_slug(other) && date.year == other.date.year && date.month == other.date.month && date.day == other.date.day end
[Validate]
Generated with the Darkfish Rdoc Generator 2.