initial library setup

This commit is contained in:
Tom Preston-Werner
2010-04-07 00:41:50 -07:00
parent 9668b76617
commit c1abbec2f1
6 changed files with 251 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
# external
require 'grit'
# internal
require 'gollum/repo'
module Gollum
VERSION = '0.0.1'
end
+14
View File
@@ -0,0 +1,14 @@
module Gollum
class Repo
attr_accessor :path
# Initialize a new Gollum Repo.
#
# repo - The String path to the Git repository that holds the Gollum site.
#
# Returns a fresh Gollum::Repo.
def initialize(path)
self.path = path
end
end
end