vagrant-gitcredentials 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -8,6 +8,7 @@ module VagrantPlugins
8
8
 
9
9
  def initialize(app, env)
10
10
  @app = app
11
+ @ui = env[:ui]
11
12
  @machine = env[:machine]
12
13
  end
13
14
 
@@ -7,6 +7,7 @@ module VagrantPlugins
7
7
 
8
8
  def initialize(app, env)
9
9
  @app = app
10
+ @ui = env[:ui]
10
11
  @machine = env[:machine]
11
12
  end
12
13
 
@@ -1,10 +1,6 @@
1
1
  module VagrantPlugins
2
2
  module GitCredentials
3
3
  module Util
4
- include Vagrant
5
-
6
- @ui = Vagrant::Environment::ui
7
-
8
4
  # generates new ssh key and calls github v3 api to add key to user account
9
5
  def createKey
10
6
  promptCredentials()
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module GitCredentials
3
- VERSION = "0.0.8"
3
+ VERSION = "0.0.9"
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
- - 8
9
- version: 0.0.8
8
+ - 9
9
+ version: 0.0.9
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jeremy Giberson