module Common::Faker

Public Instance Methods

random_email() click to toggle source
# File lib/generators/command/templates/faker.rb, line 3
def random_email
  ::Faker::Internet.email
end
random_first_name() click to toggle source
# File lib/generators/command/templates/faker.rb, line 11
def random_first_name
  ::Faker::Name.first_name
end
random_last_name() click to toggle source
# File lib/generators/command/templates/faker.rb, line 15
def random_last_name
  ::Faker::Name.last_name
end
random_name() click to toggle source
# File lib/generators/command/templates/faker.rb, line 7
def random_name
  ::Faker::Name.name
end