Sha256: 204ad6c75857c8b7832a2cacfdb25eb75e8e2c35cf27053b6f20d41e713d10ab
Contents?: true
Size: 775 Bytes
Versions: 29
Compression:
Stored size: 775 Bytes
Contents
module GovukPublishingComponents def self.configure yield(Config) end module Config APP_COMPONENT_DIRECTORY = "components".freeze mattr_accessor :component_guide_title self.component_guide_title = "Component Guide" mattr_accessor :application_dir self.application_dir = "" mattr_accessor :application_stylesheet self.application_stylesheet = "application" mattr_accessor :application_javascript self.application_javascript = "application" mattr_accessor :exclude_css_from_static self.exclude_css_from_static = true def self.component_directory_name APP_COMPONENT_DIRECTORY end def self.gem_directory Gem::Specification.find_by_name("govuk_publishing_components").gem_dir end end end
Version data entries
29 entries across 29 versions & 1 rubygems