public
Rubygem
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
Search Repo:
Click here to lend your support to: make_abstract and make a donation at www.pledgie.com !
Updated README.markdown to have correct error thrown.
bjeanes (author)
Thu May 15 16:44:28 -0700 2008
commit  337fb1866b3b0757462eb3bdfb93bd1f42478ac2
tree    ea9ca7326c360674097f216c672f58caad6c89d1
parent  555f5e2d7ee5614c36bb61f7b28faf95b18f624e
...
15
16
17
18
19
 
 
20
 
 
 
 
...
15
16
17
 
 
18
19
20
21
22
23
24
0
@@ -15,7 +15,11 @@
0
     class ChildClass < AbstractClass
0
     end
0
     
0
- AbstractClass.new # will generate CantInstantiateError
0
- AbstractChildClass.new # will generate CantInstantiateError
0
+ AbstractClass.new # will generate NoMethodError
0
+ AbstractChildClass.new # will generate NoMethodError
0
     ChildClass.new # will create new ChildClass object
0
+
0
+## Gem
0
+
0
+Tried to create a gemspec file but I have never created a gem before and I am distracted so maybe it won't work. Also first time using test-first coding. I like the concept of it, but not sure if I did the test units right. Whatever.

Comments

    No one has commented yet.