> We can implement each plugin as modules:
>
> module Sequel
>   module List
>   end
> end

Sounds great! One question though: how are plugins going to be  
installed? are they going to be bundled all together? We also need a  
way to load plugins on demand.

> And provide cannonical Model methods is_a(), and is() for including  
> the module:
>
> class Item < Sequel::Model(:item)
>   is_a :list
>   is :orderable
> end

I think it would even be nicer like this:

class Item < Sequel::Model(:item)
   is_a_list
   is_orderable
end

> And yes this means I am willing to contribute.

You now have commit rights so go ahead!

sharon


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sequel-talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sequel-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to