class DalaiLama

Public Class Methods

new() click to toggle source
# File lib/quote_libraries/dalai_lama.rb, line 4
def initialize
    @dalai_lama_quotes =
      [
        '
        The more honest you are,
        The more open,
        The less fear you will have,
        Because there\'s no anxiety about being exposed or revealed to others. - Dalai Lama',

        '
        Although you may not always be able to avoid difficult situations,
        You can modify the extent to which you can suffer,
        By how you choose to respond to the situation. - Dalai Lama',

        '
        We need to learn to want what we have,
        Not to have what we want,
        In order to get stable and steady happiness. - Dalai Lama'
      ]
end

Public Instance Methods

quotes() click to toggle source
# File lib/quote_libraries/dalai_lama.rb, line 25
def quotes
    @dalai_lama_quotes
end