class Faker::TvShows::SiliconValley

Public Class Methods

app() click to toggle source

Produces an app from Silicon Valley.

@return [String]

@example

Faker::TvShows::SiliconValley.app #=> "Nip Alert"

@faker.version 1.8.5

# File lib/faker/tv_shows/silicon_valley.rb, line 58
def app
  fetch('silicon_valley.apps')
end
character() click to toggle source

Produces a character from Silicon Valley.

@return [String]

@example

Faker::TvShows::SiliconValley.character #=> "Jian Yang"

@faker.version 1.8.5

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

Produces a company from Silicon Valley.

@return [String]

@example

Faker::TvShows::SiliconValley.company #=> "Bachmanity"

@faker.version 1.8.5

# File lib/faker/tv_shows/silicon_valley.rb, line 31
def company
  fetch('silicon_valley.companies')
end
email() click to toggle source

Produces an email address from Silicon Valley.

@return [String]

@example

Faker::TvShows::SiliconValley.email #=> "richard@piedpiper.test"

@faker.version 1.9.0

# File lib/faker/tv_shows/silicon_valley.rb, line 112
def email
  fetch('silicon_valley.email')
end
invention() click to toggle source

Produces an invention from Silicon Valley.

@return [String]

@example

Faker::TvShows::SiliconValley.invention
  #=> "Tres Comas Tequila"

@faker.version 1.8.5

# File lib/faker/tv_shows/silicon_valley.rb, line 72
def invention
  fetch('silicon_valley.inventions')
end
motto() click to toggle source

Produces a motto from Silicon Valley.

@return [String]

@example

Faker::TvShows::SiliconValley.motto
  #=> "Our products are products, producing unrivaled results"

@faker.version 1.8.5

# File lib/faker/tv_shows/silicon_valley.rb, line 86
def motto
  fetch('silicon_valley.mottos')
end
quote() click to toggle source

Produces a quote from Silicon Valley.

@return [String]

@example

Faker::TvShows::SiliconValley.quote
  #=> "I don't want to live in a world where someone else is making the world a better place better than we are."

@faker.version 1.8.5

# File lib/faker/tv_shows/silicon_valley.rb, line 45
def quote
  fetch('silicon_valley.quotes')
end
url() click to toggle source

Produces a URL from Silicon Valley.

@return [String]

@example

Faker::TvShows::SiliconValley.url #=> "http://www.piedpiper.com"

@faker.version 1.8.5

# File lib/faker/tv_shows/silicon_valley.rb, line 99
def url
  fetch('silicon_valley.urls')
end