Undefined method `paginate'

I have updated rails to 2.0.1. When I wrote a blog demo, I got
NoMethodError
undefined method ‘scaffold’
I searched with google and installed scaffolding plugin, now the
undefined
method ‘scaffold’ has gone, but there’s still NoMethodError

*undefined method `paginate’ *

How can I fix this error?

On 13 dic, 08:33, “huang zhimin” [email protected] wrote:

I have updated rails to 2.0.1. When I wrote a blog demo, I got NoMethodError
undefined method ‘scaffold’
I searched with google and installed scaffolding plugin, now the undefined
method ‘scaffold’ has gone, but there’s still NoMethodError

*undefined method `paginate’ *

How can I fix this error?

AFAIK, pagination is not included in the core Rails distribution. You
have to install a plugin like will_paginate[1].

Good luck!

[1] http://agilewebdevelopment.com/plugins/will_paginate

Can it work with scaffold plugin?

On Dec 13, 2007 4:41 PM, Imobach González Sosa [email protected]
wrote:

How can I fix this error?

AFAIK, pagination is not included in the core Rails distribution. You
have to install a plugin like will_paginate[1].

Good luck!

[1] http://agilewebdevelopment.com/plugins/will_paginate

http://rubyforge.org/projects/ropenwiki/

Just install the plugin “classic_pagination”, if you need the pre-2.0
default Rails pagination.

/ Peter

13 dec 2007 kl. 09.44 skrev huang zhimin:

Is this plugin broken? I can’t get it

On Dec 13, 2007 4:47 PM, Peter B. [email protected] wrote:

On Dec 13, 2007 4:41 PM, Imobach González Sosa [email protected]

*undefined method `paginate’ *

http://rubyforge.org/projects/ropenwiki/

And then there’s a Railscast episode on iTunes that shows how to set
it up. I followed those instructions and it was easy and fast.

Episode 51.

Cheers,

Jim

For pagination use will_paginate plugin…

It sounds good…

U can install the plugin by…

  1. Navigate to the project’s root location in command prompt.
  2. Type script/plugin install
    svn://errtheblog.com/svn/plugins/will_paginate

(example:
E:\Tests\cookbook>ruby script/plugin install
svn://errtheblog.com/svn/plugins/will_paginate)

If you wan t to use scaffolding in Rails 2.0 this is the correct
answer. The Scaffolding method calls paginate, and will not work with
will_paginate