2013年06月05日Rubyで配列展開Rubyで引数に与える配列に*をつけると, 配列を展開することができる. def hoge args args = [*args] end hoge 1 # => [1] hoge [1, 2] # => [1, 2] 便利.