class Stats
Attributes
correct_links[R]
errors[R]
links_created[R]
Public Class Methods
new()
click to toggle source
# File bin/dropbox-dotfiles, line 128 def initialize @links_created = 0 @errors = 0 @correct_links = 0 end
Public Instance Methods
correct!()
click to toggle source
# File bin/dropbox-dotfiles, line 134 def correct! @correct_links += 1 end
created!()
click to toggle source
# File bin/dropbox-dotfiles, line 142 def created! @links_created += 1 end
error!()
click to toggle source
# File bin/dropbox-dotfiles, line 138 def error! @errors += 1 end