git_analyze 0.1.0 → 0.1.1
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 +4 -4
- data/README.md +16 -3
- data/git_analyze.gemspec +1 -0
- data/lib/git_analyze/version.rb +1 -1
- metadata +15 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ab6b42e4bae8930bef10b690296d1da2364933c
|
4
|
+
data.tar.gz: 81e5e41edf6c7654c278a0d97712a13e9d8fe851
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dcfabdb06f6f1871f27232d5e461664d42a796b6acb032d8d72a4c65c9441379116269e206232cdd46a3217dcf6df4b33963560e83ae32a8e1f1071da13cca55
|
7
|
+
data.tar.gz: 3e8a15df83a9d31abeb9a347ad1d5c5f5d2678cd427ffce7857ad529878f4e6321e4e94b5b4311c3d9c651847e170b76bb3b8a95ab42b4bfd24e5903bab483ed
|
data/README.md
CHANGED
@@ -1,6 +1,13 @@
|
|
1
1
|
# GitAnalyze
|
2
2
|
|
3
|
-
|
3
|
+
Analyzes a repository on Github, outputting information about each authors and
|
4
|
+
the overall repositories commit messages.
|
5
|
+
|
6
|
+
It will output information about sentiment of messages, length of messages,
|
7
|
+
and keywords found in messages.
|
8
|
+
|
9
|
+
Do this it uses [AlchemyAPI](http://www.alchemyapi.com/api) with my own [custom
|
10
|
+
SDK](https://github.com/Aaronneyer/alchemy-api) written on top of it.
|
4
11
|
|
5
12
|
## Installation
|
6
13
|
|
@@ -17,8 +24,14 @@ Or install it yourself as:
|
|
17
24
|
$ gem install git_analyze
|
18
25
|
|
19
26
|
## Usage
|
20
|
-
|
21
|
-
|
27
|
+
```bash
|
28
|
+
git_analyze --api-key=ALCHEMYAPIKEY --oauth=GITHUBPERSONALTOKEN github_user github_repo
|
29
|
+
```
|
30
|
+
|
31
|
+
```ruby
|
32
|
+
require git_analyze
|
33
|
+
GitAnalyze.pull_stats('alchemyapikey', 'githuboauthtoken', github_user, github_repo)
|
34
|
+
```
|
22
35
|
|
23
36
|
## Contributing
|
24
37
|
|
data/git_analyze.gemspec
CHANGED
data/lib/git_analyze/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git_analyze
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aaron Neyer
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - '>='
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: thread
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
69
83
|
description: analyzes git
|
70
84
|
email:
|
71
85
|
- aaronneyer@gmail.com
|