Sha256: e1eb6a6acaefcefdf2289ff370a3a0580992f1b93e307730513deb7160ccece5
Contents?: true
Size: 708 Bytes
Versions: 21
Compression:
Stored size: 708 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_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
21 entries across 21 versions & 1 rubygems