Class: Libri::Quote

Inherits:
Object
  • Object
show all
Defined in:
lib/libri/quote.rb

Constant Summary collapse

@@all =
[]

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(quote_hash) ⇒ Quote

Returns a new instance of Quote.



6
7
8
9
10
11
# File 'lib/libri/quote.rb', line 6

def initialize(quote_hash) 
    quote_hash.map { |key, val|
        send "#{key}=", val
    }
    @@all << self
end

Instance Attribute Details

#authorObject

Returns the value of attribute author.



2
3
4
# File 'lib/libri/quote.rb', line 2

def author
  @author
end

#quoteObject

Returns the value of attribute quote.



2
3
4
# File 'lib/libri/quote.rb', line 2

def quote
  @quote
end

Class Method Details

.allObject



19
20
21
# File 'lib/libri/quote.rb', line 19

def self.all
    @@all
end

.create_from_collection(quotes_array) ⇒ Object



13
14
15
16
17
# File 'lib/libri/quote.rb', line 13

def self.create_from_collection(quotes_array)
    quotes_array.map { |quote_hash|
        self.new(quote_hash)
    }
end