Class: Git::Object::Blob

Inherits:
AbstractObject show all
Defined in:
lib/git/object.rb

Instance Attribute Summary

Attributes inherited from AbstractObject

#mode, #objectish, #size, #type

Instance Method Summary collapse

Methods inherited from AbstractObject

#archive, #commit?, #contents, #contents_array, #diff, #grep, #log, #sha, #tag?, #to_s, #tree?

Constructor Details

#initialize(base, sha, mode = nil) ⇒ Blob

Returns a new instance of Blob.



84
85
86
87
# File 'lib/git/object.rb', line 84

def initialize(base, sha, mode = nil)
  super(base, sha)
  @mode = mode
end

Instance Method Details

#blob?Boolean

Returns:

  • (Boolean)


89
90
91
# File 'lib/git/object.rb', line 89

def blob?
  true
end