vagrant-git 0.1.6 → 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9d72346fc8bb90343e3daf622adf254030c5a522
4
- data.tar.gz: 946fc977cc5d8ad07f16d748594b491c85ed9a06
3
+ metadata.gz: cd19a3035b5c510ebe350eda1d9b50316a45b36f
4
+ data.tar.gz: 74fc156282f51f0756e327f4096d69f1ede943b5
5
5
  SHA512:
6
- metadata.gz: da56d198075d36515b810ea1835478be0dc054c749cf25b451ab684cca940ca2a2c28676c19923a9e3e24f69fe5495ef69958d05544004552b2bd4c660720bbd
7
- data.tar.gz: c1b7d32700a7dae757221981762223ef827a7e484889d29507f43bc32f4a67ed6a63338f6d3e366c1c86c33d948c9b57cc3e7721035b611288b3c1f7607c8caa
6
+ metadata.gz: b618e9c66a84bb40616578174398724378bccb471dafb93e33f31ab4ffc1c2eb05cb5fd6a316ca87f8ed44e022d6477f9d2b4241e2f6045d8dfa08330b6f9aba
7
+ data.tar.gz: 0a040cc35c48c3a16cf67aceb22f5bd028cbb63f055f545bc0cd00fd9739605e017bc110f0df07d68b6a6bc92d76185d5260dc70af38f1f59f226ba19742a5ad
data/.gitignore CHANGED
@@ -1,2 +1,3 @@
1
1
  Gemfile.lock
2
2
  pkg
3
+ example-box/.vagrant
@@ -0,0 +1 @@
1
+ ruby-2.2.3
data/README.md CHANGED
@@ -47,5 +47,6 @@ The following properties are optional (but not yet supported):
47
47
 
48
48
  ```bash
49
49
  $ bundle install
50
- $ gem build vagrant-git.gemspec
50
+ $ cd ./example-box/
51
+ $ bundle exec vagrant up
51
52
  ```
@@ -5,7 +5,7 @@
5
5
  VAGRANTFILE_API_VERSION = "2"
6
6
 
7
7
  Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
8
- config.vm.box = "hashicorp/precise64"
8
+ config.vm.box = "ubuntu/trusty64"
9
9
  config.vm.network "private_network", ip: "192.168.66.10"
10
10
 
11
11
  config.vm.synced_folder '.', '/vagrant', disabled: true
@@ -13,7 +13,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
13
13
  #config.vm.synced_folder './vagrant-git', '/tmp/vagrant-git'
14
14
 
15
15
  config.git.add_repo do |rc|
16
- rc.target = 'https://github.com:Learnosity/vagrant-git.git'
16
+ rc.target = 'https://github.com/Learnosity/vagrant-git.git'
17
17
  rc.path = '/tmp/vagrant-git'
18
18
  rc.branch = 'master'
19
19
  rc.clone_in_host = true
@@ -4,7 +4,7 @@ module VagrantPlugins
4
4
  class << self
5
5
  # Run the command, wait for exit and return the Process object.
6
6
  def run(cmd)
7
- pid = Process.fork { exec(cmd) }
7
+ pid = spawn(cmd)
8
8
  Process.waitpid(pid)
9
9
  return $?
10
10
  end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module VagrantGit
3
- VERSION = "0.1.6"
3
+ VERSION = "0.1.7"
4
4
  end
5
5
  end
@@ -26,6 +26,4 @@ Gem::Specification.new do |s|
26
26
  end
27
27
 
28
28
  s.add_development_dependency 'bundler', '>= 1.2.0'
29
- s.add_development_dependency 'vagrant', '>= 1.2'
30
-
31
29
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-git
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Bryan
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-10-21 00:00:00.000000000 Z
12
+ date: 2015-11-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -25,20 +25,6 @@ dependencies:
25
25
  - - ">="
26
26
  - !ruby/object:Gem::Version
27
27
  version: 1.2.0
28
- - !ruby/object:Gem::Dependency
29
- name: vagrant
30
- requirement: !ruby/object:Gem::Requirement
31
- requirements:
32
- - - ">="
33
- - !ruby/object:Gem::Version
34
- version: '1.2'
35
- type: :development
36
- prerelease: false
37
- version_requirements: !ruby/object:Gem::Requirement
38
- requirements:
39
- - - ">="
40
- - !ruby/object:Gem::Version
41
- version: '1.2'
42
28
  description: A vagrant plugin to allow checking out git repositories as part of vagrant
43
29
  tasks.
44
30
  email:
@@ -49,6 +35,7 @@ extensions: []
49
35
  extra_rdoc_files: []
50
36
  files:
51
37
  - ".gitignore"
38
+ - ".ruby-version"
52
39
  - Gemfile
53
40
  - LICENSE
54
41
  - README.md