module IncludeAsset # These are custom asset include functions for use in views that cache-bust using the current git version def self.js(path) %Q().html_safe end def self.css(path) %Q().html_safe end private def self.asset_version ENV['ASSET_VERSION'] end end