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.

[View source]

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

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

Instance Method Details

#blob?Boolean

Returns:

  • (Boolean)
[View source]

93
94
95
# File 'lib/git/object.rb', line 93

def blob?
  true
end