vagrant-mountcommand 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/changelog.md ADDED
@@ -0,0 +1,2 @@
1
+ # v0.0.2
2
+ - Changed the first provision timeout to 3 minutes
@@ -18,7 +18,7 @@ module VagrantPlugins
18
18
  run_mount_commands = true
19
19
  if sentinel.file?
20
20
  timestamp = sentinel.open('rb').read
21
- if Integer(timestamp) + 60 > Time.now.to_i
21
+ if Integer(timestamp) + 180 > Time.now.to_i
22
22
  run_mount_commands = false
23
23
  end
24
24
  end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module MountCommand
3
- VERSION = '0.0.1'
3
+ VERSION = '0.0.2'
4
4
  end
5
5
  end
@@ -1,10 +1,11 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "vagrant-mountcommand/version"
4
5
 
5
6
  Gem::Specification.new do |s|
6
7
  s.name = "vagrant-mountcommand"
7
- s.version = "0.0.1"
8
+ s.version = VagrantPlugins::MountCommand::VERSION
8
9
  s.platform = Gem::Platform::RUBY
9
10
  s.authors = ["Brendan Tobolaski"]
10
11
  s.email = ["brendan@tobolaski.com"]
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
+ - 2
9
+ version: 0.0.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Brendan Tobolaski
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2013-10-15 00:00:00 -05:00
17
+ date: 2013-10-16 00:00:00 -05:00
18
18
  default_executable:
19
19
  dependencies: []
20
20
 
@@ -32,6 +32,7 @@ files:
32
32
  - Gemfile
33
33
  - LICENSE
34
34
  - README.md
35
+ - changelog.md
35
36
  - lib/vagrant-mountcommand.rb
36
37
  - lib/vagrant-mountcommand/action.rb
37
38
  - lib/vagrant-mountcommand/config.rb