Skip to content

Instantly share code, notes, and snippets.

@eagsalazar
Created June 14, 2011 13:47
Show Gist options
  • Save eagsalazar/1024928 to your computer and use it in GitHub Desktop.
Save eagsalazar/1024928 to your computer and use it in GitHub Desktop.
index.html.erb:
---------------------------------------------------------
<div>STUFF WE SHOULDNT SEE</div>
<% foo(:head, @hsh) do %>
<script type="text/javascript" src="/js/work.js"></script>
<% end %>
someruby.rb
---------------------------------------------------------
def foo name, hsh
yield
end
result:
--------------------------------------------------------
<div>STUFF WE SHOULDNT SEE</div>
<script type="text/javascript" src="/js/work.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment