github-interactor 0.1.0 → 1.0.0
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/Gemfile.lock +1 -1
- data/README.md +9 -1
- data/Rakefile +3 -0
- data/lib/github/interactor/version.rb +1 -1
- data/lib/rake_tasks.rb +7 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9fdbce4e5036e486bfd75f836ed256b568a0e1b43df4ff6c890925bfa1f59d9a
|
4
|
+
data.tar.gz: aa628e35656a8e2c15df59d6523a571a84964c0292b877793891ebc0b030dd0e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84c484a88075e3dcff13cb91b44d9dff58553b81f02a47936bd95c03b36efe4a0a0a7623599083846eddd70b398f280c6e9e4e2170d1a5d1f150dcd07ef37aea
|
7
|
+
data.tar.gz: 768b8d2eb6516edd12ce94e770ef80dc50751e1236baf2c3bcecd1283cc1b906a33246944455542a6862cafe8268def6193688f37394b15528e2ef09f7c5b119
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -16,7 +16,15 @@ If bundler is not being used to manage dependencies, install the gem by executin
|
|
16
16
|
|
17
17
|
## Usage
|
18
18
|
|
19
|
-
|
19
|
+
Run a rake task and pass a github username
|
20
|
+
|
21
|
+
```
|
22
|
+
rake github_user soumyaveer
|
23
|
+
```
|
24
|
+
|
25
|
+
- For Valid username it returns the users repos and followers.
|
26
|
+
- For invalid username it returns an error message - `Failed with error: Not Found`
|
27
|
+
|
20
28
|
|
21
29
|
## Development
|
22
30
|
|
data/Rakefile
CHANGED
data/lib/rake_tasks.rb
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: github-interactor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Soumya Veer
|
@@ -135,6 +135,7 @@ files:
|
|
135
135
|
- lib/github_api_client.rb
|
136
136
|
- lib/init.rb
|
137
137
|
- lib/inspect_user.rb
|
138
|
+
- lib/rake_tasks.rb
|
138
139
|
- sig/github/interactor.rbs
|
139
140
|
homepage: ''
|
140
141
|
licenses:
|