Description

this is doing the same thing as `rails generate model` does, Take it easy, dude :)

Examples:

`rails generate aginx:model account`

    For Active Record and TestUnit it creates:

        Model:      app/models/account.rb
        Test:       test/models/account_test.rb
        Fixtures:   test/fixtures/accounts.yml
        Migration:  db/migrate/XXX_create_accounts.rb

`rails generate aginx:model post title:string body:text published:boolean`

    Creates a Post model with a string title, text body, and published flag.

`rails generate aginx:model admin/account`

    For Active Record and TestUnit it creates:

        Module:     app/models/admin.rb
        Model:      app/models/admin/account.rb
        Test:       test/models/admin/account_test.rb
        Fixtures:   test/fixtures/admin/accounts.yml
        Migration:  db/migrate/XXX_create_admin_accounts.rb