This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit a8920295ce28269bc643c8fe9e4477ca0ecb7280
tree ec2d35eeb900386b2c431f02e4eeb824dae3986a
parent 2ffa8bf05fd1ecc98aa4404577895ca0cf6f88e0
tree ec2d35eeb900386b2c431f02e4eeb824dae3986a
parent 2ffa8bf05fd1ecc98aa4404577895ca0cf6f88e0
| name | age | message | |
|---|---|---|---|
| |
README.markdown | Sun May 18 23:12:58 -0700 2008 | [bjeanes] |
| |
lib/ | Sun May 18 23:12:30 -0700 2008 | [bjeanes] |
| |
make_abstract.gemspec | Thu May 15 16:41:54 -0700 2008 | [bjeanes] |
| |
make_abstract.rb | Thu May 15 16:41:54 -0700 2008 | [bjeanes] |
| |
test/ | Sun May 18 23:12:30 -0700 2008 | [bjeanes] |
README.markdown
Make Abstract
Usage:
require 'make_abstract'
class AbstractClass
make_abstract
end
class AbstractChildClass < AbstractClass
make_abstract
end
class ChildClass < AbstractClass
end
AbstractClass.new # will generate CantInstantiateError
AbstractChildClass.new # will generate CantInstantiateError
ChildClass.new # will create new ChildClass object
Gem
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.




