Sha256: f932d4100f49913695e715f85c8e1316a6da1943f45449578931498cf6df4259
Contents?: true
Size: 1.53 KB
Versions: 7
Compression:
Stored size: 1.53 KB
Contents
require 'pathname' require 'json' require_relative 'freighthop/version' require_relative 'freighthop/config' require_relative 'freighthop/cli' require_relative 'freighthop/vagrant_env' module Freighthop class << self def vmware? !!(defined? HashiCorp) end def host_root Pathname.pwd end def guest_root Pathname("/srv/#{app_name}") end def freighthop_root Pathname(File.dirname(__FILE__)).join('..').expand_path end def app_name @app_name ||= host_root.basename.to_s.gsub(/[_ ]/, '-') end def hostname "#{app_name}.vagrant.dev" end # For now only use NFS on vmware to work around this issue: # https://github.com/phinze/landrush/issues/17 def nfs? if ENV.key? 'FREIGHTHOP_NFS' ['1','true','on'].include?(ENV['FREIGHTHOP_NFS']) else vmware? end end def box_url if vmware? 'http://files.vagrantup.com/precise64_vmware.box' else 'http://files.vagrantup.com/precise64.box' end end def mounts Freighthop::Config.fetch('freighthop::mounts', []).map do |host, guest| [ File.expand_path(host_root.join(host)), File.expand_path(guest_root.join(guest)), ] end end def provision_scripts Freighthop::Config.fetch('freighthop::provision_scripts', []) end def cpus Freighthop::Config.fetch('freighthop::cpus', 2) end def ram Freighthop::Config.fetch('freighthop::ram', 1024) end end end
Version data entries
7 entries across 7 versions & 1 rubygems