bib-vagrant 0.1.4 → 0.1.5

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: 7133007baecfa23b1110bb1da199c3287ca47c24
4
- data.tar.gz: cdd0a1c46083cf22fe43e000217a2621668ede60
3
+ metadata.gz: 6aaebacbe528115aeabe0118f64d0b29141e9fad
4
+ data.tar.gz: 83c0e1c0239a8d67e34e79dc8414c6fa35844423
5
5
  SHA512:
6
- metadata.gz: 152b6356535d41c0bf127a49fce4507b24d568916d59f66ffdc81948526d5af668285202eea17960030f6ab38c1cc454149050c982ea4eb617c6b613836fc323
7
- data.tar.gz: 0bc5861591fc18e20184ea6ee386cd10543c65053eb773d3f9796c3436eecd877ece2c60aba8e370cc3d7b196c4d04a12f66b2328eb41d171b5d1c3f4c2e41fc
6
+ metadata.gz: 4744974e04266db09b7db103c42a53aaf56ac6c23499bdddaa7f97f38d7064cda41796f583398e4e62b8c7b63a63feea24e1df67bd23f12c9365ff142bb7f621
7
+ data.tar.gz: b92a5dc7f89eb01087ee4a0690f9b4cc7b4a1d28b00627f8201104ac2af944c31baea46b24af39ff59b4535acb7d161c0ad8e4c7ea2f3b46e2c4f3e8d3ed7a18
data/bib-vagrant.gemspec CHANGED
@@ -6,7 +6,7 @@ require 'bib/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'bib-vagrant'
8
8
  spec.version = Bib::Vagrant::VERSION
9
- spec.authors = %w('tillk', 'fh', 'gilleyj')
9
+ spec.authors = %w(tillk, fh, gilleyj, seppsepp)
10
10
  spec.email = ['till@php.net']
11
11
  spec.description = "A rubygem to centralize configuration and setup in every project's Vagrantfile"
12
12
  spec.summary = 'Centralize configuration and setup'
@@ -77,7 +77,8 @@ module Bib
77
77
  'vagrant-hosts' => 'https://github.com/adrienthebo/vagrant-hosts',
78
78
  'vagrant-faster' => 'https://github.com/rdsubhas/vagrant-faster#how-much-does-it-allocate',
79
79
  'vagrant-cachier' => 'https://github.com/easybib/issues/wiki/Knowledgebase:-Global-Vagrant-setup#enable-vagrant-cachier-globally',
80
- 'bib-vagrant' => 'See https://github.com/easybiblabs/bib-vagrant/blob/master/README.md'
80
+ 'bib-vagrant' => 'See https://github.com/easybiblabs/bib-vagrant/blob/master/README.md',
81
+ 'vagrant-logs' => 'See https://github.com/easybiblabs/vagrant-logs/blob/master/README.md'
81
82
  }
82
83
  end
83
84
 
@@ -125,11 +126,11 @@ module Bib
125
126
  dna
126
127
  end
127
128
 
128
- def prepare_app_settings(vagrantconfig, machine, dna, applicationlist = 'applications')
129
+ def prepare_app_settings(vagrantconfig, machine, dna, host_folder_root, applicationlist = 'applications')
129
130
  dna = add_composertoken_to_dna(dna, vagrantconfig)
130
131
  dna['vagrant'][applicationlist].each do |app, app_config|
131
132
  vagrant_share = File.expand_path(app_config['app_root_location'])
132
- host_folder = "#{File.dirname(__FILE__)}/sites/#{app}"
133
+ host_folder = host_folder_root + "/#{app}"
133
134
  if vagrantconfig['nfs']
134
135
  machine.vm.synced_folder host_folder, vagrant_share, type: 'nfs', mount_options: ['nolock,vers=3,udp,noatime,actimeo=1']
135
136
  elsif vagrantconfig['rsync']
data/lib/bib/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Bib
2
2
  module Vagrant
3
- VERSION = '0.1.4'
3
+ VERSION = '0.1.5'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,16 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bib-vagrant
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
- - "'tillk',"
8
- - "'fh',"
9
- - "'gilleyj'"
7
+ - tillk,
8
+ - fh,
9
+ - gilleyj,
10
+ - seppsepp
10
11
  autorequire:
11
12
  bindir: bin
12
13
  cert_chain: []
13
- date: 2016-02-11 00:00:00.000000000 Z
14
+ date: 2016-02-12 00:00:00.000000000 Z
14
15
  dependencies:
15
16
  - !ruby/object:Gem::Dependency
16
17
  name: thor
@@ -169,7 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
169
170
  version: '0'
170
171
  requirements: []
171
172
  rubyforge_project:
172
- rubygems_version: 2.4.8
173
+ rubygems_version: 2.5.1
173
174
  signing_key:
174
175
  specification_version: 4
175
176
  summary: Centralize configuration and setup