Method: Quotes.all
- Defined in:
- lib/cryptoquotes.rb
.all ⇒ Object
50 51 52 53 54 55 56 57 |
# File 'lib/cryptoquotes.rb', line 50 def self.all @all ||= begin all = [] sources.each { |source| all += read_builtin( source ) } all end @all end |