Sha256: 6a48af0afa7e31a170cebdb08485189cbe37d72ae69eea6e05a91a8124799765
Contents?: true
Size: 905 Bytes
Versions: 61
Compression:
Stored size: 905 Bytes
Contents
# frozen_string_literal: true require 'avm/eac_rails_base1/instances/base' require 'eac_ruby_utils/core_ext' module Avm module EacRedmineBase0 module Instances class Base < ::Avm::EacRailsBase1::Instances::Base module Install def run_installer ::EacRubyUtils::Ruby.on_clean_environment do installer_command.system! end end def installer_command host_env.command(installer_path, install_task) end def installer_path ::File.join(install_path, 'plugins', 'redmine_installer', 'installer', 'run.sh') end def install_task if web_path_optional.present? 'redmine_as_apache_path' else 'redmine_as_apache_base' end end end end end end end
Version data entries
61 entries across 61 versions & 2 rubygems