class RubyWebApp
Public Instance Methods
build()
click to toggle source
# File lib/gordon/application/templates/ruby_web_app.rb, line 30 def build home_path = get_skeleton_path_from_type($env_vars, $env_vars.http_server_type) create_user_and_group($env_vars, home_path) setup_user_permissions($env_vars, home_path) create_init($env_vars, $env_vars.http_server_type) end
install()
click to toggle source
# File lib/gordon/application/templates/ruby_web_app.rb, line 39 def install create_log_folder($env_vars) install_init($env_vars) install_http_server_files($env_vars, RUBY_BLACKLIST_FILES) end