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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 724de835ca2aa9cec2b88258addbf2e442ec58ed
4
- data.tar.gz: 6fdb1e93cbfda8048eca3cd8cb882c4f237f69f8
3
+ metadata.gz: 0ab6b42e4bae8930bef10b690296d1da2364933c
4
+ data.tar.gz: 81e5e41edf6c7654c278a0d97712a13e9d8fe851
5
5
  SHA512:
6
- metadata.gz: a462195774d3e59dd52c013c41efebd13c8ac7f6085476bb9d911e47699dfda7947f9d2ab1dfed2521dfdda5b88de24abb77c9cedf82b6713041d536427f233b
7
- data.tar.gz: 2586266186852cd1ca5de7d294952de6d4f765bd94c60e7f4dbf9d2a5bdb21d4380b4ef421b2a1aa5bf3c402167f5477d9bb46c42828bced4d7f0d76d362b45b
6
+ metadata.gz: dcfabdb06f6f1871f27232d5e461664d42a796b6acb032d8d72a4c65c9441379116269e206232cdd46a3217dcf6df4b33963560e83ae32a8e1f1071da13cca55
7
+ data.tar.gz: 3e8a15df83a9d31abeb9a347ad1d5c5f5d2678cd427ffce7857ad529878f4e6321e4e94b5b4311c3d9c651847e170b76bb3b8a95ab42b4bfd24e5903bab483ed
data/README.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # GitAnalyze
2
2
 
3
- TODO: Write a gem description
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
- TODO: Write usage instructions here
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
 
@@ -22,4 +22,5 @@ Gem::Specification.new do |spec|
22
22
  spec.add_development_dependency "rake"
23
23
  spec.add_dependency "github_api"
24
24
  spec.add_dependency "alchemy-api"
25
+ spec.add_dependency "thread"
25
26
  end
@@ -1,3 +1,3 @@
1
1
  module GitAnalyze
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
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.0
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