Sha256: 8216e6bf07073931e7d6521281afbe5504b7d55221816d6d9db171b91d3b125e

Contents?: true

Size: 181 Bytes

Versions: 6

Compression:

Stored size: 181 Bytes

Contents

class Cat < ActiveRecord::Base
  self.abstract_class = true

  enum gender: [:female, :male]

  default_scope -> { where(is_vegetarian: false) }
end

class Lion < Cat
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ibm_db-5.2.0-x86-mingw32 test/models/cat.rb
ibm_db-5.1.0-x86-mingw32 test/models/cat.rb
ibm_db-5.0.5-x86-mingw32 test/models/cat.rb
ibm_db-5.0.4-x86-mingw32 test/models/cat.rb
ibm_db-5.0.3-x86-mingw32 test/models/cat.rb
ibm_db-5.0.2-x86-mingw32 test/models/cat.rb