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.say("created ssh key")
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.say("not yet implemented")
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.say("We will now generate an ssh key and add it to your github account.")
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
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module GitCredentials
3
- VERSION = "0.0.9"
3
+ VERSION = "0.0.10"
4
4
  end
5
5
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 9
9
- version: 0.0.9
8
+ - 10
9
+ version: 0.0.10
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jeremy Giberson