This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
MIT-LICENSE | ||
| |
README | ||
| |
Rakefile | ||
| |
init.rb | ||
| |
install.rb | ||
| |
lib/ | ||
| |
tasks/ | ||
| |
test/ | ||
| |
uninstall.rb |
README
CanHasAssets ============ can_has_assets is a super-simple way of requiring stylesheets and javascript files from within views. It also supports inserting snippets of CSS and Javascript into a page only once. Snippet support should really only be used for rapid prototyping, though. :) Installation ------------ script/plugin install git://github.com/radicaled/can_has_assets.git Notes ----- can_has_* will include a file or snippet only once -- it is safe to call these methods multiple times, where-ever required. Alternatives ------------ If you're looking for more control, consider Needy Controllers by Michael Bleigh: http://github.com/mbleigh/needy-controllers/tree Example ======= In your layout: <%= stylesheet_link_tag :can_has_assets %> <%= javascript_include_tag :can_has_assets %> In your views: CSS --- <% can_has_css 'css_file' %> <% can_has_css :sample_snippet do %> .item { /* some fake example css here */ } Javascript ---------- <% can_has_js 'js_file' %> <% can_has_js :sample_snippet do %> function helloWorld() { alert("Hello, world!"); } <% end %> <% end %> Copyright (c) 2009 Arron Washington, released under the MIT license








