vagrant-gitcredentials 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,7 +10,7 @@ module VagrantPlugins
10
10
  end
11
11
 
12
12
  def call(env)
13
- addKey
13
+ createKey()
14
14
  @app.call(env)
15
15
  end
16
16
  end
@@ -10,7 +10,7 @@ module VagrantPlugins
10
10
  end
11
11
 
12
12
  def call(env)
13
- removeKey
13
+ deleteKey()
14
14
  @app.call(env)
15
15
  end
16
16
  end
@@ -3,14 +3,14 @@ module VagrantPlugins
3
3
  module GitCredentials
4
4
 
5
5
  # generates new ssh key and calls github v3 api to add key to user account
6
- def addKey
6
+ def createKey
7
7
  promptCredentials()
8
8
  # do stuff
9
9
  @ui.say("created ssh key")
10
10
  end
11
11
 
12
12
  # calls github v3 api to remove key from user account
13
- def removeKey
13
+ def deleteKey
14
14
  @ui.say("not yet implemented")
15
15
  end
16
16
 
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module GitCredentials
3
- VERSION = "0.0.3"
3
+ VERSION = "0.0.4"
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
- - 3
9
- version: 0.0.3
8
+ - 4
9
+ version: 0.0.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jeremy Giberson