Sha256: 0874b605d6cd49f50b7ccbce0113a114d4f19fec51e5a7653cc4dea7c59d7800
Contents?: true
Size: 1.87 KB
Versions: 2
Compression:
Stored size: 1.87 KB
Contents
module GovukPublishingComponents class AuditController < GovukPublishingComponents::ApplicationController def show application_dirs = %w[ collections collections-publisher content-data-admin content-publisher datagovuk_find email-alert-frontend feedback finder-frontend frontend government-frontend govspeak-preview info-frontend licence-finder manuals-frontend release search-admin service-manual-frontend signon smart-answers static travel-advice-publisher whitehall ] application_dirs = [GovukPublishingComponents::ApplicationHelper.get_application_name_from_path(Rails.root)] unless ENV["MAIN_COMPONENT_GUIDE"] gem_path = Gem.loaded_specs["govuk_publishing_components"].full_gem_path gem_path = Dir.pwd if ENV["MAIN_COMPONENT_GUIDE"] host_dir = File.expand_path("..") @in_application = false @in_application = true unless ENV["MAIN_COMPONENT_GUIDE"] components = AuditComponents.new(gem_path, false) applications = analyse_applications(host_dir, application_dirs) compared_data = AuditComparer.new(components.data, applications) @applications = compared_data.applications_data || [] @components = compared_data.gem_data || [] end private def analyse_applications(path, application_dirs) results = [] applications_found = 0 application_dirs.each do |application| application_path = [path, application].join("/") app = AuditApplications.new(application_path, application) applications_found += 1 if app.data[:application_found] results << app.data end @other_applications = false @other_applications = true if applications_found > 1 results end end end
Version data entries
2 entries across 2 versions & 1 rubygems