class Standupguy::TextReport

Text formatted report. Output to STDOUT

Public Instance Methods

render() click to toggle source
# File lib/Standupguy.rb, line 143
def render
  ::Haml::Engine.new(template("report.txt.haml")).
    render(Object.new, standup: data(@date))
end
show() click to toggle source
# File lib/Standupguy.rb, line 139
def show
  puts render
end