vagrant-gitcredentials 0.0.1 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
- module Vagrant
1
+ module VagrantPlugins
2
2
  module GitCredentials
3
3
  module Action
4
4
  class AddKey
@@ -1,4 +1,4 @@
1
- module Vagrant
1
+ module VagrantPlugins
2
2
  module GitCredentials
3
3
  module Action
4
4
  class RemoveKey
@@ -1,4 +1,4 @@
1
- module Vagrant
1
+ module VagrantPlugins
2
2
  module GitCredentials
3
3
  module GitCredentials
4
4
 
@@ -1,7 +1,7 @@
1
- require "vagrant/gitcredentials/Action/AddKey"
2
- require "vagrant/gitcredentials/Action/RemoveKey"
1
+ require "vagrant-gitcredentials/Action/AddKey"
2
+ require "vagrant-gitcredentials/Action/RemoveKey"
3
3
 
4
- module Vagrant
4
+ module VagrantPlugins
5
5
  module GitCredentials
6
6
  class Plugin < Vagrant.plugin('2')
7
7
  name 'GitCredentials'
@@ -0,0 +1,5 @@
1
+ module VagrantPlugins
2
+ module GitCredentials
3
+ VERSION = "0.0.3"
4
+ end
5
+ end
@@ -0,0 +1,8 @@
1
+ require "vagrant-gitcredentials/version"
2
+ require "vagrant-gitcredentials/plugin"
3
+
4
+ module VagrantPlugins
5
+ module GitCredentials
6
+ @source_root ||= Pathname.new(File.expand_path('../../', __FILE__))
7
+ end
8
+ end
@@ -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/gitcredentials/version'
4
+ require 'vagrant-gitcredentials/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "vagrant-gitcredentials"
8
- spec.version = Vagrant::Gitcredentials::VERSION
8
+ spec.version = VagrantPlugins::GitCredentials::VERSION
9
9
  spec.authors = ["Jeremy Giberson"]
10
10
  spec.email = ["jeremyg@webpt.com"]
11
- spec.description = %q{Generates SSH key and registers it with your gitHub account}
12
- spec.summary = %q{Allows Guest VM to execute git commands (against gitHub repos) with your credentials.}
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
- - 1
9
- version: 0.0.1
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/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
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: ""
@@ -1,5 +0,0 @@
1
- module Vagrant
2
- module Gitcredentials
3
- VERSION = "0.0.1"
4
- end
5
- end
@@ -1,8 +0,0 @@
1
- require "vagrant/gitcredentials/version"
2
- require "vagrant/gitcredentials/plugin"
3
-
4
- module Vagrant
5
- module Gitcredentials
6
- @source_root ||= Pathname.new(File.expand_path('../../', __FILE__))
7
- end
8
- end