るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.136秒)

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. matrix t
  4. t61string new
  5. fiddle align_size_t

ライブラリ

検索結果

ERB#def_module(methodname='erb') -> Module (108.0)

変換した Ruby スクリプトをメソッドとして定義した無名のモジュールを返します。

...methodname メソッド名

//emlist[例][ruby]{
require 'erb'
filename = 'example.rhtml'
erb
= ERB.new("test1<%= arg1 %>\ntest2<%= arg2 %>\n")
erb
.filename = filename
MyModule = erb.def_module('render(arg1, arg2)')
class MyClass
include
MyModule
end
print MyClass.new.render('foo', 123)
# test1fo...
...o
# test2123
//}...