david
david

Reputation: 305

rails 3 and acts-as-readable

Does the acts-as-readable plugin work for rails 3? The instructions at https://github.com/mbleigh/acts-as-readable results in Plugin not found: ["http://svn.intridea.com/svn/public/acts_as_readable"]

Downloading the source from github and sticking it in vendor/plugin doesn't seem to work, I get: Could not find generator acts_as_readable_migration.

I am doing something wrong or should I look elsewhere?

Upvotes: 0

Views: 394

Answers (2)

Thiago Jackiw
Thiago Jackiw

Reputation: 799

I forked the plugin to my GitHub account and updated its generators to work with Rails 3, which can be found at https://github.com/tjackiw/acts-as-readable.

After you install it

rails plugin install git://github.com/tjackiw/acts-as-readable.git

then you can do

rails generate acts_as_readable_migration

Have fun!

Upvotes: 2

rnicholson
rnicholson

Reputation: 4588

try script/rails plugin install git://github.com/mbleigh/acts-as-readable.git to install it from that git repo.

Looks like it will install, but uncertain if it "works" given it hasn't been updated since 2008

Upvotes: 0

Related Questions