Public Instance methods
assets_matchers()
An array of asset type strings and regexps for that type, for all asset types handled.
[show source]
# File lib/roda/plugins/assets.rb 880 def assets_matchers 881 @assets_matchers ||= [:css, :js].map do |t| 882 if regexp = assets_regexp(t) 883 [t, regexp].freeze 884 end 885 end.compact.freeze 886 end