ghit 0.2.3 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZmE2NmMyNWFkMmM4ODkxZGZlMzg0MmI5NWE2ZWNiY2Y4N2JmOWE5Yg==
4
+ MjIxZTYzZGUwMjlkMDBkNWNkYzA2YzQxZTA1MTZjYWIwMDA1YjA3ZQ==
5
5
  data.tar.gz: !binary |-
6
- NGEyNmJmNDg3ZDc0NzEwNjI5ODFlMTU3YTJkZDQzMTQ5NzhiZTM1Yg==
6
+ YTE0ZjU2MTg5YjRlZjA4YzI0OTgyZTYxNjU3OGFlNTQyY2I0NDNlZA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MzRmZTRkZjg4ZjRkZGQ3ODRmMzc5MjQ4MTJmMzRjYTRkMThlOTYxOWMxMWVj
10
- YTcxOWRjYWI0MzU1OWM2N2ZkMWFjOWZhNjVhNzE2NWM0ZDVhNTAwNDVhZjRj
11
- NjE0NDY3ZGNlN2M5MjA3YmRkNTFhOTlmYTcxZDBhZWZmODljNGE=
9
+ MGFhOTVhN2Y4NzliYjc2MmNjMTY0YTU4MjRhM2Q3M2Q1NjNhY2NlMjc0Yjcw
10
+ ODc2NGYwMmRlYWM1NWMxY2NmZGE0MzA3MzA1OGZmZWE2ODUyNGJlNGY2NjNm
11
+ MDdmM2QwNGYxZmI5NDhmMzkyMDEyZjJiM2MzNDMxYjU0Njk1OWY=
12
12
  data.tar.gz: !binary |-
13
- NDI2YjdmZDc5YjhlZjUyYWY4NTM1NzU5NDQxMDEwNGE0OGJjOThkOGFkZDU5
14
- NmI5MDgzYWRkODU5ZTFhM2FjNjQ0OGZhZmNkYTMzOTU0YjMzOTQ1NmE4MDlm
15
- OGU4MzQ1ZTJkN2I3OWM1ZWFjYjczMTJmMTIwNzVjMTY3NWVmMzM=
13
+ N2EyZmU2NTQwYmNlZjI4YTRiNzI1YjlkZTdiNDY3ZmFmNzA3MTZiZjYwMTQ3
14
+ N2I2MmZiMjcxZjE3OGQxNmI5YjlhNzQxNzE2MGI2MDY4YmYwNjIyMDk5Zjdj
15
+ NGI5MTY3MDc1YjE5MmU3NGFhYjI1NjNiZWM1MzRmNDMwMTQzMTU=
data/README.md CHANGED
@@ -20,7 +20,7 @@ If you are using Ubuntu/Debian-based OS, ```xdg-utils``` is a dependency. You ca
20
20
 
21
21
  ## Usage
22
22
 
23
- There are 7 new ```git``` commands now.
23
+ There are 8 new ```git``` commands now.
24
24
 
25
25
  The following commands allow you to easily navigate to repo's Github (sub)page.
26
26
 
@@ -31,6 +31,7 @@ The following commands allow you to easily navigate to repo's Github (sub)page.
31
31
  * ```git freq``` -> Shows a table with weekly code frequency statistics (additions/deletions).
32
32
  * ```git contributors``` -> Shows a table with all of the users that contributed to the repo.
33
33
  * ```git punch-card``` -> Shows a (rather big) punch card with all of the commits traffic for the repo grouped by weekdays and time.
34
+ * ```git churn``` -> Shows a list of most edited files in the repo.
34
35
 
35
36
  ## Worth sayin'
36
37
  * Still has some rough edges. Needs tests, refactoring and various improvements.
@@ -0,0 +1,2 @@
1
+ #!/bin/bash
2
+ git log --pretty=format: --name-only | sort | uniq -c | sort -rg | head -20
@@ -1,3 +1,3 @@
1
1
  module Ghit
2
- VERSION = "0.2.3"
2
+ VERSION = "0.2.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ghit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ile Eftimov
@@ -85,6 +85,7 @@ description: Ghit is a gem that adds more git commands for a better command line
85
85
  email:
86
86
  - ileeftimov@gmail.com
87
87
  executables:
88
+ - git-churn
88
89
  - git-contributors
89
90
  - git-freq
90
91
  - git-issues
@@ -103,6 +104,7 @@ files:
103
104
  - LICENSE.txt
104
105
  - README.md
105
106
  - Rakefile
107
+ - bin/git-churn
106
108
  - bin/git-contributors
107
109
  - bin/git-freq
108
110
  - bin/git-issues