Sha256: 7cb779109389ff7fb299ea225b4875e72cff7adcbfb15ccdc2e0c4b3174d48da
Contents?: true
Size: 737 Bytes
Versions: 21
Compression:
Stored size: 737 Bytes
Contents
module Lookbook module ApplicationHelper def config Lookbook::Engine.config.lookbook end def theme Lookbook.theme end def asset_path(file, version: true) path = "/lookbook-assets/#{file}".gsub("//", "/") version ? "#{path}?v=#{Lookbook::VERSION}" : path end def feature_enabled?(name) Lookbook::Features.enabled?(name) end def landing_path landing = Lookbook.pages.find(&:landing) || Lookbook.pages.first if landing.present? lookbook_page_path landing.lookup_path else lookbook_home_path end end def generate_id(*args) args.map { |args| args.delete_prefix("/").tr("&?=/_\-", "-") }.join("-") end end end
Version data entries
21 entries across 21 versions & 1 rubygems