summaryrefslogtreecommitdiffstats
path: root/lib/git/object.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/git/object.rb')
-rw-r--r--lib/git/object.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/git/object.rb b/lib/git/object.rb
new file mode 100644
index 0000000..0252fdb
--- /dev/null
+++ b/lib/git/object.rb
@@ -0,0 +1,16 @@
+module Git
+ class Object
+ attr_accessor :sha, :type
+
+ def initialize(sha)
+ @sha = sha
+ end
+
+ def cat_file
+ end
+
+ def raw
+ end
+
+ end
+end \ No newline at end of file