vagrant-gitcredentials 0.0.1 → 0.0.3
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/lib/{vagrant/gitcredentials → vagrant-gitcredentials}/Action/AddKey.rb +1 -1
- data/lib/{vagrant/gitcredentials → vagrant-gitcredentials}/Action/RemoveKey.rb +1 -1
- data/lib/{vagrant/gitcredentials → vagrant-gitcredentials}/GitCredentials.rb +1 -1
- data/lib/{vagrant/gitcredentials → vagrant-gitcredentials}/plugin.rb +3 -3
- data/lib/vagrant-gitcredentials/version.rb +5 -0
- data/lib/vagrant-gitcredentials.rb +8 -0
- data/vagrant-gitcredentials.gemspec +4 -4
- metadata +8 -8
- data/lib/vagrant/gitcredentials/version.rb +0 -5
- data/lib/vagrant/gitcredentials.rb +0 -8
@@ -1,7 +1,7 @@
|
|
1
|
-
require "vagrant
|
2
|
-
require "vagrant
|
1
|
+
require "vagrant-gitcredentials/Action/AddKey"
|
2
|
+
require "vagrant-gitcredentials/Action/RemoveKey"
|
3
3
|
|
4
|
-
module
|
4
|
+
module VagrantPlugins
|
5
5
|
module GitCredentials
|
6
6
|
class Plugin < Vagrant.plugin('2')
|
7
7
|
name 'GitCredentials'
|
@@ -1,15 +1,15 @@
|
|
1
1
|
# coding: utf-8
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require 'vagrant
|
4
|
+
require 'vagrant-gitcredentials/version'
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "vagrant-gitcredentials"
|
8
|
-
spec.version =
|
8
|
+
spec.version = VagrantPlugins::GitCredentials::VERSION
|
9
9
|
spec.authors = ["Jeremy Giberson"]
|
10
10
|
spec.email = ["jeremyg@webpt.com"]
|
11
|
-
spec.description =
|
12
|
-
spec.summary =
|
11
|
+
spec.description = "Generates SSH key and registers it with your gitHub account"
|
12
|
+
spec.summary = "Allows Guest VM to execute git commands (against gitHub repos) with your credentials."
|
13
13
|
spec.homepage = ""
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 3
|
9
|
+
version: 0.0.3
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Jeremy Giberson
|
@@ -57,12 +57,12 @@ files:
|
|
57
57
|
- LICENSE.txt
|
58
58
|
- README.md
|
59
59
|
- Rakefile
|
60
|
-
- lib/vagrant
|
61
|
-
- lib/vagrant
|
62
|
-
- lib/vagrant
|
63
|
-
- lib/vagrant
|
64
|
-
- lib/vagrant
|
65
|
-
- lib/vagrant
|
60
|
+
- lib/vagrant-gitcredentials.rb
|
61
|
+
- lib/vagrant-gitcredentials/Action/AddKey.rb
|
62
|
+
- lib/vagrant-gitcredentials/Action/RemoveKey.rb
|
63
|
+
- lib/vagrant-gitcredentials/GitCredentials.rb
|
64
|
+
- lib/vagrant-gitcredentials/plugin.rb
|
65
|
+
- lib/vagrant-gitcredentials/version.rb
|
66
66
|
- vagrant-gitcredentials.gemspec
|
67
67
|
has_rdoc: true
|
68
68
|
homepage: ""
|