Ruby
Hilfestellung
bundler
bundle update --bundler
bundle update
map ohne nil
[{t: [1,2,3]}, {}, {t: [2,3]}].map {|i| i[:t]}.compact
=> [[1, 2, 3], [2, 3]]
[{t: [1,2,3]}, {}, {t: [2,3]}].filter_map {|i| i[:t]}
=> [[1, 2, 3], [2, 3]]