augustl (owner)

Revisions

gist: 11963 Download_button fork
public
Public Clone URL: git://gist.github.com/11963.git
Embed All Files: show embed
application.html.erb #
1
2
3
4
5
6
7
8
<html>
<head>
  <%= javascript_include_tag *javascripts %>
</head>
<body>
  <%= yield %>
</body>
</html>
application_helper.rb #
1
2
3
4
5
6
module ApplicationHelper
  def javascripts(*scripts)
    @javascripts ||= []
    @javascripts.push(scripts).flatten!.uniq!
  end
end
some_view.html.erb #
1
<% javascripts "foo", "bar" %>