Sha256: f3e77ecd6e3417a71beada70c53146cbf68d8310ec6f3682285b90f0462e5c07

Contents?: true

Size: 798 Bytes

Versions: 7

Compression:

Stored size: 798 Bytes

Contents

module Template

HEAD = <<-HEADER
<html>
  <head>
    <title>%TITLE%</title>
  </head>
  <body>
  <h2>%TITLE%</h2>
  <p>From %FROM% to %TO%</p>
HEADER

TAIL = <<-TAIL
  </body>
</html>
TAIL

MAJOR_HEAD = <<-MAJOR
    <br>
    <table border=1; width="600px">
      <tr>
        <td width="450px"><strong>%MAJOR%</strong></td>
        <td width="150px"><strong>Lines</strong></td>
      </tr>
MAJOR

MAJOR_TAIL = <<-MAJOR
    </table>
MAJOR

MINOR = <<-MINOR
      <tr>
        <td>%MINOR%</td>
        <td>%LINES%</td>
      </tr>
MINOR

COMMIT = <<-COMMIT
    <br>
    <table border=1; width="600px">
      <tr><td><strong>%REPOSITORY%</strong></td></tr>
      <tr><td>%MESSAGE%</td></tr>
      <tr><td><strong>by</strong> %COMMITER% <strong>at</strong> %TIMEDATE%</td></tr>
    </table>
COMMIT
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
caelum-git-reports-0.1.0 lib/template.rb
caelum-git-reports-0.1.1 lib/template.rb
caelum-git-reports-0.2.0 lib/template.rb
caelum-git-reports-0.2.1 lib/template.rb
caelum-git-reports-0.2.2 lib/template.rb
caelum-git-reports-0.2.3 lib/template.rb
caelum-git_reports-0.1.0 lib/template.rb