Class: Deplate::Regions::DefCommandN
- Inherits:
-
Define
- Object
- Element
- Deplate::Region
- Define
- Deplate::Regions::DefCommandN
- Defined in:
- lib/deplate/define.rb
Instance Method Summary collapse
Methods inherited from Define
check_arguments, #finish, let_variables, #valid_id?, #valid_switch
Methods inherited from Deplate::Region
check_file, clean_strings, #deprecated_regnote, deprecated_regnote, #finish, #finish_accum, #format_compound, regions, register_as, set_line_cont, #setup
Methods inherited from Element
#join_lines, #join_lines_re_zh_cn
Instance Method Details
#define ⇒ Object
426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 |
# File 'lib/deplate/define.rb', line 426 def define id = deprecated_regnote('id') if valid_id?(id) body = " def finish\n @template = \#{@accum.join(\"\\n\").inspect}\n @mandatory = \#{@args['args'].inspect}\n @elt = [ expand_template ]\n return self\n end\n EOR\n @args[:register] = true\n @args[:super] = Deplate::Define::CommandNative\n cls = Deplate::Cache.command(@deplate, body, @args)\n end\nend\n" |