class Faker::Quote

Public Class Methods

famous_last_words() click to toggle source

Produces a famous last words quote.

@return [String]

@example

Faker::Quote.famous_last_words #=> "My vocabulary did this to me. Your love will let you go on..."

@faker.version 1.9.0

# File lib/faker/quotes/quote.rb, line 15
def famous_last_words
  fetch('quote.famous_last_words')
end
jack_handey() click to toggle source

Produces a quote from Deep Thoughts by Jack Handey.

@return [String]

@example

Faker::Quote.jack_handey # => "I hope life isn't a big joke, because I don't get it."

@faker.version next

# File lib/faker/quotes/quote.rb, line 28
def jack_handey
  fetch('quote.jack_handey')
end
matz() click to toggle source

Produces a quote from Matz.

@return [String]

@example

Faker::Quote.matz #=> "You want to enjoy life, don't you? If you get your job done quickly and your job is fun, that's good isn't it? That's the purpose of life, partly. Your life is better."

@faker.version 1.9.0

# File lib/faker/quotes/quote.rb, line 41
def matz
  fetch('quote.matz')
end
most_interesting_man_in_the_world() click to toggle source

Produces a quote about the most interesting man in the world.

@return [String]

@example

Faker::Quote.most_interesting_man_in_the_world #=> "He can speak Russian... in French"

@faker.version 1.9.0

# File lib/faker/quotes/quote.rb, line 54
def most_interesting_man_in_the_world
  fetch('quote.most_interesting_man_in_the_world')
end
robin() click to toggle source

Produces a Robin quote.

@return [String]

@example

Faker::Quote.robin #=> "Holy Razors Edge"

@faker.version 1.9.0

# File lib/faker/quotes/quote.rb, line 67
def robin
  fetch('quote.robin')
end
singular_siegler() click to toggle source

Produces a singular siegler quote.

@return [String]

@example

Faker::Quote.singular_siegler #=> "Texas!"

@faker.version 1.9.0

# File lib/faker/quotes/quote.rb, line 80
def singular_siegler
  fetch('quote.singular_siegler')
end
yoda() click to toggle source

Produces a quote from Yoda.

@return [String]

@example

Faker::Quote.yoda #=> "Use your feelings, Obi-Wan, and find him you will."

@faker.version 1.9.0

# File lib/faker/quotes/quote.rb, line 93
def yoda
  fetch('quote.yoda')
end