Skip to content

theneubeck/haml-views-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

Haml Views generator

Very simple generator for generating haml views for existing models

Installation

script/plugin install git://github.com/theneubeck/haml-views-generator.git

Usage

Just take a model and generate the views

script/generate haml_views

Example

script/generate haml_views User exists app/models/ exists app/controllers/ exists app/helpers/ exists app/views/users create app/views/users/index.html.haml create app/views/users/show.html.haml create app/views/users/new.html.haml create app/views/users/edit.html.haml create app/views/users/_form.html.haml

Notes

A nice way of using it is to combine with scaffold_generators:

script/generate rspec_scaffold Note exists app/models/ exists app/controllers/ exists app/helpers/ create app/views/notes create spec/controllers/ create spec/models/ create spec/helpers/ create spec/fixtures/ create spec/views/notes create spec/controllers/notes_routing_spec.rb create spec/controllers/notes_controller_spec.rb create app/controllers/notes_controller.rb create spec/helpers/notes_helper_spec.rb create app/helpers/notes_helper.rb create app/views/notes/index.html.erb create app/views/notes/show.html.erb create app/views/notes/new.html.erb create app/views/notes/edit.html.erb create app/models/note.rb create spec/fixtures/notes.yml create spec/models/note_spec.rb create spec/views/notes/edit.html.erb_spec.rb create spec/views/notes/index.html.erb_spec.rb create spec/views/notes/new.html.erb_spec.rb create spec/views/notes/show.html.erb_spec.rb exists db/migrate create db/migrate/20090227091659_create_notes.rb route map.resources :notes rm -rf app/views/notes/* rake db:migrate script/generate haml_views Note

The generator looks up the attributes names from the db, so you’ll need to migrate before using it.

Haml Views generator

A version of the generator that uses the labelled_form_helper from mange

Usage

same as above i.e.

script/generate helped_haml_views

About

A simple generator that takes a model and generates CRUD views for it in Haml

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages