module Locomotive module Liquid module Tags class Blueprint < ::Liquid::Tag def render(context) %{ } end end ::Liquid::Template.register_tag('blueprint_stylesheets', Blueprint) end end end