Ruby Forum Nitro > schema_inheritance in og-0.50

Posted by postmodern modulus III (Guest)
on 17.02.2008 01:24
(Received via mailing list)
I was testing the most recent testing gems for og-0.50.0 but encountered
the old schema_inheritance bug.

class Post
  attr_accessor :title, String
  attr_accessor :body, String

  schema_inheritance

  def initialize(title,body)
    @title = title.to_s
    @body = body.to_s
  end
end

NameError: uninitialized constant Og::SchemaInheritanceBase
    from /usr/lib64/ruby/gems/1.8/gems/og-0.50.0/lib/og/model.rb:531:in
`schema_inheritance'
    from (irb):25

What does the future hold for schema_inheritance?