Class: Git::Diff::DiffFile
- Inherits:
-
Object
- Object
- Git::Diff::DiffFile
- Defined in:
- lib/git/diff.rb
Constant Summary collapse
- NIL_BLOB_REGEXP =
/\A0{4,40}\z/.freeze
Instance Attribute Summary collapse
-
#dst
Returns the value of attribute dst.
-
#mode
Returns the value of attribute mode.
-
#patch
Returns the value of attribute patch.
-
#path
Returns the value of attribute path.
-
#src
Returns the value of attribute src.
-
#type
Returns the value of attribute type.
Instance Method Summary collapse
- #binary? ⇒ Boolean
- #blob(type = :dst)
-
#initialize(base, hash) ⇒ DiffFile
constructor
A new instance of DiffFile.
Constructor Details
#initialize(base, hash) ⇒ DiffFile
Returns a new instance of DiffFile.
78 79 80 81 82 83 84 85 86 87 |
# File 'lib/git/diff.rb', line 78 def initialize(base, hash) @base = base @patch = hash[:patch] @path = hash[:path] @mode = hash[:mode] @src = hash[:src] @dst = hash[:dst] @type = hash[:type] @binary = hash[:binary] end |
Instance Attribute Details
#dst
Returns the value of attribute dst.
74 75 76 |
# File 'lib/git/diff.rb', line 74 def dst @dst end |
#mode
Returns the value of attribute mode.
74 75 76 |
# File 'lib/git/diff.rb', line 74 def mode @mode end |
#patch
Returns the value of attribute patch.
74 75 76 |
# File 'lib/git/diff.rb', line 74 def patch @patch end |
#path
Returns the value of attribute path.
74 75 76 |
# File 'lib/git/diff.rb', line 74 def path @path end |
#src
Returns the value of attribute src.
74 75 76 |
# File 'lib/git/diff.rb', line 74 def src @src end |
#type
Returns the value of attribute type.
74 75 76 |
# File 'lib/git/diff.rb', line 74 def type @type end |
Instance Method Details
#binary? ⇒ Boolean
89 90 91 |
# File 'lib/git/diff.rb', line 89 def binary? !!@binary end |
#blob(type = :dst)
93 94 95 96 97 98 99 |
# File 'lib/git/diff.rb', line 93 def blob(type = :dst) if type == :src && !NIL_BLOB_REGEXP.match(@src) @base.object(@src) elsif !NIL_BLOB_REGEXP.match(@dst) @base.object(@dst) end end |