forked from pool/vagrant
20 lines
484 B
Ruby
20 lines
484 B
Ruby
|
#!/usr/bin/ruby
|
||
|
|
||
|
begin
|
||
|
$LOAD_PATH.unshift "%{vagrant_dir}/lib"
|
||
|
begin
|
||
|
require "vagrant/plugin/manager"
|
||
|
rescue LoadError => e
|
||
|
raise
|
||
|
end
|
||
|
|
||
|
$stdin.each_line do |gemspec_file|
|
||
|
next if gemspec_file =~ /\/%{name}-%{version}.gemspec$/
|
||
|
|
||
|
spec = Gem::Specification.load(gemspec_file.strip)
|
||
|
Vagrant::Plugin::StateFile.new(Pathname.new(File.expand_path "%{vagrant_plugin_conf}")).add_plugin spec.name
|
||
|
end
|
||
|
rescue => e
|
||
|
puts "Vagrant plugin register error: #{e}"
|
||
|
end
|