class Faker::Types

Constants

CHARACTERS
COMPLEX_TYPES
SIMPLE_TYPES

Public Class Methods

character() click to toggle source
# File lib/faker/types.rb, line 17
def character
  sample(CHARACTERS)
end
complex_rb_hash(key_count = 1) click to toggle source
# File lib/faker/types.rb, line 33
def complex_rb_hash(key_count = 1)
  {}.tap do |hsh|
    Lorem.words(key_count * 2).uniq.first(key_count).each do |s|
      hsh.merge!(s.to_sym => random_complex_type)
    end
  end
end
random_complex_type() click to toggle source
# File lib/faker/types.rb, line 59
def random_complex_type
  types = SIMPLE_TYPES + COMPLEX_TYPES
  type_to_use = types[rand(0..types.length - 1)]
  case type_to_use
  when :string
    rb_string
  when :fixnum
    rb_integer
  when :hash
    rb_hash
  when :array
    rb_array
  end
end
random_type() click to toggle source
# File lib/faker/types.rb, line 49
def random_type
  type_to_use = SIMPLE_TYPES[rand(0..SIMPLE_TYPES.length - 1)]
  case type_to_use
  when :string
    rb_string
  when :fixnum
    rb_integer
  end
end
rb_array(len = 1) click to toggle source
# File lib/faker/types.rb, line 41
def rb_array(len = 1)
  [].tap do |ar|
    len.times do
      ar.push random_type
    end
  end
end
rb_hash(key_count = 1) click to toggle source
# File lib/faker/types.rb, line 25
def rb_hash(key_count = 1)
  {}.tap do |hsh|
    Lorem.words(key_count * 2).uniq.first(key_count).each do |s|
      hsh.merge!(s.to_sym => random_type)
    end
  end
end
rb_integer(from = 0, to = 100) click to toggle source
# File lib/faker/types.rb, line 21
def rb_integer(from = 0, to = 100)
  rand(from..to).to_i
end
rb_string(words = 1) click to toggle source
# File lib/faker/types.rb, line 8
def rb_string(words = 1)
  resolved_num = resolve(words)
  word_list =
    translate('faker.lorem.words')

  word_list *= ((resolved_num / word_list.length) + 1)
  shuffle(word_list)[0, resolved_num].join(' ')
end

Private Class Methods

resolve(value) click to toggle source
# File lib/faker/types.rb, line 80
def resolve(value)
  case value
  when Array then sample(value)
  when Range then rand value
  else value
  end
end
titleize(word) click to toggle source
# File lib/faker/types.rb, line 76
def titleize(word)
  word.split(/(\W)/).map(&:capitalize).join
end