Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
5answers
18k views

Where are the docs for Rails “script/generate model”?

I am running ruby script/generate scaffold or ruby script/generate model and I know the basic syntax, like ruby script/generate scaffold Dude name:string face:boolean but I do not know ...
11
votes
4answers
4k views

Why does Ruby “script/generate” return “No such file or directory”?

I am having trouble using script/generate. I am following the tree based navigation tutorial, which says to use script/plugin install git://github.com/rails/acts_as_tree.git or script/generate ...
1
vote
3answers
2k views

Ruby On Rails Scaffold LoadError

I am learning Ruby on Rails using a book I picked up called "Head First Rails" I am in the first chapter and it tells me to create my CRUD procedures using the following command: ruby ...
0
votes
1answer
78 views

How do I exclude auto generated columns from SQL Server Generate Script Data Only?

SQL Server Generate Script does a great job of creating a script for the data in the tables using the Data Only option for 'Types of data to script' in the advanced option. However the script ...
0
votes
2answers
81 views

What is this error I'm getting when I try to generate a Ruby on Rails controller?

I've created controllers in the past successfully, but all of a sudden I'm getting a weird error. I'm doing this: ruby script/generate controller Request And am getting this error message: ...
0
votes
3answers
2k views

SQLServer 2005 Generate all INDEX as CREATE statement?

I have two database with same structures, but one of them is missing INDEXES (i think i've missed out), i mean the table didn't have any INDEXES yet. I was plan to generate CREATE INDEX for the ...