Method: Rugged::Blame#size
- Defined in:
- ext/rugged/rugged_blame.c
#count ⇒ Object #size ⇒ Object
Returns the total count
of blame hunks in blame
.
184 185 186 187 188 189 |
# File 'ext/rugged/rugged_blame.c', line 184
static VALUE rb_git_blame_count(VALUE self)
{
git_blame *blame;
Data_Get_Struct(self, git_blame, blame);
return UINT2NUM(git_blame_get_hunk_count(blame));
}
|