Sha256: bae83bb753d4e89d7bf497f98db3a6db9b72f2ee2610da181a53684e019929f3
Contents?: true
Size: 759 Bytes
Versions: 16
Compression:
Stored size: 759 Bytes
Contents
module GovukPublishingComponents def self.configure yield(Config) end module Config STATIC_COMPONENT_DIRECTORY = "govuk_component".freeze APP_COMPONENT_DIRECTORY = "components".freeze mattr_accessor :component_guide_title self.component_guide_title = "GOV.UK Component Guide" mattr_accessor :application_stylesheet self.application_stylesheet = "application" mattr_accessor :application_print_stylesheet self.application_print_stylesheet = nil mattr_accessor :application_javascript self.application_javascript = "application" mattr_accessor :static self.static = false def self.component_directory_name static ? STATIC_COMPONENT_DIRECTORY : APP_COMPONENT_DIRECTORY end end end
Version data entries
16 entries across 16 versions & 1 rubygems