Module: RubyToBlock::Block
- Defined in:
- app/models/concerns/ruby_to_block.rb
Overview
ブロック群を表現するモジュール
Defined Under Namespace
Classes: Base, CharacterNew, EventsOnStart, Null, RubyStatement
Class Method Summary collapse
-
.new(type, *args) ⇒ Object
ブロックのインスタンスを生成する.
Class Method Details
.new(type, *args) ⇒ Object
ブロックのインスタンスを生成する
252 253 254 |
# File 'app/models/concerns/ruby_to_block.rb', line 252 def self.new(type, *args) const_get(type.camelize).new(*args) end |