class Dpl::Providers::Boxfuse

Constants

URL

Public Instance Methods

deploy() click to toggle source
# File lib/dpl/providers/boxfuse.rb, line 38
def deploy
  shell :deploy
end
install() click to toggle source
# File lib/dpl/providers/boxfuse.rb, line 34
def install
  shell :install
end
validate() click to toggle source
# File lib/dpl/providers/boxfuse.rb, line 30
def validate
  # TODO: check if the config file exists (it seems `boxfuse` doesn't)
end

Private Instance Methods

deploy_opts() click to toggle source
# File lib/dpl/providers/boxfuse.rb, line 44
def deploy_opts
  opts = [*opts_for(%i[user secret payload app env version], prefix: '-')]
  opts << "-configfile=#{config_file}" if config_file?
  opts << extra_args if extra_args?
  opts.join(' ')
end