Merge pull request #875 from bhollis/837

Attempt a fix for #837
This commit is contained in:
Thomas Reynolds 2013-04-30 22:24:48 -07:00
commit ac3aee6e4b

View file

@ -68,6 +68,9 @@ module Middleman
# (e.g., if the resource is named 'gallery.html' and a path exists named 'gallery/', this would return true) # (e.g., if the resource is named 'gallery.html' and a path exists named 'gallery/', this would return true)
# @return [Boolean] # @return [Boolean]
def eponymous_directory? def eponymous_directory?
if !path.end_with?("/#{app.index_file}") && destination_path.end_with?("/#{app.index_file}")
return true
end
full_path = 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)) !!(File.exists?(full_path) && File.directory?(full_path))
end end