class Faker::TvShows::Friends
Public Class Methods
character()
click to toggle source
Produces a character from Friends
.
@return [String]
@example
Faker::TvShows::Friends.character #=> "Rachel Green"
@faker.version 1.7.3
# File lib/faker/tv_shows/friends.rb, line 18 def character fetch('friends.characters') end
location()
click to toggle source
Produces a location from Friends
.
@return [String]
@example
Faker::TvShows::Friends.location #=> "Central Perk"
@faker.version 1.7.3
# File lib/faker/tv_shows/friends.rb, line 31 def location fetch('friends.locations') end
quote()
click to toggle source
Produces a quote from Friends
.
@return [String]
@example
Faker::TvShows::Friends.quote #=> "We were on a break!"
@faker.version 1.7.3
# File lib/faker/tv_shows/friends.rb, line 44 def quote fetch('friends.quotes') end