public
Description: Ruby module that upon requirement will allow any object to become "abstract" by calling a single method
Homepage: http://www.bjeanes.com/
Clone URL: git://github.com/bjeanes/make_abstract.git
README.markdown to match CantInstantiateError change
bjeanes (author)
Sun May 18 23:12:58 -0700 2008
commit  a8920295ce28269bc643c8fe9e4477ca0ecb7280
tree    ec2d35eeb900386b2c431f02e4eeb824dae3986a
parent  2ffa8bf05fd1ecc98aa4404577895ca0cf6f88e0
...
15
16
17
18
19
 
 
20
21
22
...
15
16
17
 
 
18
19
20
21
22
0
@@ -15,8 +15,8 @@ Usage:
0
     class ChildClass < AbstractClass
0
     end
0
     
0
- AbstractClass.new # will generate NoMethodError
0
- AbstractChildClass.new # will generate NoMethodError
0
+ AbstractClass.new # will generate CantInstantiateError
0
+ AbstractChildClass.new # will generate CantInstantiateError
0
     ChildClass.new # will create new ChildClass object
0
     
0
 ## Gem

Comments

    No one has commented yet.