class Faker::TvShows::Stargate

Public Class Methods

character() click to toggle source

Produces a character from Stargate.

@return [String]

@example

Faker::TvShows::Stargate.character #=> "Jack O'Neill"

@faker.version 1.8.5

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

Produces a planet from Stargate.

@return [String]

@example

Faker::TvShows::Stargate.planet #=> "Abydos"

@faker.version 1.8.5

# File lib/faker/tv_shows/stargate.rb, line 31
def planet
  fetch('stargate.planets')
end
quote() click to toggle source

Produces a quote from Stargate.

@return [String]

@example

Faker::TvShows::Stargate.quote
  #=> "General, request permission to beat the crap out of this man."

@faker.version 1.8.5

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