メモ: ファイル名をキャメルケースにするRubyワンライナー
Relay Modern compatモードで動かしてるんだけど、fragment名についてcomplierではファイル名に依存してて、runtime(?)ではコンポーネント名に依存してる… snake caseとcamel caseにしてるからファイル名変えないと…
— taiki-🇹 (@taiki__t) 2017年8月9日
というわけでgraphql
を含むファイルの名前をCamelCaseにしたかった
git grep -l graphql | ruby -nle 'File.rename($_, $_.split("-").map{|w| w[0] = w[0].upcase; w}.join)'