Skip to content

Instantly share code, notes, and snippets.

View ithinkdancan's full-sized avatar

Daniel Tijerina ithinkdancan

  • H-E-B Digital
  • Austin, TX
View GitHub Profile
@jeremyruppel
jeremyruppel / asset_helper.rb
Created June 10, 2013 19:24
Inline asset helpers for middleman.
module AssetHelper
##
# Renders a stylesheet asset inline.
def inline_stylesheet( name )
content_tag :style do
sprockets[ "#{name}.css" ].to_s
end
end