vagrant/plugins/pushes/harmony/config.rb

74 lines
2.0 KiB
Ruby
Raw Normal View History

2014-10-29 03:54:16 +00:00
module VagrantPlugins
module HarmonyPush
class Config < Vagrant.plugin("2", :config)
# The name of the application to push to. This will be created (with
# user confirmation) if it doesn't already exist.
#
# @return [String]
attr_accessor :app
# The base directory with file contents to upload. By default this
# is the same directory as the Vagrantfile, but you can specify this
# if you have a `src` folder or `bin` folder or some other folder
# you want to upload.
#
# @return [String]
attr_accessor :dir
# Lists of files to include/exclude in what is uploaded. Exclude is
# always the last run filter, so if a file is matched in both include
# and exclude, it will be excluded.
#
# The value of the array elements should be a simple file glob relative
# to the directory being packaged.
#
# @return [Array<String>]
attr_accessor :include
attr_accessor :exclude
# If set to true, Vagrant will automatically use VCS data to determine
# the files to upload. As a caveat: uncommitted changes will not be
# deployed.
#
# @return [Boolean]
attr_accessor :vcs
def initialize
@app = UNSET_VALUE
@dir = UNSET_VALUE
@vcs = UNSET_VALUE
@include = []
@exclude = []
end
def merge(other)
super.tap do |result|
inc = self.include.dup
inc.concat(other.include)
result.include = inc
exc = self.exclude.dup
exc.concat(other.exclude)
result.exclude = exc
end
end
def finalize!
@app = nil if @app == UNSET_VALUE
@dir = "." if @dir == UNSET_VALUE
@vcs = true if @vcs == UNSET_VALUE
end
def validate(machine)
errors = _detected_errors
if @app == nil || @app == ""
errors << I18n.t("push_harmony.errors.config.app_required")
end
{ "Harmony push" => errors }
end
end
end
end