Rails 3 and script/generate

what is rails 3 equivalent to script/generate? I am trying to use
Twitter-OAuth and it has a generator and I am not sure how to use it.

The documentation is all for rails 2.3. Any ideas are appreciated!

On Mon, Aug 22, 2011 at 5:50 PM, soldier.coder <
[email protected]> wrote:

what is rails 3 equivalent to script/generate? I am trying to use
Twitter-OAuth and it has a generator and I am not sure how to use it.

The documentation is all for rails 2.3. Any ideas are appreciated!

First, you can find the Rails 3 documentation here:

Second, the equivalent to script/generate is the following:

rails generate

or

rails g

Finally, I would recommend reading the following first:

Good luck,

-Conrad