mirror of
https://github.com/tomgi/git_stats.git
synced 2024-11-10 21:27:05 +01:00
GitStats is a git repository statistics generator.
bin | ||
config/locales | ||
lib | ||
spec | ||
templates | ||
.gitignore | ||
.gitmodules | ||
.rspec | ||
Gemfile | ||
git_stats.gemspec | ||
LICENSE.txt | ||
Rakefile | ||
README.md |
GitStats
GitStats is a git repository statistics generator. It browses the repository and outputs html page with some statistics.
Examples
devise devise_invitable jquery paperclip rails
Installation
$ gem install git_stats
Usage
Generator
$ git_stats repo_path output_directory
$ favorite_browser output_directory/index.html
API usage example
> repo = GitStats::GitData::Repo.new(path: '.')
> repo.authors
=> [...]
> repo.commits
=> [...]
> commit.files
=> [...]
Build Status
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
- Push to the branch (
git push origin my-new-feature
) - Create new Pull Request