class Faker::TvShows::HowIMetYourMother

Public Class Methods

catch_phrase() click to toggle source

Produces a catch phrase from How I Met Your Mother.

@return [String]

@example

Faker::TvShows::HowIMetYourMother.catch_phrase #=> "Legendary"

@faker.version 1.8.0

# File lib/faker/tv_shows/how_i_met_your_mother.rb, line 31
def catch_phrase
  fetch('how_i_met_your_mother.catch_phrase')
end
character() click to toggle source

Produces a character from How I Met Your Mother.

@return [String]

@example

Faker::TvShows::HowIMetYourMother.character #=> "Barney Stinson"

@faker.version 1.8.0

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

Produces a high five from How I Met Your Mother.

@return [String]

@example

Faker::TvShows::HowIMetYourMother.high_five #=> "Relapse Five"

@faker.version 1.8.0

# File lib/faker/tv_shows/how_i_met_your_mother.rb, line 44
def high_five
  fetch('how_i_met_your_mother.high_five')
end
quote() click to toggle source

Produces a quote from How I Met Your Mother.

@return [String]

@example

Faker::TvShows::HowIMetYourMother.quote
  #=> "Whenever I'm sad, I stop being sad and be awesome instead."

@faker.version 1.8.0

# File lib/faker/tv_shows/how_i_met_your_mother.rb, line 58
def quote
  fetch('how_i_met_your_mother.quote')
end