Giter VIP home page Giter VIP logo

asset_auto_include's Introduction

AssetAutoInclude
=====================

== Homepage
  http://github.com/gabrielg/asset_auto_include
  
== Resources

Install
 * Run the following command:
 script/plugin install git://github.com/gabrielg/asset_auto_include.git
 
== Usage

 Add the following to the head of your template file

 <%= javascript_auto_include_tags %>
 <%= stylesheet_auto_include_tags %>
  
 Now each time the template is loaded javascript files in the public/javascripts/app
 folder and CSS files in the public/stylesheets/app folder that correspond to the name of the 
 current controller or view will be auto loaded. It's also possible for the same javascript 
 or CSS file to be loaded by multiple views by adding the name of each view to the filename 
 separated by the "-" character, e.g. to load a javascript file in the new and edit views 
 create a file named new-edit.js. Any number of views can be strung together using this naming 
 convention. For example:

 /public
   /javascripts
     /app
       /users
         controller.js
         edit.js
       /roles
         controller.js
       /accounts
         show-new-edit-create.js
   /stylesheets
     /app
       /users
         controller.css
         edit.css
  
 Assuming the above file structure loading each of the following urls would include:
 
 mydomain.com/users             # includes controller.js and controller.css
 mydomain.com/users/edit/1      # includes controller.js, edit.js, and edit.css
 mydomain.com/users/show/1      # includes controller.js
 mydomain.com/roles             # includes roles.js
 mydomain.com/accounts          # no files included
 mydomain.com/accounts/show/1   # includes show.js and show-new-edit-create.js
 mydomain.com/accounts/new      # includes show-new-edit-create.js
 mydomain.com/accounts/edit/1   # includes show-new-edit-create.js
 mydomain.com/accounts/create   # includes show-new-edit-create.js

== Acknowledgements 

  Thanks to http://github.com/kernow/javascript_auto_include and
  http://github.com/abradburne/javascript_auto_include for the base to work
  from.

asset_auto_include's People

Contributors

kernow avatar jpfinley avatar abradburne avatar toothrot avatar

Stargazers

 avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.