On Sun, 28 Nov 2004 17:26:43 -0600, Sam Stephenson
<sstephenson / gmail.com> wrote:
> If not, perhaps this would work:
 
Sorry, that was pretty ugly. Make that:

| class Module
|   private
|   def privately_include(mod)
|     self.class_eval do
|       include mod
|       private *mod.instance_methods
|     end
|   end
| end

Sam