class Gitgrass::CLI

Public Instance Methods

show(user) click to toggle source
# File lib/gitgrass/cli.rb, line 7
def show(user)
    git_scrap = GitScrap.new(user)
    git_scrap.year = options["year"].to_i if options["year"]
    git_scrap.make_grass_table()
    git_scrap.tile_table.each { |t| puts t.join }
end