Class: GitPissed::HTML
- Defined in:
- lib/git_pissed/formats/html.rb
Instance Attribute Summary
Attributes inherited from Format
Instance Method Summary collapse
Methods inherited from Format
Instance Method Details
#csv ⇒ Object
13 14 15 16 17 18 |
# File 'lib/git_pissed/formats/html.rb', line 13 def csv CSV.new(words_by_date, ). table. map { |r| "'#{r.strip}\\n'" }. join('+') end |
#formatted ⇒ Object
7 8 9 10 11 |
# File 'lib/git_pissed/formats/html.rb', line 7 def formatted File.read( File.('../templates/index.html', __FILE__) ).gsub("%CSV%", csv) end |
#name ⇒ Object
3 4 5 |
# File 'lib/git_pissed/formats/html.rb', line 3 def name 'HTML' end |