Sha256: f28eaf3a1a35eb6c3679bfe5d22ac386fc2e9ef2ac4d796b33c1766542fed3c1

Contents?: true

Size: 537 Bytes

Versions: 5

Compression:

Stored size: 537 Bytes

Contents

# encoding: UTF-8
Person.create! name: "Leonardo di ser Piero da Vinci", born_on: "1452-04-15"
Person.create! name: "宮崎 駿", born_on: "1941-01-05"
Person.create! name: "عَبْدَالله مُحَمَّد بِن مُوسَى اَلْخْوَارِزْمِي‎", born_on: Date.new(780, 8, 7)
Person.create! name: "Περικλῆς", born_on: Date.new(-495, 9, 4)
200.times do |index|
  Person.create! name: "Human ##{index}", born_on: Date.new(1 + 11*index, 1 + index % 11, 1 + (7*index) % 27)
end

puts "#{Person.count} people"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
active_list-6.5.1 test/dummy/db/seeds.rb
active_list-6.5.0 test/dummy/db/seeds.rb
active_list-6.4.2 test/dummy/db/seeds.rb
active_list-6.4.1 test/dummy/db/seeds.rb
active_list-6.4.0 test/dummy/db/seeds.rb