Sha256: e513e451b70b8f699ec5f4e139bf6ec7f90ab6ea8bb247f1dba2373133fbf44d

Contents?: true

Size: 1.28 KB

Versions: 35

Compression:

Stored size: 1.28 KB

Contents

Description:
    Scaffolds an entire resource, from model and migration to controller and
    views, along with a full test suite. The resource is ready to use as a
    starting point for your restful, resource-oriented application.

    Pass the name of the model, either CamelCased or under_scored, as the first
    argument, and an optional list of attribute pairs.

    Attribute pairs are column_name:sql_type arguments specifying the
    model's attributes. Timestamps are added by default, so you don't have to
    specify them by hand as 'created_at:datetime updated_at:datetime'.

    You don't have to think up every attribute up front, but it helps to
    sketch out a few so you can start working with the resource immediately.

    For example, `scaffold post title:string body:text published:boolean`
    gives you a model with those three attributes, a controller that handles
    the create/show/update/destroy, forms to create and edit your posts, and
    an index that lists them all, as well as a map.resources :posts
    declaration in config/routes.rb.

Examples:
    `./script/generate scaffold post` # no attributes, view will be anemic
    `./script/generate scaffold post title:string body:text published:boolean`
    `./script/generate scaffold purchase order_id:integer amount:decimal`

Version data entries

35 entries across 35 versions & 8 rubygems

Version Path
technicalpickles-shoulda_generator-0.1.0 rails_generators/shoulda_scaffold/USAGE
technicalpickles-shoulda_generator-0.1.1 rails_generators/shoulda_scaffold/USAGE
technicalpickles-shoulda_generator-0.1.2 rails_generators/shoulda_scaffold/USAGE
radiant-0.7.2 vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE
vibes-bj-1.2.2 spec/rails_root/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE
vibes-bj-1.2.1 spec/rails_root/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE
antfarm-0.3.0 rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE
antfarm-0.4.0 rails/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE
erails-2.1.2 lib/rails_generator/generators/components/scaffold/USAGE
radiant-0.6.5.1 vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE
radiant-0.6.5 vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE
radiant-0.6.6 vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE
radiant-0.6.7 vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE
radiant-0.6.9 vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE
radiant-0.6.8 vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE
radiant-0.7.0 vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE
radiant-0.7.1 vendor/rails/railties/lib/rails_generator/generators/components/scaffold/USAGE
rails-2.0.4 lib/rails_generator/generators/components/scaffold/USAGE
rails-2.0.0 lib/rails_generator/generators/components/scaffold/USAGE
rails-2.0.1 lib/rails_generator/generators/components/scaffold/USAGE