(typo)
[vagrant-dotfiles.git] / lib / vagrant-dotfiles.rb
1 module VagrantPlugins
2 module VagrantDotfiles
3 class Plugin < Vagrant.plugin("2")
4 name "vagrant-dotfiles"
5 description <<-DESC
6 Provide support for copying home directory files mentioned in ~/.vagrant/dotfiles
7 to the /vagrant directory on the vagrant box.
8 DESC
9
10 config('vagrant-dotfiles', :provisioner) do
11 require File.expand_path("../config", __FILE__)
12 Config
13 end
14
15 provisioner('vagrant-dotfiles') do
16 require File.expand_path("../provisioner", __FILE__)
17 Provisioner
18 end
19 end
20 end
21 end