X-Git-Url: https://pwan.org/git/?p=vagrant-dotfiles.git;a=blobdiff_plain;f=lib%2Fcopy_my_conf%2Fconfig.rb;fp=lib%2Fcopy_my_conf%2Fconfig.rb;h=0000000000000000000000000000000000000000;hp=a1e51e6b5cf3a7636de4601691b29ec647c32dde;hb=e83a68ac49cf7bf169e58b5706605b072b4966a3;hpb=fa35bc36a5430811c454bc6f93aca0f6bdf20348 diff --git a/lib/copy_my_conf/config.rb b/lib/copy_my_conf/config.rb deleted file mode 100644 index a1e51e6..0000000 --- a/lib/copy_my_conf/config.rb +++ /dev/null @@ -1,26 +0,0 @@ -require_relative "git" -require_relative "ssh" -require_relative "vim" - -module CopyMyConf - class Config < Vagrant.plugin("2", :config) - attr_accessor :user_home - - def git - @git ||= CopyMyConf::Git.new - end - - def vim - @vim ||= CopyMyConf::Vim.new - end - - def ssh - @ssh ||=CopyMyConf::Ssh.new - end - - def all_enabled_attributes - [@ssh, @vim, @git].compact - end - end -end -