Skip to content

Instantly share code, notes, and snippets.

@BDQ
Created July 15, 2011 09:12
Show Gist options
  • Save BDQ/1084369 to your computer and use it in GitHub Desktop.
Save BDQ/1084369 to your computer and use it in GitHub Desktop.
<% if Rails.env.development? %>
<% DefaceEditor::Theme.active.each do |theme| %>
<% theme.stylesheets.each do |stylesheet| %>
<style id="<%= stylesheet.name %>">
<%= stylesheet.css %>
</style>
<% end %>
<% theme.javascripts.each do |javascript| %>
<script type="text/javascript" id="<%= javascript.id %>">
<%= javascript.js %>
</script>
<% end %>
<% end %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment