Приветствуем всех! Я хочу, чтобы описать каждый вид продукта класса: # Base product class
class BaseProduct
prop :name, :price # Common properties for all inheritable products
end
class Cellp
My env: ruby-1.9.2-preview3; rails-3.0.0.beta3
class PostFather < ActiveRecord::Base
def self.inherited(subclass)
end
end
class Post < PostFather
end
В консоли: > Post.new # => TypeE