Really think you can find me online, LOL :D
Janne-Matti is an independent systems arcitect and a consultant constantly looking for new problems to solve and complexities to
class Stat | |
def initialize(raw) | |
@raw = raw | |
end | |
def file | |
@file ||= parse_file_from_raw | |
end | |
def name |
class Repo | |
def initialize(path) | |
@path = path | |
end | |
def commits | |
@commits ||= log. | |
gsub(/\t/, " "). # remove tabs | |
split('$$'). # split by marker | |
select { |commit| commit != "" }. # only consider non-empty |
@value or= do -> | |
1 + 2 |