Fix usage of a 1.9-only method in Sitemap::Page
This commit is contained in:
parent
54b5304264
commit
de92015085
1 changed files with 2 additions and 1 deletions
|
@ -171,7 +171,8 @@ module Middleman::Sitemap
|
||||||
# (e.g., if the page is named 'gallery.html' and a path exists named 'gallery/', this would return true)
|
# (e.g., if the page is named 'gallery.html' and a path exists named 'gallery/', this would return true)
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
def eponymous_directory?
|
def eponymous_directory?
|
||||||
!!Dir.exists?(File.join(app.source_dir, eponymous_directory_path))
|
full_path = File.join(app.source_dir, eponymous_directory_path)
|
||||||
|
!!(File.exists?(full_path) && File.directory?(full_path))
|
||||||
end
|
end
|
||||||
|
|
||||||
# The path for this page if it were a directory, and not a file
|
# The path for this page if it were a directory, and not a file
|
||||||
|
|
Loading…
Add table
Reference in a new issue