Class: Nokogiri::XML::Builder::NodeBuilder

Inherits:
Object
  • Object
show all
Defined in:
lib/nokogiri/xml/builder.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(node, doc_builder) ⇒ NodeBuilder

Returns a new instance of NodeBuilder.



381
382
383
384
# File 'lib/nokogiri/xml/builder.rb', line 381

def initialize node, doc_builder
  @node = node
  @doc_builder = doc_builder
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *args, &block) ⇒ Object



394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
# File 'lib/nokogiri/xml/builder.rb', line 394

def method_missing(method, *args, &block)
  opts = args.last.is_a?(Hash) ? args.pop : {}
  case method.to_s
  when /^(.*)!$/
    @node['id'] = $1
    @node.content = args.first if args.first
  when /^(.*)=/
    @node[$1] = args.first
  else
    @node['class'] =
      ((@node['class'] || '').split(/\s/) + [method.to_s]).join(' ')
    @node.content = args.first if args.first
  end

  # Assign any extra options
  opts.each do |k,v|
    @node[k.to_s] = ((@node[k.to_s] || '').split(/\s/) + [v]).join(' ')
  end

  if block_given?
    old_parent = @doc_builder.parent
    @doc_builder.parent = @node
    value = @doc_builder.instance_eval(&block)
    @doc_builder.parent = old_parent
    return value
  end
  self
end

Instance Method Details

#[](k) ⇒ Object



390
391
392
# File 'lib/nokogiri/xml/builder.rb', line 390

def [] k
  @node[k]
end

#[]=(k, v) ⇒ Object



386
387
388
# File 'lib/nokogiri/xml/builder.rb', line 386

def []= k, v
  @node[k] = v
end