git_fame 2.5.0 → 2.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +8 -5
- data/git_fame.gemspec +5 -7
- data/lib/git_fame/version.rb +1 -1
- metadata +9 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c0f291251379ffd12d8d5a82f8185cacaefa0f8
|
4
|
+
data.tar.gz: 6cc2c5ffda6a473f738d8d00072f493ed878bdd1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3412be9da9e3e78cda2b4da3fa5f446692f496f19c49487e7f52866d3aed6647cec40133eb9e655c7aeeedb740e6aa05a0dd9c25a9c8259dae0dc00026c6539
|
7
|
+
data.tar.gz: 63b0da5c88dff9c8925a0d647d17acae01006972e9481e64e6c7fd90d505d08788fa00dfcc3dab2d9b112b76f23cfcf5f9a8d0d968fb0f26d79f595ca62f8988
|
data/README.md
CHANGED
@@ -1,12 +1,15 @@
|
|
1
|
-
#
|
1
|
+
# git-fame
|
2
2
|
[![Gem](https://img.shields.io/gem/dt/git_fame.svg)](https://rubygems.org/gems/git_fame)
|
3
3
|
[![Gitter](https://img.shields.io/gitter/room/oleander/git-fame-rb.svg)](https://gitter.im/oleander/git-fame-rb)
|
4
4
|
[![Travis](https://img.shields.io/travis/oleander/git-fame-rb.svg)](https://travis-ci.org/oleander/git-fame-rb)
|
5
5
|
[![Coveralls](https://img.shields.io/coveralls/oleander/git-fame-rb.svg)](https://coveralls.io/github/oleander/git-fame-rb)
|
6
|
+
[![My personal webpage](https://img.shields.io/badge/me-oleander.io-blue.svg)](http://oleander.io)
|
6
7
|
|
7
|
-
|
8
|
+
`git-fame` is a command-line tool that helps you summarize and pretty-print collaborators in a git repository based on contributions.
|
8
9
|
|
9
|
-
##
|
10
|
+
## Example output
|
11
|
+
|
12
|
+
Statistics generated from this git repository using `git fame .`
|
10
13
|
|
11
14
|
```
|
12
15
|
Statistics based on master
|
@@ -31,9 +34,9 @@ Note: Files matching MIME type image, binary has been ignored
|
|
31
34
|
|
32
35
|
## Usage
|
33
36
|
|
34
|
-
###
|
37
|
+
### Command-line
|
35
38
|
|
36
|
-
From a git repository run `git fame
|
39
|
+
From a git repository run `git fame .`
|
37
40
|
|
38
41
|
#### Options
|
39
42
|
|
data/git_fame.gemspec
CHANGED
@@ -4,18 +4,16 @@ require File.expand_path('../lib/git_fame/version', __FILE__)
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.authors = ["Linus Oleander"]
|
6
6
|
gem.email = ["linus@oleander.nu"]
|
7
|
-
gem.description =
|
7
|
+
gem.description = "A command-line tool that helps you summarize and pretty-print collaborators in a git repository based on contributions"
|
8
8
|
gem.summary = %q{
|
9
|
-
|
9
|
+
git-fame is a command-line tool that helps you summarize and pretty-print collaborators in a git repository based on contributions. A Ruby wrapper for git-blame if you will.
|
10
10
|
|
11
|
-
|
12
|
-
Generates data like:
|
11
|
+
Generates stats like:
|
13
12
|
- Number of files changed by a user
|
14
13
|
- Number of commits by user
|
15
|
-
- Lines of code by a user
|
16
|
-
}
|
14
|
+
- Lines of code by a user}
|
17
15
|
|
18
|
-
gem.homepage = "
|
16
|
+
gem.homepage = "http://oleander.io/git-fame-rb"
|
19
17
|
|
20
18
|
gem.files = `git ls-files`.split($\)
|
21
19
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
data/lib/git_fame/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git_fame
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.5.
|
4
|
+
version: 2.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Linus Oleander
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-10-
|
11
|
+
date: 2016-10-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: progressbar
|
@@ -192,7 +192,8 @@ dependencies:
|
|
192
192
|
- - "~>"
|
193
193
|
- !ruby/object:Gem::Version
|
194
194
|
version: 1.3.2
|
195
|
-
description:
|
195
|
+
description: A command-line tool that helps you summarize and pretty-print collaborators
|
196
|
+
in a git repository based on contributions
|
196
197
|
email:
|
197
198
|
- linus@oleander.nu
|
198
199
|
executables:
|
@@ -225,7 +226,7 @@ files:
|
|
225
226
|
- spec/git_fame_spec.rb
|
226
227
|
- spec/spec_helper.rb
|
227
228
|
- spec/support/startup.rb
|
228
|
-
homepage:
|
229
|
+
homepage: http://oleander.io/git-fame-rb
|
229
230
|
licenses: []
|
230
231
|
metadata: {}
|
231
232
|
post_install_message:
|
@@ -247,9 +248,10 @@ rubyforge_project:
|
|
247
248
|
rubygems_version: 2.5.1
|
248
249
|
signing_key:
|
249
250
|
specification_version: 4
|
250
|
-
summary: '
|
251
|
-
|
252
|
-
of
|
251
|
+
summary: 'git-fame is a command-line tool that helps you summarize and pretty-print
|
252
|
+
collaborators in a git repository based on contributions. A Ruby wrapper for git-blame
|
253
|
+
if you will. Generates stats like: - Number of files changed by a user - Number
|
254
|
+
of commits by user - Lines of code by a user'
|
253
255
|
test_files:
|
254
256
|
- spec/bin_spec.rb
|
255
257
|
- spec/git_fame_spec.rb
|