Ruby 1.9にはprocの書き方が4つある f =->n {[:hello, n]} p f[:ruby] # => [:hello, :ruby] p f.call(:ruby) # => [:hello, :ruby] p f.(:ruby) # => [:hello, :ruby] p f === :ruby # => [:hello, :ruby] Ruby 1.9では’stabby proc’記法でprocが書ける f = -> a,b {p [a,b]} p f.call(1,2) => [1,2] Ruby 1.9のブロックではブロック・ローカルな変数が使用できる v = "ruby" [1,9].map {|val; v| v = val} p v => “ruby” Ruby 1.9のブロックではブロックを変数に使用できる b = -> v, &blk { p [
First we create a rails app without Test Unit (as we will use rspec as per Jasmine). Let's call it party_time: rails new party_time -T cd party_time rm public/index.html Let's start with Jasmine. I played around with a couple of methods of integrating it but settled on using Jasminerice, which has worked superbly. This tutorial uses version 0.0.8, but I imagine it will continue to work for later v
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く