github_analyze 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.tool-versions +2 -0
- data/.travis.yml +7 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +85 -0
- data/Rakefile +6 -0
- data/Readme.md +69 -0
- data/bin/beautify +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/github_analyze +4 -0
- data/github_analyze.gemspec +37 -0
- data/lib/github_analyze/cli.rb +43 -0
- data/lib/github_analyze/client.rb +27 -0
- data/lib/github_analyze/organization.rb +72 -0
- data/lib/github_analyze/version.rb +3 -0
- data/lib/github_analyze.rb +8 -0
- metadata +188 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 9131bbb49b782e328f9cccb4ce92432da2d99145998f4bf66a842ba064713dec
|
4
|
+
data.tar.gz: 01a8066b1484921442f50325bf8ff845b1a6387945744034ed410445b35bcc8f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: bb1e2b186305710cbcfe24da3fc4be2b397b48e27dbefda179a27958ea0df9963703f1bf7e415738595c80ed3f0668fcdb97be810f0ec13056d145f546a372f1
|
7
|
+
data.tar.gz: 30dfd012fddcb339063479e8f056a8d86db54c4e043a09c926418c059dea576c52fcb4c4c7dac4b4adae159e0ef60320c92065c4edb5be32e7ec101dfa116d5f
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.tool-versions
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at georgedrummond@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
github_analyze (0.1.0)
|
5
|
+
graphlient
|
6
|
+
thor
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
activesupport (5.2.3)
|
12
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
13
|
+
i18n (>= 0.7, < 2)
|
14
|
+
minitest (~> 5.1)
|
15
|
+
tzinfo (~> 1.1)
|
16
|
+
addressable (2.6.0)
|
17
|
+
public_suffix (>= 2.0.2, < 4.0)
|
18
|
+
coderay (1.1.2)
|
19
|
+
concurrent-ruby (1.1.5)
|
20
|
+
crack (0.4.3)
|
21
|
+
safe_yaml (~> 1.0.0)
|
22
|
+
diff-lcs (1.3)
|
23
|
+
faraday (0.15.4)
|
24
|
+
multipart-post (>= 1.2, < 3)
|
25
|
+
faraday_middleware (0.13.1)
|
26
|
+
faraday (>= 0.7.4, < 1.0)
|
27
|
+
graphlient (0.3.6)
|
28
|
+
faraday
|
29
|
+
faraday_middleware
|
30
|
+
graphql-client
|
31
|
+
graphql (1.9.8)
|
32
|
+
graphql-client (0.14.0)
|
33
|
+
activesupport (>= 3.0, < 6.0)
|
34
|
+
graphql (~> 1.6)
|
35
|
+
hashdiff (1.0.0)
|
36
|
+
i18n (1.6.0)
|
37
|
+
concurrent-ruby (~> 1.0)
|
38
|
+
method_source (0.9.2)
|
39
|
+
minitest (5.11.3)
|
40
|
+
multipart-post (2.1.1)
|
41
|
+
prettier (0.14.0)
|
42
|
+
pry (0.12.2)
|
43
|
+
coderay (~> 1.1.0)
|
44
|
+
method_source (~> 0.9.0)
|
45
|
+
public_suffix (3.1.1)
|
46
|
+
rake (10.5.0)
|
47
|
+
rspec (3.8.0)
|
48
|
+
rspec-core (~> 3.8.0)
|
49
|
+
rspec-expectations (~> 3.8.0)
|
50
|
+
rspec-mocks (~> 3.8.0)
|
51
|
+
rspec-core (3.8.2)
|
52
|
+
rspec-support (~> 3.8.0)
|
53
|
+
rspec-expectations (3.8.4)
|
54
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
55
|
+
rspec-support (~> 3.8.0)
|
56
|
+
rspec-mocks (3.8.1)
|
57
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
58
|
+
rspec-support (~> 3.8.0)
|
59
|
+
rspec-support (3.8.2)
|
60
|
+
safe_yaml (1.0.5)
|
61
|
+
thor (0.20.3)
|
62
|
+
thread_safe (0.3.6)
|
63
|
+
tzinfo (1.2.5)
|
64
|
+
thread_safe (~> 0.1)
|
65
|
+
vcr (5.0.0)
|
66
|
+
webmock (3.6.0)
|
67
|
+
addressable (>= 2.3.6)
|
68
|
+
crack (>= 0.3.2)
|
69
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
70
|
+
|
71
|
+
PLATFORMS
|
72
|
+
ruby
|
73
|
+
|
74
|
+
DEPENDENCIES
|
75
|
+
bundler (~> 1.17)
|
76
|
+
github_analyze!
|
77
|
+
prettier
|
78
|
+
pry
|
79
|
+
rake (~> 10.0)
|
80
|
+
rspec (~> 3.0)
|
81
|
+
vcr
|
82
|
+
webmock
|
83
|
+
|
84
|
+
BUNDLED WITH
|
85
|
+
1.17.2
|
data/Rakefile
ADDED
data/Readme.md
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
[![Build Status](https://travis-ci.org/georgedrummond/github_analyze.svg?branch=master)](https://travis-ci.org/georgedrummond/github_analyze)
|
2
|
+
|
3
|
+
# GithubAnalyze
|
4
|
+
|
5
|
+
This gem reports the most or least popular languages used in a GitHub organization.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'github_analyze'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install github_analyze
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
First [create a GitHub authentication token](https://help.github.com/en/articles/creating-a-personal-access-token-for-the-command-line)
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
require 'github_analyze'
|
29
|
+
|
30
|
+
# Create an instance GithubAnalyze::Client
|
31
|
+
client = GithubAnalyze::Client.new(
|
32
|
+
github_authentication_token: 'GITHUB_AUTHENTICATION_TOKEN'
|
33
|
+
)
|
34
|
+
|
35
|
+
# Look up an organization
|
36
|
+
organization = client.organization(name: 'github')
|
37
|
+
|
38
|
+
# Find out the most popular languages used in that organization
|
39
|
+
organization.most_common_languages # => ['Ruby', 'JavaScript', 'Go', 'C', 'Shell']
|
40
|
+
|
41
|
+
# Find least common languages used in that organization
|
42
|
+
organization.least_common_languages # => ['Ragel in Ruby Host', 'PowerShell', 'Scala', 'Clojure', 'Perl']
|
43
|
+
```
|
44
|
+
|
45
|
+
## Command Line
|
46
|
+
|
47
|
+
Run the `github_analyze help` command to see command line options
|
48
|
+
|
49
|
+
## Generate CSV export of repositories
|
50
|
+
|
51
|
+
```
|
52
|
+
gem install github_analyze
|
53
|
+
GITHUB_AUTHENTICATION_TOKEN=changeme github_analyze csv google /tmp/report.csv
|
54
|
+
cat /tmp/report.csv
|
55
|
+
```
|
56
|
+
|
57
|
+
## Development
|
58
|
+
|
59
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
60
|
+
|
61
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
62
|
+
|
63
|
+
## Contributing
|
64
|
+
|
65
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/georgedrummond/github_analyze. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
66
|
+
|
67
|
+
## Code of Conduct
|
68
|
+
|
69
|
+
Everyone interacting in the Stackshare project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/georgedrummond/github_analyze/blob/master/CODE_OF_CONDUCT.md).
|
data/bin/beautify
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "github_analyze"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/exe/github_analyze
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
lib = File.expand_path('../lib', __FILE__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
require 'github_analyze/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = 'github_analyze'
|
7
|
+
spec.version = GithubAnalyze::VERSION
|
8
|
+
spec.authors = ['George Drummond']
|
9
|
+
spec.email = %w[georgedrummond@gmail.com]
|
10
|
+
|
11
|
+
spec.summary = 'Analyze GitHub organizations for language data'
|
12
|
+
spec.description = 'Analyze GitHub organizations for language data'
|
13
|
+
spec.homepage = 'https://github.com/georgedrummond/github_analyze'
|
14
|
+
|
15
|
+
# Specify which files should be added to the gem when it is released.
|
16
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
17
|
+
spec.files =
|
18
|
+
Dir.chdir(File.expand_path('..', __FILE__)) do
|
19
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
20
|
+
f.match(%r{^(test|spec|features)/})
|
21
|
+
end
|
22
|
+
end
|
23
|
+
spec.bindir = 'exe'
|
24
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
25
|
+
spec.require_paths = %w[lib]
|
26
|
+
|
27
|
+
spec.add_development_dependency 'bundler', '~> 1.17'
|
28
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
29
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
30
|
+
spec.add_development_dependency 'vcr'
|
31
|
+
spec.add_development_dependency 'webmock'
|
32
|
+
spec.add_development_dependency 'pry'
|
33
|
+
spec.add_development_dependency 'prettier'
|
34
|
+
|
35
|
+
spec.add_dependency 'graphlient'
|
36
|
+
spec.add_dependency 'thor'
|
37
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
require 'thor'
|
2
|
+
require 'csv'
|
3
|
+
require 'github_analyze'
|
4
|
+
|
5
|
+
module GithubAnalyze
|
6
|
+
class Cli < Thor
|
7
|
+
desc 'stats ORGANIZATION', 'report language stats for said organization'
|
8
|
+
def stats(organization)
|
9
|
+
client.organization(name: organization)
|
10
|
+
.ranked_languages
|
11
|
+
.each
|
12
|
+
.with_index { |language, i| puts "#{i + 1} - #{language}" }
|
13
|
+
end
|
14
|
+
|
15
|
+
desc 'csv ORGANIZATION ABSOLUTE_FILE_PATH','generate CSV of most common languages by repo count'
|
16
|
+
def csv(organization, file_path)
|
17
|
+
CSV.open(file_path, 'wb') do |csv|
|
18
|
+
csv << ['Repository', 'Language', 'Created At']
|
19
|
+
client.organization(name: organization).repositories.each do |repository|
|
20
|
+
primary_language = repository.primary_language
|
21
|
+
csv <<
|
22
|
+
[
|
23
|
+
repository.name,
|
24
|
+
(primary_language ? primary_language.name : 'None'),
|
25
|
+
repository.created_at
|
26
|
+
]
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
private
|
32
|
+
|
33
|
+
def client
|
34
|
+
if ENV['GITHUB_AUTHENTICATION_TOKEN']
|
35
|
+
GithubAnalyze::Client.new(
|
36
|
+
github_authentication_token: ENV['GITHUB_AUTHENTICATION_TOKEN']
|
37
|
+
)
|
38
|
+
else
|
39
|
+
raise 'You must set GITHUB_AUTHENTICATION_TOKEN environment variable'
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
require 'graphlient'
|
2
|
+
require 'pry'
|
3
|
+
|
4
|
+
module GithubAnalyze
|
5
|
+
class Client
|
6
|
+
def initialize(github_authentication_token:)
|
7
|
+
@github_authentication_token = github_authentication_token
|
8
|
+
end
|
9
|
+
|
10
|
+
def organization(name:)
|
11
|
+
GithubAnalyze::Organization.new(name: name, client: graphql_client)
|
12
|
+
end
|
13
|
+
|
14
|
+
private
|
15
|
+
|
16
|
+
def graphql_client
|
17
|
+
Graphlient::Client.new(
|
18
|
+
'https://api.github.com/graphql',
|
19
|
+
{
|
20
|
+
headers: {
|
21
|
+
'Authorization' => "bearer #{@github_authentication_token}"
|
22
|
+
}
|
23
|
+
}
|
24
|
+
)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,72 @@
|
|
1
|
+
module GithubAnalyze
|
2
|
+
class Organization
|
3
|
+
attr_reader :name, :client, :repositories, :languages
|
4
|
+
|
5
|
+
def initialize(name:, client:)
|
6
|
+
@name = name
|
7
|
+
@client = client
|
8
|
+
@languages = Hash.new(0)
|
9
|
+
@repositories = []
|
10
|
+
|
11
|
+
process!
|
12
|
+
end
|
13
|
+
|
14
|
+
def ranked_languages
|
15
|
+
languages.sort_by { |k, v| [-v, k] }.map { |k, v| k }
|
16
|
+
end
|
17
|
+
|
18
|
+
def most_common_languages
|
19
|
+
ranked_languages.first(5)
|
20
|
+
end
|
21
|
+
|
22
|
+
def least_common_languages
|
23
|
+
ranked_languages.last(5)
|
24
|
+
end
|
25
|
+
|
26
|
+
private
|
27
|
+
|
28
|
+
def process!
|
29
|
+
start_cursor = nil
|
30
|
+
loop do
|
31
|
+
result = github_graphql(start_cursor: start_cursor)
|
32
|
+
|
33
|
+
repos = result.data.organization.repositories.nodes
|
34
|
+
|
35
|
+
repos.each do |repository|
|
36
|
+
primary_language = repository.primary_language
|
37
|
+
languages[primary_language.name] += 1 if primary_language
|
38
|
+
repositories << repository
|
39
|
+
end
|
40
|
+
|
41
|
+
if result.data.organization.repositories.page_info.has_next_page
|
42
|
+
start_cursor =
|
43
|
+
result.data.organization.repositories.page_info.end_cursor
|
44
|
+
else
|
45
|
+
break
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
def github_graphql(start_cursor:)
|
51
|
+
client.query <<~GRAPHQL
|
52
|
+
query {
|
53
|
+
organization(login: "#{name}") {
|
54
|
+
repositories(first: 100, after: #{start_cursor}) {
|
55
|
+
pageInfo {
|
56
|
+
hasNextPage
|
57
|
+
endCursor
|
58
|
+
}
|
59
|
+
nodes {
|
60
|
+
name
|
61
|
+
createdAt
|
62
|
+
primaryLanguage {
|
63
|
+
name
|
64
|
+
}
|
65
|
+
}
|
66
|
+
}
|
67
|
+
}
|
68
|
+
}
|
69
|
+
GRAPHQL
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
metadata
ADDED
@@ -0,0 +1,188 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: github_analyze
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- George Drummond
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-07-28 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.17'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.17'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: vcr
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: webmock
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: pry
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: prettier
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: graphlient
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: thor
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
description: Analyze GitHub organizations for language data
|
140
|
+
email:
|
141
|
+
- georgedrummond@gmail.com
|
142
|
+
executables:
|
143
|
+
- github_analyze
|
144
|
+
extensions: []
|
145
|
+
extra_rdoc_files: []
|
146
|
+
files:
|
147
|
+
- ".gitignore"
|
148
|
+
- ".rspec"
|
149
|
+
- ".tool-versions"
|
150
|
+
- ".travis.yml"
|
151
|
+
- CODE_OF_CONDUCT.md
|
152
|
+
- Gemfile
|
153
|
+
- Gemfile.lock
|
154
|
+
- Rakefile
|
155
|
+
- Readme.md
|
156
|
+
- bin/beautify
|
157
|
+
- bin/console
|
158
|
+
- bin/setup
|
159
|
+
- exe/github_analyze
|
160
|
+
- github_analyze.gemspec
|
161
|
+
- lib/github_analyze.rb
|
162
|
+
- lib/github_analyze/cli.rb
|
163
|
+
- lib/github_analyze/client.rb
|
164
|
+
- lib/github_analyze/organization.rb
|
165
|
+
- lib/github_analyze/version.rb
|
166
|
+
homepage: https://github.com/georgedrummond/github_analyze
|
167
|
+
licenses: []
|
168
|
+
metadata: {}
|
169
|
+
post_install_message:
|
170
|
+
rdoc_options: []
|
171
|
+
require_paths:
|
172
|
+
- lib
|
173
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
174
|
+
requirements:
|
175
|
+
- - ">="
|
176
|
+
- !ruby/object:Gem::Version
|
177
|
+
version: '0'
|
178
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
179
|
+
requirements:
|
180
|
+
- - ">="
|
181
|
+
- !ruby/object:Gem::Version
|
182
|
+
version: '0'
|
183
|
+
requirements: []
|
184
|
+
rubygems_version: 3.0.3
|
185
|
+
signing_key:
|
186
|
+
specification_version: 4
|
187
|
+
summary: Analyze GitHub organizations for language data
|
188
|
+
test_files: []
|