Created
July 28, 2011 17:05
-
-
Save cwgem/1111966 to your computer and use it in GitHub Desktop.
ランダムデータ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ランダム数 最小-最大 | |
| def range_rand(min,max) | |
| min + rand(max-min) | |
| end | |
| # ランダム名前 | |
| $names = File.new('names.txt', 'r').readlines.map {|line| line.chomp} | |
| def rand_name | |
| $names[rand($names.length)] | |
| end | |
| # ランダムデータで社員3人作ります | |
| employees = Array.new(3) { |index| | |
| employee = Employee.new | |
| employee.first_name = rand_name | |
| employee.last_name = rand_name | |
| employee.monthly_sales = range_rand(1000,10000) | |
| employee | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment