This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
README | Fri Feb 29 17:12:03 -0800 2008 | [michael] |
| |
generators/ | Fri Feb 29 17:12:03 -0800 2008 | [michael] |
| |
init.rb | Wed Apr 30 00:12:20 -0700 2008 | [ayn] |
| |
lib/ | Wed May 07 19:12:11 -0700 2008 | [rayvinly] |
README
ActsAsReadable ============== ActsAsReadable allows you to create a generic relationship of items which can be marked as 'read' by users. This is useful for forums or any other kind of situation where you might need to know whether or not a user has seen a particular model. Installation ============ To install the plugin just install from the SVN: script/plugin install http://svn.intridea.com/svn/public/acts_as_readable You will need the readings table to use this plugin. A generator has been included, simply type script/generate acts_as_readable_migration to get the standard migration created for you. Example ======= class Post < ActiveRecord::Base acts_as_readable end bob = User.find_by_name("bob") bob.readings # => [] Post.find_unread_by(bob) # => [<Post 1>,<Post 2>,<Post 3>...] Post.find_read_by(bob) # => [] Post.find(1).read_by?(bob) # => false Post.find(1).read_by!(bob) # => <Reading 1> Post.find(1).read_by?(bob) # => true Post.find(1).users_who_read # => [<User bob>] Post.find_unread_by(bob) # => [<Post 2>,<Post 3>...] Post.find_read_by(bob) # => [<Post 1>] bob.readings # => [<Reading 1>] Copyright (c) 2008 Michael Bleigh and Intridea, Inc. released under the MIT license




