Rails

Array#forty_two

Active Supportがあればこういうことができるというのはよく知られている。 [*(1..100)].second #=> 2 [*(1..100)].third #=> 3 Array#fifthまでしか定義されていないためseventhとかは使えない。 だけど、もうひとつArray#forty_twoという素晴らしいメソッ…

Rake 0.9でWARNINGが出るときの対処法

rake 0.9をインストールした状態で、Railsで何気なくrakeコマンドを打つと次のようなメッセージが出てくる。 % rake db:migrate WARNING: Global access to Rake DSL methods is deprecated. Please Include ... Rake::DSL into classes and modules which u…