Chart generated by gimme-stat at <%= new Date() %>>



<% if (repositories.length > 1) { %>
```
## Repositories:

<% repositories.forEach(rep => { %>
<%= rep %>
<% }) %>
```
<% } %>

<% if(config.barType !='default') { %>
```
    Legend:
    +  insertions
    -  deletions
```
<% } %>

<% if (config.graph == 'short'||config.graph == 'all' && config.graph !='none') { %>
# Short
```
<% _(authors).forEach(author => { %>
    <% if(config.barType !='default') { %>
    <%= minSize(author.name) %> [<%= author.graphLine %>] <%= (author.percent * 100).toFixed(2) %>%
    <% } %>
    <% if(config.barType =='default'){ %>
    <%= minSize(author.name) %> <%= author.graphLine %> <%= (author.percent * 100).toFixed(2) %>%
    <% } %>
    <% }) %>
```
<% } %>

<% if ((config.graph == 'detailed'||config.graph == 'all') && config.graph !='none') { %>
# Detailed
```
<% if(config.barType !='default') { %>
    <% _(authors).forEach(author => { %>
    <%= minSize(author.name) %> [<%= author.graphLine %>] <%= (author.percent * 100).toFixed(2) %>%
    <% author.byExt.forEach((ext, index) => { %>
    <%= minSize(`${index < author.byExt.length -1 ? '├── ' : '└── '}${ext.name}`) %> [<%= ext.graphLine %>] <%= (ext.percent * 100).toFixed(2) %>% <%= ext.extensions.join(', ')%>
    <% }) %>
    <% }) %>
    <% } %>
    <% if(config.barType =='default'){ %>
    <% _(authors).forEach(author => { %>
    <%= minSize(author.name) %> <%= author.graphLine %> <%= (author.percent * 100).toFixed(2) %>%
    <% author.byExt.forEach((ext, index) => { %>
    <%= minSize(`${index < author.byExt.length -1 ? '├── ' : '└── '}${ext.name}`) %> <%= ext.graphLine %> <%= (ext.percent * 100).toFixed(2) %>% <%= ext.extensions.join(', ')%>
    <% }) %>
    <% }) %>
    <% } %>
```
<% } %>

<% if (config.table) { %>

```
<%= table %>

```
<% } %>
<% if(config.daily) { %>
#Daily
```
<%=header%>
<% _(daily).forEach(day => { %>
<%= minSize(day.date) %> <%= day.graphLine %> <%= day.commits %> | <%= day.changed%>
<% }) %>
```
<% } %>