Sha256: 242ef31da50711f02be37c676ef4c4faabb76f4167fa7f2f783a36dfa9285a72
Contents?: true
Size: 737 Bytes
Versions: 12
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
12 entries across 12 versions & 1 rubygems