24件ヒット
[1-24件を表示]
(0.007秒)
検索結果
-
Kernel
# task(*args) { . . . } -> Rake :: Task (7.0) -
Rake タスクを定義します。
...Rake タスクを定義します。
@param args タスク名と依存タスクを指定します。
例:
task :clobber => [:clean] do
rm_rf "html"
end
@see Rake::Task.define_task... -
Kernel
$ $ LAST _ PAREN _ MATCH -> String | nil (7.0) -
$+ の別名
...while line = DATA.gets
[ r1, r2 ].each {|rep|
rep =~ line
p $+
}
end
__END__
<tr> <td><img src=http://localhost/a.jpg></td> <td>ikkou</td> <td><a href=http://localhost/link.html>link</a></td> </tr>
#enf of sample.rb
$ ruby sample.rb
"http://localhost/a.jpg"
"link"...