Class: Git::Object::Blob
- Inherits:
-
AbstractObject
- Object
- AbstractObject
- Git::Object::Blob
- Defined in:
- lib/git/object.rb
Instance Attribute Summary
Attributes inherited from AbstractObject
#mode, #objectish, #size, #type
Instance Method Summary collapse
- #blob? ⇒ Boolean
-
#initialize(base, sha, mode = nil) ⇒ Blob
constructor
A new instance of Blob.
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
89 90 91 |
# File 'lib/git/object.rb', line 89 def blob? true end |