2011-12-18 18:35:25 -05:00
|
|
|
class Teapot
|
|
|
|
# I'm a little teapot,
|
|
|
|
# Short and stout,
|
|
|
|
# Here is my handle
|
|
|
|
# Here is my spout
|
|
|
|
# When I get all steamed up,
|
|
|
|
# Hear me shout,
|
|
|
|
# Tip me over and pour me out!
|
|
|
|
#
|
|
|
|
# HELL YEAH TEAPOT SONG
|
|
|
|
|
|
|
|
include ActiveRecord::Model
|
|
|
|
end
|
2011-12-23 07:52:57 -05:00
|
|
|
|
2011-12-28 13:07:08 -05:00
|
|
|
class OtherTeapot < Teapot
|
|
|
|
end
|
|
|
|
|
2011-12-23 07:52:57 -05:00
|
|
|
class OMFGIMATEAPOT
|
|
|
|
def aaahhh
|
|
|
|
"mmm"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class CoolTeapot < OMFGIMATEAPOT
|
|
|
|
include ActiveRecord::Model
|
|
|
|
self.table_name = "teapots"
|
|
|
|
end
|
2011-12-24 05:23:19 -05:00
|
|
|
|
|
|
|
class Ceiling
|
|
|
|
include ActiveRecord::Model
|
|
|
|
|
|
|
|
class Teapot
|
|
|
|
include ActiveRecord::Model
|
|
|
|
end
|
|
|
|
end
|