github-cloner 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +23 -4
- data/lib/github_cloner/opt_parser.rb +2 -2
- data/lib/github_cloner/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c8b499f9f4e3e664fd4ad7c8a8cc3e35016381d2
|
4
|
+
data.tar.gz: 1a298ca74a8e9dc2894296d7b20d9a7bf1915337
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 477e3a679a2640e65ec520540b05442cc4e70bd6371a5cbe0e7571e9143ff2a2bb772f299b211749ed8e3e121705583eae53ded3f01e447cc1a2d717ecfb44eb
|
7
|
+
data.tar.gz: 37a53eb54e7a42c9d0c9cc8c57d4dbb334eaa83fe68d5495609427b690e1e35a48ffffc2b9698b78f9c3a954783b18ebb1edf71a436c134424e4482a5731159f
|
data/CHANGELOG.md
CHANGED
@@ -1,13 +1,32 @@
|
|
1
|
-
|
1
|
+
## Changelogs
|
2
2
|
|
3
|
-
|
3
|
+
All notable changes to this project will be documented in this file.
|
4
|
+
This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).
|
5
|
+
|
6
|
+
## [Unreleased]
|
7
|
+
|
8
|
+
### Added
|
9
|
+
|
10
|
+
- Update the changelogs
|
11
|
+
|
12
|
+
### Fixed
|
13
|
+
|
14
|
+
- Fix typo in example usage
|
15
|
+
|
16
|
+
## 0.5.0 - 2016-06-08
|
17
|
+
|
18
|
+
### Added
|
4
19
|
|
5
20
|
- Allow new option -r to use config file from `~/.ssh/config`
|
6
21
|
|
7
|
-
|
22
|
+
## 0.4.0 - 2016-04-07
|
23
|
+
|
24
|
+
### Added
|
8
25
|
|
9
26
|
- Allow more than one languages to be cloned (new feature)
|
10
27
|
|
11
|
-
|
28
|
+
## 0.3.0 - 2016-04-06
|
29
|
+
|
30
|
+
### Added
|
12
31
|
|
13
32
|
- Initial release
|
@@ -99,11 +99,11 @@ module GithubCloner
|
|
99
99
|
puts "$github-cloner -b ~/Desktop/projects -u awesome_user -l 'JavaScript,Emacs Lisp' -c"
|
100
100
|
puts ""
|
101
101
|
puts "5) Clone all 'JavaScript' and 'Emacs Lisp' repositories for a given organization where a given user belongs to (include private repos)"
|
102
|
-
puts "$github-cloner -b ~/Desktop/projects -u awesome_user -o awesome_company -
|
102
|
+
puts "$github-cloner -b ~/Desktop/projects -u awesome_user -o awesome_company -t GITHUB_TOKEN -l 'JavaScript,Emacs Lisp' -c"
|
103
103
|
puts ""
|
104
104
|
puts "6) Clone all 'JavaScript' and 'Emacs Lisp' repositories for a given organization where a given user belongs to (include private repos)"
|
105
105
|
puts " Using the host configured in ~/.ssh/config file instead of the default github.com"
|
106
|
-
puts "$github-cloner -b ~/Desktop/projects -u awesome_user -o awesome_company -
|
106
|
+
puts "$github-cloner -b ~/Desktop/projects -u awesome_user -o awesome_company -t GITHUB_TOKEN -l 'JavaScript,Emacs Lisp' -r github-work -c"
|
107
107
|
puts ""
|
108
108
|
exit
|
109
109
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: github-cloner
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Burin Choomnuan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-06-
|
11
|
+
date: 2016-06-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: github_api
|
@@ -238,7 +238,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
238
238
|
version: '0'
|
239
239
|
requirements: []
|
240
240
|
rubyforge_project:
|
241
|
-
rubygems_version: 2.5.1
|
241
|
+
rubygems_version: 2.4.5.1
|
242
242
|
signing_key:
|
243
243
|
specification_version: 4
|
244
244
|
summary: Clone/list Github repository for a given user/organization include private/public
|