make example test wiki a git repo and test it

This commit is contained in:
Tom Preston-Werner
2010-04-07 13:36:48 -07:00
parent acae4686e0
commit 6c4e343b0c
24 changed files with 495 additions and 19 deletions
+2 -1
View File
@@ -1,6 +1,6 @@
module Gollum
class Repo
attr_accessor :path
attr_accessor :path, :repo
# Initialize a new Gollum Repo.
#
@@ -9,6 +9,7 @@ module Gollum
# Returns a fresh Gollum::Repo.
def initialize(path)
self.path = path
self.repo = Grit::Repo.new(path)
end
end
end