class Faker::Space

Public Class Methods

agency() click to toggle source
# File lib/faker/space.rb, line 33
def agency
  fetch('space.agency')
end
agency_abv() click to toggle source
# File lib/faker/space.rb, line 37
def agency_abv
  fetch('space.agency_abv')
end
company() click to toggle source
# File lib/faker/space.rb, line 45
def company
  fetch('space.company')
end
constellation() click to toggle source
# File lib/faker/space.rb, line 25
def constellation
  fetch('space.constellation')
end
distance_measurement() click to toggle source
# File lib/faker/space.rb, line 49
def distance_measurement
  rand(10..100).to_s + ' ' + fetch('space.distance_measurement')
end
galaxy() click to toggle source
# File lib/faker/space.rb, line 13
def galaxy
  fetch('space.galaxy')
end
moon() click to toggle source
# File lib/faker/space.rb, line 9
def moon
  fetch('space.moon')
end
nasa_space_craft() click to toggle source
# File lib/faker/space.rb, line 41
def nasa_space_craft
  fetch('space.nasa_space_craft')
end
nebula() click to toggle source
# File lib/faker/space.rb, line 17
def nebula
  fetch('space.nebula')
end
planet() click to toggle source
# File lib/faker/space.rb, line 5
def planet
  fetch('space.planet')
end
star() click to toggle source
# File lib/faker/space.rb, line 29
def star
  fetch('space.star')
end
star_cluster() click to toggle source
# File lib/faker/space.rb, line 21
def star_cluster
  fetch('space.star_cluster')
end