1件ヒット
[1-1件を表示]
(0.530秒)
トップページ > :Object#class > :to_hash > :to_proc > :2.4.0 > :instance_of? > :class_variable_get > :drb > クラス:ERB
ライブラリ
- erb (1)
検索結果
-
ERB
# def _ class(superklass=Object , methodname=& # 39;erb& # 39;) -> Class (18949.0) -
変換した Ruby スクリプトをメソッドとして定義した無名のクラスを返します。
...mlist[例][ruby]{
require 'erb'
class MyClass_
def initialize(arg1, arg2)
@arg1 = arg1; @arg2 = arg2
end
end
filename = 'example.rhtml' # @arg1 と @arg2 が使われている example.rhtml
erb = ERB.new(File.read(filename))
erb.filename = filename
MyClass = erb.def_class(MyClass_, 'rend...