class Meteor::ElementFactory

Element Factory Class (要素ファクトリクラス)

Public Class Methods

element(key) click to toggle source

get root element (ルート要素を取得する) @param [String,Symbol] key identifier (キー) @return [Meteor::RootElement] root element (ルート要素)

# File lib/meteor.rb, line 1346
def self.element(key)
  @@pf.element(key)
end
options=(opts) click to toggle source

set options (オプションをセットする) @param [Hash] opts option (オプション) @option opts [String] :root root directory (基準ディレクトリ) @option @deprecated opts [String] :base_dir root directory (基準ディレクトリ) @option opts [String] :enc default character encoding (デフォルト文字エンコーディング) @option @deprecated opts [String] :base_enc default character encoding (デフォルト文字エンコーディング) @option opts [FixNum,Symbol] :type default type of parser (デフォルトのパーサ・タイプ) @option @deprecated opts [FixNum | Symbol] :base_type default type of parser (デフォルトのパーサ・タイプ)

# File lib/meteor.rb, line 1303
def self.options=(opts)
  @@pf.options = opts
end