Skip to content

Commit

Permalink
#533: 0pdd puzzles format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dgroup committed Dec 17, 2021
1 parent ae61096 commit 83f9122
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lib/lazylead/task/git/git.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,33 +43,33 @@ def to_s
"#{id} #{msg}"
end

# @todo #/DEV Git Commit#id implementation is required
# @todo #/DEV Git Commit#id implementation is required based on `git` ruby gem
def id; end

# @todo #/DEV Git Commit#author implementation is required
# @todo #/DEV Git Commit#author implementation is required based on `git` ruby gem
def author; end

# @todo #/DEV Git Commit#time implementation is required
# @todo #/DEV Git Commit#time implementation is required based on `git` ruby gem
def time; end

# @todo #/DEV Git Commit#msg implementation is required
# @todo #/DEV Git Commit#msg implementation is required based on `git` ruby gem
def msg; end

# @todo #/DEV Git Commit#lines implementation is required
# @todo #/DEV Git Commit#lines implementation is required based on `git` ruby gem
def lines; end

# @todo #/DEV Git Commit#header implementation is required
# @todo #/DEV Git Commit#header implementation is required based on `git` ruby gem
def header; end

# The modified lines contains expected text
# @todo #/DEV Git Commit#includes? implementation is required
# @todo #/DEV Git Commit#includes? implementation is required based on `git` ruby gem
def includes?(text); end
end

#
# Git commits built from command-line stdout (OS#run).
#
# @todo #/DEV Git Commits implementation is required
# @todo #/DEV Git Commits implementation is required based on `git` ruby gem
class Commits
extend Forwardable
def_delegators :@all, :each, :map, :select, :empty?
Expand Down

0 comments on commit 83f9122

Please sign in to comment.