Sha256: bf0756ea81b3ff8f3837e0e895739fddb01cde29bc164b5f284430e316f6ffcc

Contents?: true

Size: 787 Bytes

Versions: 8

Compression:

Stored size: 787 Bytes

Contents

class Book < ActiveRecord::Base
  has_many :authors

  has_many :citations, :foreign_key => 'book1_id'
  has_many :references, -> { distinct }, through: :citations, source: :reference_of

  has_many :subscriptions
  has_many :subscribers, through: :subscriptions

  enum status: [:proposed, :written, :published]
  enum read_status: {unread: 0, reading: 2, read: 3}
  enum nullable_status: [:single, :married]
  enum language: [:english, :spanish, :french], _prefix: :in
  enum author_visibility: [:visible, :invisible], _prefix: true
  enum illustrator_visibility: [:visible, :invisible], _prefix: true
  enum font_size: [:small, :medium, :large], _prefix: :with, _suffix: true
  enum cover: { hard: 'hard', soft: 'soft' }

  def published!
    super
    "do publish work..."
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

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