Class: Yobi::DiffStat
Overview
Instance Method Summary
collapse
Methods inherited from FancyHash
#initialize, #inspect, #pretty_print
Instance Method Details
#bytes ⇒ Integer
173
174
175
|
# File 'lib/yobi/repository/diff.rb', line 173
def bytes
self["bytes"] || 0
end
|
#data_blobs ⇒ Integer
163
164
165
|
# File 'lib/yobi/repository/diff.rb', line 163
def data_blobs
self["data_blobs"] || 0
end
|
#dirs ⇒ Integer
153
154
155
|
# File 'lib/yobi/repository/diff.rb', line 153
def dirs
self["dirs"] || 0
end
|
#files ⇒ Integer
148
149
150
|
# File 'lib/yobi/repository/diff.rb', line 148
def files
self["files"] || 0
end
|
#others ⇒ Integer
158
159
160
|
# File 'lib/yobi/repository/diff.rb', line 158
def others
self["others"] || 0
end
|
#tree_blobs ⇒ Integer
168
169
170
|
# File 'lib/yobi/repository/diff.rb', line 168
def tree_blobs
self["tree_blobs"] || 0
end
|