class JavaWebApp

Public Instance Methods

build() click to toggle source
# File lib/gordon/application/templates/java_web_app.rb, line 29
def build
  web_server_path = get_skeleton_path_from_type($env_vars, $env_vars.web_server_type)

  war_path = File.join(web_server_path, $env_vars.app_name)

  clean_java_web_workdir($env_vars, war_path)
end
install() click to toggle source
# File lib/gordon/application/templates/java_web_app.rb, line 37
def install
  install_web_server_files($env_vars, JAVA_BLACKLIST_FILES)
end