class Faker::TvShows::RickAndMorty

Public Class Methods

character() click to toggle source

Produces a character from Rick and Morty.

@return [String]

@example

Faker::TvShows::RickAndMorty.character #=> "Rick Sanchez"

@faker.version 1.8.0

# File lib/faker/tv_shows/rick_and_morty.rb, line 18
def character
  fetch('rick_and_morty.characters')
end
location() click to toggle source

Produces a location from Rick and Morty.

@return [String]

@example

Faker::TvShows::RickAndMorty.location #=> "Dimension C-132"

@faker.version 1.8.0

# File lib/faker/tv_shows/rick_and_morty.rb, line 31
def location
  fetch('rick_and_morty.locations')
end
quote() click to toggle source

Produces a quote from Rick and Morty.

@return [String]

@example

Faker::TvShows::RickAndMorty.quote
  #=> "Ohh yea, you gotta get schwifty."

@faker.version 1.8.0

# File lib/faker/tv_shows/rick_and_morty.rb, line 45
def quote
  fetch('rick_and_morty.quotes')
end