Sha256: 2e486354885487e34b9d80b2403c442ed49df4b934fb71c4b2bd2f26afddb004
Contents?: true
Size: 591 Bytes
Versions: 5
Compression:
Stored size: 591 Bytes
Contents
begin require 'vagrant' rescue LoadError raise 'The Vagrant landrush plugin must be run within Vagrant.' end module Landrush def self.working_dir @working_dir ||= Pathname(File.expand_path('~/.vagrant.d/data/landrush')).tap(&:mkpath) end def self.working_dir=(working_dir) @working_dir = Pathname(working_dir).tap(&:mkpath) end end require 'rubydns' require 'landrush/dependent_vms' require 'landrush/plugin' require 'landrush/resolver_config' require 'landrush/server' require 'landrush/store' require 'landrush/util' require 'landrush/version' require 'ext/rexec'
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
landrush-0.5.0 | lib/landrush.rb |
landrush-0.4.1 | lib/landrush.rb |
landrush-0.4.0 | lib/landrush.rb |
landrush-0.3.1 | lib/landrush.rb |
landrush-0.3.0 | lib/landrush.rb |