README.md in rzicon-0.0.1 vs README.md in rzicon-0.0.2
- old
+ new
@@ -23,25 +23,37 @@
#<Nizicon::Members::NishiNanami:0x00000000000000>,
#<Nizicon::Members::NemotoNagi:0x00000000000000>,
#<Nizicon::Members::MatobaKarin:0x00000000000000>,
#<Nizicon::Members::YoshimuraNana:0x00000000000000>]
-Nizicon.members.each{|m| puts m.name}
-長田 美成
-重松 佑佳
-奥村 野乃花
-木下 ひより
-陶山 恵実里
-中村 朱里
-西 七海
-根本 凪
-的場 華鈴
-吉村 菜々
+Nizicon.members.map(&:name)
+#=> ["長田 美成", "重松 佑佳", "奥村 野乃花", "木下 ひより", "陶山 恵実里", "中村 朱里", "西 七海", "根本 凪", "的場 華鈴", "吉村 菜々"]
+
+Nizicon.members.map(&:nickname)
+#=> ["みなりん", "しげちー", "ののた", "ひよりん", "えみりぃ", "あかりん", "ななぴ", "ねも", "かりんさま", "なぁな"]
+
+Nizicon.members.map(&:to_s)
+#=> ["みなりん", "しげちー", "ののた", "ひよりん", "えみりぃ", "あかりん", "ななぴ", "ねも", "かりんさま", "ハム"]
+
+Nizicon.members.all.sample.to_hash
+#=> {:name=>"根本 凪",
+ :nickname=>"ねも",
+ :birthday=>#<Date: 1999-03-15 ((2451253j,0s,0n),+0s,2299161j)>,
+ :hometown=>"茨城県",
+ :twitter_id=>"@nemoto_nagi",
+ :pixiv_id=>"11797412",
+ :introduction=>["みんなのハートをねも色に染めちゃってもよかっぺか?", "\ぺー!/", "茨城県出身世間知らずの15歳。", "ねもこと根本 凪です。"],
+ :blog_uri=>#<URI::HTTP:0x007fc1198fbd58 URL:http://ameblo.jp/2zicon/theme-10083290733.html>,
+ :to_s=>"ねも"}
```
more member information: https://github.com/bash0C7/rzicon/blob/master/lib/nizicon/members.rb
## Change Log
+
+### Version 0.0.2
+
+Support <member>#to_hash
### Version 0.0.1
Fix some issues.
Impl some features.