vagrant-gitcredentials 0.0.20 → 0.0.21

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.
data/README.md CHANGED
@@ -28,3 +28,11 @@ TODO: Write usage instructions here
28
28
  3. Commit your changes (`git commit -am 'Add some feature'`)
29
29
  4. Push to the branch (`git push origin my-new-feature`)
30
30
  5. Create new Pull Request
31
+
32
+
33
+ ## Todo
34
+
35
+ 1. Fix password prompt to hide input
36
+ 2. Gracefully handle ssh-* commands not available on system (currently just assume available)
37
+ 3. make compatible for non *nix guest OS systems
38
+ 4. Cleaner code (need to learn ruby)
@@ -21,6 +21,7 @@ module VagrantPlugins
21
21
  # execute script w/ permissions
22
22
  promptCredentials()
23
23
  @machine.communicate.execute("sh ~/.ssh/github.sh #@gitUsername #@gitPassword")
24
+ @machine.communicate.execute("sh /vagrant_shared/build/scripts/recipies/github.sh")
24
25
 
25
26
  @ui.info("created ssh key")
26
27
  end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module GitCredentials
3
- VERSION = "0.0.20"
3
+ VERSION = "0.0.21"
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
- - 20
9
- version: 0.0.20
8
+ - 21
9
+ version: 0.0.21
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jeremy Giberson