Sha256: 30cc330073ee8bee1ecafa92d87698f4714151abe5de376dbd4275d40216a32f

Contents?: true

Size: 942 Bytes

Versions: 7

Compression:

Stored size: 942 Bytes

Contents

require 'csv'

# A book is simple, it has just:
#  * a title
#  * an author
#  * an isbn
#  * a publishing year
#  * a publisher
#  * a number of subjects
#
class Book
  
  @@books_mapping = {}
  
  # Load the books on startup.
  #
  file_name = File.expand_path 'library.csv', File.dirname(__FILE__)
  CSV.open(file_name, 'r').each do |row|
    @@books_mapping[row.shift.to_i] = row
  end
  
  # Find uses a lookup table.
  #
  def self.find ids, _ = {}
    ids.map { |id| new(id, *@@books_mapping[id]) }
  end
  
  attr_reader :id
  
  def initialize id, title, author, year, publisher, subjects
    @id, @title, @author, @year, @publisher, @subjects = id, title, author, year, publisher, subjects
  end
  
  # "Rendering" ;)
  #
  # Note: This is just an example. Please do not render in the model.
  #
  def to_s
    "<li class='book'><p>\"#{@title}\", by #{@author}</p><p>#{@year}, #{@publisher}</p><p>#{@subjects}</p></li>"
  end
  
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
picky-generators-1.5.2 prototypes/client/sinatra/book.rb
picky-generators-1.5.1 prototypes/client/sinatra/book.rb
picky-generators-1.5.0 prototypes/client/sinatra/book.rb
picky-generators-1.4.3 prototypes/client/sinatra/book.rb
picky-generators-1.4.2 prototypes/client/sinatra/book.rb
picky-generators-1.4.1 prototypes/client/sinatra/book.rb
picky-generators-1.4.0 prototypes/client/sinatra/book.rb