gitwrap 0.9.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/gitwrap-0.9.0.gem +0 -0
- data/lib/gitwrap/data_creator.rb +2 -2
- data/lib/gitwrap/fetch.rb +45 -43
- data/lib/gitwrap/orgs.rb +0 -3
- data/lib/gitwrap/repos.rb +0 -3
- data/lib/gitwrap/users.rb +0 -3
- data/lib/gitwrap/version.rb +1 -1
- data/lib/gitwrap.rb +7 -0
- metadata +3 -4
- data/gitwrap-0.8.0.gem +0 -0
- data/lib/gitwrap/base_connection.rb +0 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae28b52e50117e1c7c3ab1d9e57b9abfdb4353b4
|
|
4
|
+
data.tar.gz: 8397d2284e9df40c8e11a42a525aa3a9512ab80e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ca6fa68b7d1a298e0798d468ec9a7f292bc89205e5272bf65d2f72dcf5019d6933f27d1b8d493fd1b56d560c34ec08d07e35582ac8641aa783fd76df35e8bf1
|
|
7
|
+
data.tar.gz: ae4e64c83db76c2e573159bddca40e610033c9bd106490706376487dfde8f132e6ac8a777181c382212180b2c0b1025a0dbaa8eec9c74cfe550ddafc5a3fbec2
|
data/gitwrap-0.9.0.gem
ADDED
|
Binary file
|
data/lib/gitwrap/data_creator.rb
CHANGED
data/lib/gitwrap/fetch.rb
CHANGED
|
@@ -1,61 +1,63 @@
|
|
|
1
|
-
#
|
|
2
|
-
#
|
|
1
|
+
# require './base_connection.rb'
|
|
2
|
+
# require './users.rb'
|
|
3
|
+
# # puts "Type user's username "
|
|
4
|
+
# # username = gets.chomp
|
|
3
5
|
|
|
4
|
-
# puts '---------USERS--------'
|
|
6
|
+
# # puts '---------USERS--------'
|
|
5
7
|
|
|
6
|
-
# u = User.fetch_single_user(
|
|
8
|
+
# u = User.fetch_single_user('oelizondo')
|
|
7
9
|
# puts "Name: #{u.name}"
|
|
8
10
|
# puts "Email: #{u.email}"
|
|
9
11
|
# puts "Location: #{u.location}"
|
|
10
12
|
# puts "Username: #{u.username}"
|
|
11
13
|
|
|
12
|
-
# puts '-----------------'
|
|
14
|
+
# # puts '-----------------'
|
|
13
15
|
|
|
14
|
-
# all_users = User.fetch_all_users()
|
|
15
|
-
# all_users.each do |user|
|
|
16
|
-
# puts "Username: #{user.username}"
|
|
17
|
-
# end
|
|
16
|
+
# # all_users = User.fetch_all_users()
|
|
17
|
+
# # all_users.each do |user|
|
|
18
|
+
# # puts "Username: #{user.username}"
|
|
19
|
+
# # end
|
|
18
20
|
|
|
19
|
-
# puts '--------ORGS---------'
|
|
21
|
+
# # puts '--------ORGS---------'
|
|
20
22
|
|
|
21
|
-
# org = Org.fetch_single_org('IcaliaLabs')
|
|
22
|
-
# puts "Name: #{org.name}"
|
|
23
|
-
# puts "Site: #{org.site}"
|
|
24
|
-
# puts "Location: #{org.location}"
|
|
25
|
-
# puts "Public Repositories: #{org.public_repos}"
|
|
26
|
-
# puts "Followers: #{org.followers}"
|
|
27
|
-
# puts "Members: #{org.members}"
|
|
23
|
+
# # org = Org.fetch_single_org('IcaliaLabs')
|
|
24
|
+
# # puts "Name: #{org.name}"
|
|
25
|
+
# # puts "Site: #{org.site}"
|
|
26
|
+
# # puts "Location: #{org.location}"
|
|
27
|
+
# # puts "Public Repositories: #{org.public_repos}"
|
|
28
|
+
# # puts "Followers: #{org.followers}"
|
|
29
|
+
# # puts "Members: #{org.members}"
|
|
28
30
|
|
|
29
|
-
# orgs = Org.fetch_all_orgs()
|
|
30
|
-
# orgs.each do |org|
|
|
31
|
-
# puts "Name: #{org.name}"
|
|
32
|
-
# end
|
|
31
|
+
# # orgs = Org.fetch_all_orgs()
|
|
32
|
+
# # orgs.each do |org|
|
|
33
|
+
# # puts "Name: #{org.name}"
|
|
34
|
+
# # end
|
|
33
35
|
|
|
34
|
-
# puts '--------REPOS---------'
|
|
36
|
+
# # puts '--------REPOS---------'
|
|
35
37
|
|
|
36
|
-
# repos = Repo.fetch_user_repos('oelizondo')
|
|
37
|
-
# repos.each do |repo|
|
|
38
|
-
# puts "Repository name: #{repo.name}"
|
|
39
|
-
# end
|
|
38
|
+
# # repos = Repo.fetch_user_repos('oelizondo')
|
|
39
|
+
# # repos.each do |repo|
|
|
40
|
+
# # puts "Repository name: #{repo.name}"
|
|
41
|
+
# # end
|
|
40
42
|
|
|
41
|
-
# puts '-----------------'
|
|
43
|
+
# # puts '-----------------'
|
|
42
44
|
|
|
43
|
-
# repos = Repo.fetch_org_repos('IcaliaLabs')
|
|
44
|
-
# repos.each do |repo|
|
|
45
|
-
# puts "Name: #{repo.name}"
|
|
46
|
-
# puts "Language: #{repo.language}"
|
|
47
|
-
# puts "Stars: #{repo.stars}"
|
|
48
|
-
# end
|
|
49
|
-
# puts '-----------------'
|
|
45
|
+
# # repos = Repo.fetch_org_repos('IcaliaLabs')
|
|
46
|
+
# # repos.each do |repo|
|
|
47
|
+
# # puts "Name: #{repo.name}"
|
|
48
|
+
# # puts "Language: #{repo.language}"
|
|
49
|
+
# # puts "Stars: #{repo.stars}"
|
|
50
|
+
# # end
|
|
51
|
+
# # puts '-----------------'
|
|
50
52
|
|
|
51
|
-
# repos = Repo.fetch_all_repos()
|
|
52
|
-
# repos.each do |repo|
|
|
53
|
-
# puts "Name: #{repo.name}"
|
|
54
|
-
# end
|
|
53
|
+
# # repos = Repo.fetch_all_repos()
|
|
54
|
+
# # repos.each do |repo|
|
|
55
|
+
# # puts "Name: #{repo.name}"
|
|
56
|
+
# # end
|
|
55
57
|
|
|
56
|
-
# puts '-----------------'
|
|
58
|
+
# # puts '-----------------'
|
|
57
59
|
|
|
58
|
-
# repo = Repo.fetch_single_repo('oelizondo', 'Angular_1')
|
|
59
|
-
# puts "Name: #{repo.name}"
|
|
60
|
-
# puts "Language: #{repo.language}"
|
|
61
|
-
# puts "Stars #{repo.stars}"
|
|
60
|
+
# # repo = Repo.fetch_single_repo('oelizondo', 'Angular_1')
|
|
61
|
+
# # puts "Name: #{repo.name}"
|
|
62
|
+
# # puts "Language: #{repo.language}"
|
|
63
|
+
# # puts "Stars #{repo.stars}"
|
data/lib/gitwrap/orgs.rb
CHANGED
data/lib/gitwrap/repos.rb
CHANGED
data/lib/gitwrap/users.rb
CHANGED
data/lib/gitwrap/version.rb
CHANGED
data/lib/gitwrap.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitwrap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- oscarmarcelo95
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-07-
|
|
11
|
+
date: 2015-07-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -53,11 +53,10 @@ files:
|
|
|
53
53
|
- Rakefile
|
|
54
54
|
- bin/console
|
|
55
55
|
- bin/setup
|
|
56
|
-
- gitwrap-0.
|
|
56
|
+
- gitwrap-0.9.0.gem
|
|
57
57
|
- gitwrap.gemspec
|
|
58
58
|
- lib/gitwrap.rb
|
|
59
59
|
- lib/gitwrap/.DS_Store
|
|
60
|
-
- lib/gitwrap/base_connection.rb
|
|
61
60
|
- lib/gitwrap/data_creator.rb
|
|
62
61
|
- lib/gitwrap/fetch.rb
|
|
63
62
|
- lib/gitwrap/orgs.rb
|
data/gitwrap-0.8.0.gem
DELETED
|
Binary file
|