-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgithub.rb
35 lines (27 loc) · 857 Bytes
/
github.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# frozen_string_literal: true
gemfile do
source "https://rubygems.org"
gem "octokit"
end
plugin :git
plugin :prompt
command :setup do |cmd|
cmd.summary "Connects to GitHub, creates an access token, and stores it in the git-cmd section of your git config"
cmd.on_run do
gh_user = prompt.ask("Please enter your GitHub username", required: true)
gh_password = promt.mask("Please enter your GitHub password (this is NOT stored): ", required: true)
github.login = gh_user
github.password = gh_password
# Check for 2-factor requirements
begin
github.user
rescue Octokit::Unauthorized
github.user(
gh_user,
headers: { "X-GitHub-OTP" => prompt.ask("Please enter your two-factor authentication code") }
)
end
say "GitHub account successfully setup!"
end
end
Octokit::Client.new