Asset Pipeline (Sprockets) without the Rails
Now your static CSS and Javascript pages can have the power of Sprockets!
Just a simple rake task and some choice gems and you can have the
structure of the Rails Asset Pipeline without the Rails.
├── Gemfile
├── Gemfile.lock
├── Rakefile
├── assets
│ ├── javascripts
│ │ └── application.js
│ │ └── friday.js.coffee
│ ├── stylesheets
│ │ └── application.css
│ │ └── hello.css.less
├── public
│ ├── css
│ │ └── application.js
│ ├── js
│ │ └── application.js
bundle install
rake assets:compile
Your compiled assets will be in your /public
folder ready to do your bidding…