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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4457590e41149791b0277d51f4dfb4df9cd33e67
4
- data.tar.gz: 90a3b36ec7c4504a3482b52940d86aaed7b6f9d0
3
+ metadata.gz: 9c0f291251379ffd12d8d5a82f8185cacaefa0f8
4
+ data.tar.gz: 6cc2c5ffda6a473f738d8d00072f493ed878bdd1
5
5
  SHA512:
6
- metadata.gz: 92fdb5e260070960d17f7f23ea416c1f588fb90f40e464012d734fe82c694e022bf77da0d59ac831d3de835409f4dbac092fbd5b49472d0ba0f5d391e4ae49a9
7
- data.tar.gz: dd4ac0ecf1645e50bf985e794c3b5530470beb61d47aa69071c7c689c1711ccea78454e5667fde286457741b83ff2035c8451c545ec94eb882f844e5036c697e
6
+ metadata.gz: c3412be9da9e3e78cda2b4da3fa5f446692f496f19c49487e7f52866d3aed6647cec40133eb9e655c7aeeedb740e6aa05a0dd9c25a9c8259dae0dc00026c6539
7
+ data.tar.gz: 63b0da5c88dff9c8925a0d647d17acae01006972e9481e64e6c7fd90d505d08788fa00dfcc3dab2d9b112b76f23cfcf5f9a8d0d968fb0f26d79f595ca62f8988
data/README.md CHANGED
@@ -1,12 +1,15 @@
1
- # GitFame
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
- Pretty-print collaborators sorted by contributions.
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
- ## Output
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
- ### Console
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 = %q{Generates awesome stats from git-blame}
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
- Generates awesome stats from git-blame
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
- A Ruby wrapper for git-blame.
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 = "https://github.com/oleander/git-fame-rb"
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) }
@@ -1,3 +1,3 @@
1
1
  module GitFame
2
- VERSION = "2.5.0"
2
+ VERSION = "2.5.1"
3
3
  end
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.0
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-21 00:00:00.000000000 Z
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: Generates awesome stats from git-blame
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: https://github.com/oleander/git-fame-rb
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: 'Generates awesome stats from git-blame A Ruby wrapper for git-blame. Generates
251
- data like: - Number of files changed by a user - Number of commits by user - Lines
252
- of code by a user'
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