Sha256: 9dfeac03e8543c8fbb8e12af6612e4dc4871c2e1e28c1bdd228a5dcd2d722936

Contents?: true

Size: 759 Bytes

Versions: 3

Compression:

Stored size: 759 Bytes

Contents

:javascript
  $(document).ready(function() {
    $("#month_table").tablesorter();
  });
- block(:commits_per_month) do
  .blockdiagram
    %img{ :src => 'commits_per_month.png' }
  %a.toggle{:href => '#'} Table
  .blocktable.toggleable
    %table#month_table.tablesorter.striped
      %thead
        %tr
          %th Month
          %th Commits
          %th Files added
          %th Files deleted
          %th Lines added
          %th Lines deleted
      %tbody
        - stats.month_stats.each do |month, commits|
          %tr
            %td&= monthname(month)
            %td&= commits.commits
            %td&= commits.files_added
            %td&= commits.files_deleted
            %td&= commits.lines_added
            %td&= commits.lines_deleted

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
gitstats-rb-2.0.0 template/gnuplot/partials/commits_per_month.haml
gitstats-ruby-1.0.1 template/partials/commits_per_month.haml
gitstats-ruby-1.0.0 template/partials/commits_per_month.haml