summaryrefslogtreecommitdiffstats
path: root/lib/git/object.rb
blob: 0252fdb2fc371f35afa1876223e417f78493c99e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module Git
  class Object
    attr_accessor :sha, :type
    
    def initialize(sha)
      @sha = sha
    end
    
    def cat_file
    end
    
    def raw
    end
    
  end
end