lib/caramelize/output_wiki/gollum.rb in caramelize-1.1.0 vs lib/caramelize/output_wiki/gollum.rb in caramelize-1.1.1
- old
+ new
@@ -68,10 +68,10 @@
def gollum
@gollum ||= ::Gollum::Wiki.new(wiki_path, {repo_is_bare: true})
end
def initialize_repository
- return if File.exists?(wiki_path)
+ return if File.exist?(wiki_path)
Dir.mkdir(wiki_path)
#::Gollum::Git::Repo.new(wiki_path, { is_bare: true })
::Gollum::Git::Repo.init(wiki_path)
end
end