Sha256: 0befbdcab4d535571be1a1e70bc005e39b944c7b1f8460d7db1ada21d891dc80
Contents?: true
Size: 568 Bytes
Versions: 11
Compression:
Stored size: 568 Bytes
Contents
#!/usr/bin/env ruby begin require File.expand_path('../../.bundle/environment', __FILE__) rescue LoadError # Fallback on rubygems require "rubygems" end require 'git-style-binary/command' # Get library libdir = File.join(File.dirname(__FILE__), '..', 'lib') $:.unshift(libdir) unless $:.include?(libdir) require 'vagrant' GitStyleBinary.command do short_desc "resumes the vagrant environment" banner <<-EOS Usage: #{command.full_name} #{all_options_string} Resumes the vagrant environment. EOS run do |command| Vagrant::Commands.resume end end
Version data entries
11 entries across 11 versions & 2 rubygems