This file contains 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
# Copy database.yml | |
run 'cp config/database.yml config/database.yml.example' | |
# Delete unnecessary files | |
run 'rm public/index.html' | |
# Install gems | |
gem 'amatsuda-i18n_generators', :source => 'http://gems.github.com', :lib => false | |
gem 'rspec-rails', :lib => false | |
gem 'cucumber', :lib => false |
This file contains 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 generate | |
sei = %w(山 川 谷 柳 大 小 地 高 吉 沢 田 中 畑 木 森 林 松 浜 滝 宮 橋 鈴 藤 石 池 島 岡 村 町 上 下 崎 野 坂 塚 本 竹 岡 西 東 杉 原 内 尾 吉 倉 堀 井).sort_by{rand} | |
mei1 = %w(安 高 彩 遙 秀 優 愛 涼 桃 由 雪 健 賢 憲 順 純 貴 真 清 晴 聖 舞 夕 朝 理 利 祐 裕 洋 陽 広 友 雅 正 京 和 久 知 智 紀 康 幸 明 響 恭 春 夏 秋 冬).sort_by{rand} | |
mei2 = %w(美 子 里 奈 香 佳 恵 乃 代 依 之 文 夫 志 治 士 郎 史 司 彦 平 也 一 二 三).sort_by{rand} | |
names = [] | |
sei.each do |s1| | |
sei.each do |s2| | |
mei1.each do |m1| | |
mei2.each do |m2| |