vagrant-gitcredentials 0.0.9 → 0.0.10
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.
@@ -5,17 +5,17 @@ module VagrantPlugins
|
|
5
5
|
def createKey
|
6
6
|
promptCredentials()
|
7
7
|
# do stuff
|
8
|
-
@ui.
|
8
|
+
@ui.info("created ssh key")
|
9
9
|
end
|
10
10
|
|
11
11
|
# calls github v3 api to remove key from user account
|
12
12
|
def deleteKey
|
13
|
-
@ui.
|
13
|
+
@ui.info("not yet implemented")
|
14
14
|
end
|
15
15
|
|
16
16
|
# get (temporarily) git credentials from user
|
17
17
|
def promptCredentials
|
18
|
-
@ui.
|
18
|
+
@ui.info("We will now generate an ssh key and add it to your github account.")
|
19
19
|
@gitUsername = @ui.ask("What is your github account name? ")
|
20
20
|
@gitPassword = @ui.ask("What is your github account password? (not stored) ")
|
21
21
|
end
|