From: Farrel Lifson Date: 2006-04-10T19:41:09+09:00 Subject: Re: Adding in class attribute with a Module Worked pretty much how I expected it to: >> module TestModule >> attr_accessor :attribute >> end => nil >> class TestClass >> include TestModule >> end => TestClass >> tc = TestClass.new => # >> tc.attribute = "Hello, world" => "Hello, world" >> puts tc.attribute Hello, world => nil Farrel