ghstats 0.0.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.
- data/LICENSE.txt +22 -0
- data/README.md +23 -0
- data/bin/ghstats +19 -0
- data/ghstats.gemspec +21 -0
- data/lib/ghstats.rb +5 -0
- data/lib/ghstats/cli.rb +15 -0
- data/lib/ghstats/stats.rb +28 -0
- data/lib/ghstats/version.rb +3 -0
- metadata +87 -0
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 Bartosz Kopiński
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# GHStats
|
2
|
+
|
3
|
+
Returns a best guess of the GitHub user's favourite programming language.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Install as a gem:
|
8
|
+
|
9
|
+
$ gem install ghstats
|
10
|
+
|
11
|
+
## Usage
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ ghstats <GITHUB_USERNAME>
|
16
|
+
|
17
|
+
## Contributing
|
18
|
+
|
19
|
+
1. Fork it ( https://github.com/bartoszkopinski/ghstats/fork )
|
20
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
21
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
22
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
23
|
+
5. Create a new Pull Request
|
data/bin/ghstats
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
Signal.trap('INT') { abort }
|
4
|
+
|
5
|
+
require 'ghstats'
|
6
|
+
|
7
|
+
begin
|
8
|
+
puts GHStats::CLI.start(ARGV)
|
9
|
+
rescue Interrupt
|
10
|
+
abort 'Quitting...'
|
11
|
+
rescue Octokit::NotFound => e
|
12
|
+
abort "Account not found."
|
13
|
+
rescue Octokit::TooManyRequests => e
|
14
|
+
abort "Requests limit exceeded. Authenticate or try again later."
|
15
|
+
rescue Faraday::ConnectionFailed => e
|
16
|
+
abort "Could not connect to GitHub."
|
17
|
+
rescue RuntimeError => e
|
18
|
+
abort e.message
|
19
|
+
end
|
data/ghstats.gemspec
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'ghstats/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "ghstats"
|
8
|
+
spec.version = GHStats::VERSION
|
9
|
+
spec.authors = ["Bartosz Kopiński"]
|
10
|
+
spec.email = ["bartosz@kopinski.pl"]
|
11
|
+
spec.summary = "Fetching GitHub stats"
|
12
|
+
spec.license = "MIT"
|
13
|
+
|
14
|
+
spec.files = %w(LICENSE.txt README.md ghstats.gemspec) + Dir['bin/*'] + Dir['lib/**/*.rb']
|
15
|
+
spec.executables = Dir['bin/*'].map { |f| File.basename(f) }
|
16
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
17
|
+
spec.require_paths = ["lib"]
|
18
|
+
|
19
|
+
spec.add_development_dependency "bundler", "~> 1.7"
|
20
|
+
spec.add_dependency "octokit", "~> 3.8"
|
21
|
+
end
|
data/lib/ghstats.rb
ADDED
data/lib/ghstats/cli.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
require "ghstats/stats"
|
2
|
+
|
3
|
+
module GHStats
|
4
|
+
class CLI
|
5
|
+
def self.start args
|
6
|
+
username, _ = *args
|
7
|
+
|
8
|
+
if username.to_s.empty?
|
9
|
+
fail("Usage: ghstats <username>")
|
10
|
+
end
|
11
|
+
|
12
|
+
Stats.new(username).most_common_language || "Unknown language"
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
require 'octokit'
|
2
|
+
|
3
|
+
module GHStats
|
4
|
+
class Stats
|
5
|
+
def initialize username, api = Octokit::Client
|
6
|
+
@api = api
|
7
|
+
@username = username
|
8
|
+
end
|
9
|
+
|
10
|
+
def most_common_language
|
11
|
+
languages.uniq.max_by{ |l| languages.count(l) }
|
12
|
+
end
|
13
|
+
|
14
|
+
private
|
15
|
+
|
16
|
+
def client
|
17
|
+
@api.new(auto_paginate: true, per_page: 100)
|
18
|
+
end
|
19
|
+
|
20
|
+
def repos
|
21
|
+
client.repos @username
|
22
|
+
end
|
23
|
+
|
24
|
+
def languages
|
25
|
+
@languages ||= repos.map(&:language).compact
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
metadata
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ghstats
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Bartosz Kopiński
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2015-02-22 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bundler
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.7'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.7'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: octokit
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ~>
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '3.8'
|
38
|
+
type: :runtime
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '3.8'
|
46
|
+
description:
|
47
|
+
email:
|
48
|
+
- bartosz@kopinski.pl
|
49
|
+
executables:
|
50
|
+
- ghstats
|
51
|
+
extensions: []
|
52
|
+
extra_rdoc_files: []
|
53
|
+
files:
|
54
|
+
- LICENSE.txt
|
55
|
+
- README.md
|
56
|
+
- ghstats.gemspec
|
57
|
+
- bin/ghstats
|
58
|
+
- lib/ghstats/cli.rb
|
59
|
+
- lib/ghstats/stats.rb
|
60
|
+
- lib/ghstats/version.rb
|
61
|
+
- lib/ghstats.rb
|
62
|
+
homepage:
|
63
|
+
licenses:
|
64
|
+
- MIT
|
65
|
+
post_install_message:
|
66
|
+
rdoc_options: []
|
67
|
+
require_paths:
|
68
|
+
- lib
|
69
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
70
|
+
none: false
|
71
|
+
requirements:
|
72
|
+
- - ! '>='
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
76
|
+
none: false
|
77
|
+
requirements:
|
78
|
+
- - ! '>='
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '0'
|
81
|
+
requirements: []
|
82
|
+
rubyforge_project:
|
83
|
+
rubygems_version: 1.8.29
|
84
|
+
signing_key:
|
85
|
+
specification_version: 3
|
86
|
+
summary: Fetching GitHub stats
|
87
|
+
test_files: []
|