class FourNobleTruths

Public Class Methods

new() click to toggle source
# File lib/quote_libraries/four_noble_truths.rb, line 4
def initialize
    @four_noble_truths =
      [
        '
        To live is to suffer.',

        '
        There is a cause to our suffering, and that is desire.',

        '
        We can end this suffering.',

        '
        The way to end our suffering is by following the Noble Eightfold Path.'
      ]
end

Public Instance Methods

quotes() click to toggle source
# File lib/quote_libraries/four_noble_truths.rb, line 21
def quotes
    @four_noble_truths
end