Skip to content

Instantly share code, notes, and snippets.

@jlebrech
Last active December 12, 2015 05:29
Show Gist options
  • Save jlebrech/4722221 to your computer and use it in GitHub Desktop.
Save jlebrech/4722221 to your computer and use it in GitHub Desktop.
domain problem based javascript, css and html
<% widget_coffee :my_widget do %>
... some coffeescript excluding closure wrapping
... this content gets compiled into application.js once.
<% end %>
<% widget_sass :my_widget do %>
... namespaced styling for my_widget
... this gets compiled into application.css once.
<% end %>
<div class='widget'>
... html for my_widget, appears like a standard rails partial and is widgetized by the code above.
</div>
@jlebrech
Copy link
Author

jlebrech commented Feb 6, 2013

the problem domain is 'my_widget', my widget does something simple, but having the code in three separate areas in the source directory is clumsy, so including all the code for the widget in one place makes it simple until in grows (once that happens you can put the related code in the same directory)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment