parent
4d6e5ea287
commit
61c4982fde
13 changed files with 41 additions and 52 deletions
4
.gitmodules
vendored
4
.gitmodules
vendored
|
@ -1,3 +1,3 @@
|
||||||
[submodule "vagrant"]
|
[submodule "vendor/vagrant"]
|
||||||
path = vagrant
|
path = vendor/vagrant
|
||||||
url = git://github.com/mitchellh/vagrant.git
|
url = git://github.com/mitchellh/vagrant.git
|
||||||
|
|
6
Gemfile
6
Gemfile
|
@ -1,13 +1,7 @@
|
||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
unless ENV['USER'] == 'vagrant'
|
|
||||||
puts 'This Gemfile is meant to be used from the dev box'
|
|
||||||
exit 1
|
|
||||||
end
|
|
||||||
|
|
||||||
gemspec
|
gemspec
|
||||||
|
|
||||||
gem 'vagrant', path: './vagrant'
|
|
||||||
gem 'rake'
|
gem 'rake'
|
||||||
gem 'net-ssh'
|
gem 'net-ssh'
|
||||||
gem 'rspec'
|
gem 'rspec'
|
||||||
|
|
10
Gemfile.lock
10
Gemfile.lock
|
@ -2,15 +2,10 @@ PATH
|
||||||
remote: .
|
remote: .
|
||||||
specs:
|
specs:
|
||||||
vagrant-lxc (0.0.1)
|
vagrant-lxc (0.0.1)
|
||||||
|
|
||||||
PATH
|
|
||||||
remote: ./vagrant
|
|
||||||
specs:
|
|
||||||
vagrant (1.1.0.dev)
|
|
||||||
childprocess (~> 0.3.7)
|
childprocess (~> 0.3.7)
|
||||||
erubis (~> 2.7.0)
|
erubis (~> 2.7.0)
|
||||||
i18n (~> 0.6.0)
|
i18n (~> 0.6.0)
|
||||||
json (~> 1.6.6)
|
json (>= 1.5.1, < 1.8.0)
|
||||||
log4r (~> 1.1.9)
|
log4r (~> 1.1.9)
|
||||||
net-scp (~> 1.0.4)
|
net-scp (~> 1.0.4)
|
||||||
net-ssh (~> 2.2.2)
|
net-ssh (~> 2.2.2)
|
||||||
|
@ -38,7 +33,7 @@ GEM
|
||||||
guard-rspec (2.4.1)
|
guard-rspec (2.4.1)
|
||||||
guard (>= 1.1)
|
guard (>= 1.1)
|
||||||
rspec (~> 2.11)
|
rspec (~> 2.11)
|
||||||
i18n (0.6.2)
|
i18n (0.6.3)
|
||||||
json (1.6.8)
|
json (1.6.8)
|
||||||
listen (0.7.3)
|
listen (0.7.3)
|
||||||
log4r (1.1.10)
|
log4r (1.1.10)
|
||||||
|
@ -91,5 +86,4 @@ DEPENDENCIES
|
||||||
rspec-fire
|
rspec-fire
|
||||||
rspec-spies
|
rspec-spies
|
||||||
simplecov
|
simplecov
|
||||||
vagrant!
|
|
||||||
vagrant-lxc!
|
vagrant-lxc!
|
||||||
|
|
9
bin/vagrant-lxc
Executable file
9
bin/vagrant-lxc
Executable file
|
@ -0,0 +1,9 @@
|
||||||
|
#!/usr/bin/env ruby
|
||||||
|
|
||||||
|
if File.exists?(File.join(File.expand_path('../../', __FILE__), '.git'))
|
||||||
|
$:.unshift(File.expand_path('../../lib', __FILE__))
|
||||||
|
end
|
||||||
|
|
||||||
|
require 'vagrant-lxc'
|
||||||
|
|
||||||
|
load Vagrant.source_root.join('bin/vagrant').to_s
|
|
@ -5,5 +5,4 @@ end
|
||||||
|
|
||||||
source "https://rubygems.org"
|
source "https://rubygems.org"
|
||||||
|
|
||||||
gem 'vagrant', path: '../vagrant'
|
|
||||||
gem 'vagrant-lxc', path: '../'
|
gem 'vagrant-lxc', path: '../'
|
||||||
|
|
|
@ -3,35 +3,12 @@ PATH
|
||||||
specs:
|
specs:
|
||||||
vagrant-lxc (0.0.1)
|
vagrant-lxc (0.0.1)
|
||||||
|
|
||||||
PATH
|
|
||||||
remote: ../vagrant
|
|
||||||
specs:
|
|
||||||
vagrant (1.1.0.dev)
|
|
||||||
childprocess (~> 0.3.7)
|
|
||||||
erubis (~> 2.7.0)
|
|
||||||
i18n (~> 0.6.0)
|
|
||||||
json (~> 1.6.6)
|
|
||||||
log4r (~> 1.1.9)
|
|
||||||
net-scp (~> 1.0.4)
|
|
||||||
net-ssh (~> 2.2.2)
|
|
||||||
|
|
||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
childprocess (0.3.8)
|
|
||||||
ffi (~> 1.0, >= 1.0.11)
|
|
||||||
erubis (2.7.0)
|
|
||||||
ffi (1.4.0)
|
|
||||||
i18n (0.6.2)
|
|
||||||
json (1.6.8)
|
|
||||||
log4r (1.1.10)
|
|
||||||
net-scp (1.0.4)
|
|
||||||
net-ssh (>= 1.99.1)
|
|
||||||
net-ssh (2.2.2)
|
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
ruby
|
ruby
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
vagrant!
|
|
||||||
vagrant-lxc!
|
vagrant-lxc!
|
||||||
|
|
|
@ -1,10 +1,6 @@
|
||||||
require "vagrant-lxc/version"
|
require "vendored_vagrant"
|
||||||
|
|
||||||
|
require "vagrant-lxc/version"
|
||||||
require "vagrant-lxc/plugin"
|
require "vagrant-lxc/plugin"
|
||||||
|
|
||||||
I18n.load_path << File.expand_path(File.dirname(__FILE__) + '/../locales/en.yml')
|
I18n.load_path << File.expand_path(File.dirname(__FILE__) + '/../locales/en.yml')
|
||||||
|
|
||||||
module Vagrant
|
|
||||||
module LXC
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
# FIXME: Ruby 1.8 users dont have SecureRandom
|
# FIXME: Ruby 1.8 users dont have SecureRandom
|
||||||
require 'securerandom'
|
require 'securerandom'
|
||||||
|
|
||||||
require 'vagrant/util/retryable'
|
require "vendored_vagrant"
|
||||||
require 'vagrant/util/subprocess'
|
require "vagrant/util/retryable"
|
||||||
|
require "vagrant/util/subprocess"
|
||||||
|
|
||||||
require "vagrant-lxc/errors"
|
require "vagrant-lxc/errors"
|
||||||
|
|
||||||
|
|
9
lib/vendored_vagrant.rb
Normal file
9
lib/vendored_vagrant.rb
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# Tks to: https://github.com/carlhuda/bundler/blob/master/lib/bundler/vendored_thor.rb
|
||||||
|
|
||||||
|
if defined?(Vagrant) && Vagrant.respond_to?(:in_installer?)
|
||||||
|
puts "vagrant has already been required. This may cause vagrant-lxc to malfunction in unexpected ways."
|
||||||
|
end
|
||||||
|
vendor = File.expand_path('../../vendor/vagrant/lib', __FILE__)
|
||||||
|
$:.unshift(vendor) unless $:.include?(vendor)
|
||||||
|
|
||||||
|
require 'vagrant'
|
|
@ -7,9 +7,7 @@ if ENV['COVERAGE']
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
require 'bundler/setup'
|
require 'bundler'
|
||||||
|
|
||||||
Bundler.require
|
|
||||||
|
|
||||||
require 'rspec-spies'
|
require 'rspec-spies'
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,18 @@ Gem::Specification.new do |gem|
|
||||||
gem.homepage = ""
|
gem.homepage = ""
|
||||||
|
|
||||||
gem.files = `git ls-files`.split($/)
|
gem.files = `git ls-files`.split($/)
|
||||||
|
gem.files << `cd vendor/vagrant && git ls-files`.split($/).map{|file| "vendor/vagrant/#{file}"}
|
||||||
|
|
||||||
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
||||||
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
||||||
gem.require_paths = ["lib"]
|
gem.require_paths = ["lib"]
|
||||||
|
|
||||||
|
# Vagrant's dependencies
|
||||||
|
gem.add_dependency "childprocess", "~> 0.3.7"
|
||||||
|
gem.add_dependency "erubis", "~> 2.7.0"
|
||||||
|
gem.add_dependency "i18n", "~> 0.6.0"
|
||||||
|
gem.add_dependency "json", ">= 1.5.1", "< 1.8.0"
|
||||||
|
gem.add_dependency "log4r", "~> 1.1.9"
|
||||||
|
gem.add_dependency "net-ssh", "~> 2.2.2"
|
||||||
|
gem.add_dependency "net-scp", "~> 1.0.4"
|
||||||
end
|
end
|
||||||
|
|
0
vendor/.gitkeep
vendored
Normal file
0
vendor/.gitkeep
vendored
Normal file
1
vendor/vagrant
vendored
Submodule
1
vendor/vagrant
vendored
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 0bb57fbe861de199293af22bf3111306ee37db70
|
Loading…
Reference in a new issue