class Faker::Base

def rand_in_range(from, to)

Generates a random value between the interval
def rand_in_range(from, to)
  from, to = to, from if to < from
  rand(from..to)
end