class Faker::TvShows::TheExpanse

Public Class Methods

character() click to toggle source

Produces a character from The Expanse.

@return [String]

@example

Faker::TvShows::TheExpanse.character #=> "Jim Holden"

@faker.version 1.9.2

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

Produces a location from The Expanse.

@return [String]

@example

Faker::TvShows::TheExpanse.location #=> "Ganymede"

@faker.version 1.9.2

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

Produces a quote from The Expanse.

@return [String]

@example

Faker::TvShows::TheExpanse.quote #=> "I am that guy."

@faker.version 1.9.2

# File lib/faker/tv_shows/the_expanse.rb, line 31
def quote
  fetch('the_expanse.quotes')
end
ship() click to toggle source

Produces a ship from The Expanse.

@return [String]

@example

Faker::TvShows::TheExpanse.ship #=> "Nauvoo"

@faker.version 1.9.2

# File lib/faker/tv_shows/the_expanse.rb, line 57
def ship
  fetch('the_expanse.ships')
end