github_sniffer 0.0.2 → 0.0.21a
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 +7 -5
- data/github_sniffer.gemspec +1 -1
- data/lib/github_sniffer/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 66c6df481f3543ad81359fbc8b0c67eca31f057a
|
|
4
|
+
data.tar.gz: 660bfca5f9febf637c3ee0832235b2fa31c14a18
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b06d4fa7bfb8745128de3e5ec8facea928d35bc8a02623147efad95140115debe5762c3905121ed0c70c044fc1f8d07a1095e39560e3e7554316caf499cccec7
|
|
7
|
+
data.tar.gz: e61bb556d46a7497bf31ce941990e740f1fa92a97bd3cc1fbadf80d57cab05585147479d5579b1d69cd81696bdcba68f5a4c782c83a3fd8edbbd56eec5222bcc
|
data/README.md
CHANGED
|
@@ -2,11 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
Simple command line tool with github api to display github users most used languages.
|
|
4
4
|
|
|
5
|
-
run `bundle exec bin/github_sniffer dominant_language USERNAME` to display users preferred language.
|
|
6
|
-
`dl` is an alias for `dominant_language`.
|
|
7
|
-
|
|
8
|
-
run `bin/console` for an interactive prompt.
|
|
9
|
-
|
|
10
5
|
## Installation
|
|
11
6
|
|
|
12
7
|
Add this line to your application's Gemfile:
|
|
@@ -22,9 +17,16 @@ And then execute:
|
|
|
22
17
|
Or install it yourself as:
|
|
23
18
|
|
|
24
19
|
$ gem install github_sniffer
|
|
20
|
+
## Usage
|
|
21
|
+
To display users most used languages from the repositories type:
|
|
22
|
+
`github_sniffer [dl, dominant_language] USERNAME`
|
|
25
23
|
|
|
26
24
|
## Development
|
|
27
25
|
|
|
26
|
+
run `bundle exec bin/github_sniffer dominant_language USERNAME` to display users preferred language.
|
|
27
|
+
`dl` is an alias for `dominant_language`.
|
|
28
|
+
|
|
29
|
+
run `bin/console` for an interactive prompt.
|
|
28
30
|
run `rspec spec` and `cucumber` for tests.
|
|
29
31
|
|
|
30
32
|
## Contributing
|
data/github_sniffer.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ['rails.kung.foo@gmail.com']
|
|
11
11
|
|
|
12
12
|
spec.summary = 'Simple command line tool to display user prefered language.'
|
|
13
|
-
spec.description = 'Simple command line tool to
|
|
13
|
+
spec.description = 'Simple command line tool to display user prefered language.'
|
|
14
14
|
spec.homepage = 'https://github.com/rails-kung-foo/github-sniffer'
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: github_sniffer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.21a
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- rails-kung-foo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-05-
|
|
11
|
+
date: 2016-05-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -122,7 +122,7 @@ dependencies:
|
|
|
122
122
|
- - ">="
|
|
123
123
|
- !ruby/object:Gem::Version
|
|
124
124
|
version: '0'
|
|
125
|
-
description: Simple command line tool to
|
|
125
|
+
description: Simple command line tool to display user prefered language.
|
|
126
126
|
email:
|
|
127
127
|
- rails.kung.foo@gmail.com
|
|
128
128
|
executables:
|
|
@@ -163,9 +163,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
163
163
|
version: '0'
|
|
164
164
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
165
165
|
requirements:
|
|
166
|
-
- - "
|
|
166
|
+
- - ">"
|
|
167
167
|
- !ruby/object:Gem::Version
|
|
168
|
-
version:
|
|
168
|
+
version: 1.3.1
|
|
169
169
|
requirements: []
|
|
170
170
|
rubyforge_project:
|
|
171
171
|
rubygems_version: 2.5.1
|