class ActiveRecord::Faker
Constants
- LOREM
Public Class Methods
# File activerecord/examples/performance.rb, line 65 def self.email LOREM.grep(/^\w*$/).sort_by { rand }.first(2).join("@") + ".com" end
# File activerecord/examples/performance.rb, line 61 def self.name LOREM.grep(/^\w*$/).sort_by { rand }.first(2).join " " end