Module: Uniquify::ClassMethods
- Defined in:
- lib/uniquify.rb
Instance Method Summary collapse
Instance Method Details
#uniquify(*args, &block) ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/uniquify.rb', line 14 def uniquify(*args, &block) = { :length => 8, :chars => ('a'..'z').to_a + ('A'..'Z').to_a + ('0'..'9').to_a } .merge!(args.pop) if args.last.kind_of? Hash args.each do |name| before_create do |record| if block record.ensure_unique(name, &block) else record.ensure_unique(name) do Array.new([:length]) { [:chars].to_a[rand([:chars].to_a.size)] }.join end end end end end |