An open API service indexing awesome lists of open source software.

https://github.com/patcito/angularjs_scaffold

A rails plugin for scaffolding views using Angular.js, Twitter bootstrap and font-awesome.
https://github.com/patcito/angularjs_scaffold

Last synced: 16 days ago
JSON representation

A rails plugin for scaffolding views using Angular.js, Twitter bootstrap and font-awesome.

Awesome Lists containing this project

README

        

## AngularjsScaffold + CoffeeScript

A rails plugin for scaffolding views using Angular.js, Twitter bootstrap
and font awesome

This project uses MIT-LICENSE.

First install the gem or add it to your Gemfile:

$ gem install angularjs_scaffold

Second install it, this will add angularjs, bootstrap and fontawesome (there's an option to only install AngularJS)

$ rails g angularjs:install # adds angular.js and a dummy welcome JS controller

options:

--layout-type=fixed [fluid]
--no-jquery
--no-bootstrap
--language=coffeescript [javascript] NOTE: this setting will be set for the entire rails app
and will affect all subsequent 'rails generate angularjs:scaffold <>' commands

Run your usual scaffold command:

$ rails g scaffold Post title:string body:string
$ rake db:migrate

Now run the angularjs:scaffold command and it will rewrite everything the AngularJS way:

$ rails g angularjs:scaffold Posts # adds everything needed using AngularJS

Enjoy!