lib/pebbles/lovelive/member.rb in pebbles-lovelive-0.0.2 vs lib/pebbles/lovelive/member.rb in pebbles-lovelive-0.1.0

- old
+ new

@@ -25,12 +25,12 @@ def three_size "B#{bust}・W#{waste}・H#{hip}" end - def to_s - <<-EOS.gsub(/^\s+/, '') + def print(is_aa, is_big_aa) + puts <<-EOS.gsub(/^\s+/, '') 名前: #{name} CV: #{cv} 年齢: #{age}歳 誕生日: #{birth}(#{zodiac_sign}) 血液型: #{blood_type}型 @@ -38,9 +38,11 @@ スリーサイズ: #{three_size} 好きな食べ物: #{favorite_food} 嫌いな食べ物: #{dislike_food} プロフィール: #{profile} EOS + puts aa if is_aa + puts big_aa if is_big_aa end end end end