class Xmldsig::Transforms::Transform
Attributes
node[RW]
transform_node[RW]
with_comments[RW]
Public Class Methods
new(node, transform_node, with_comments = false)
click to toggle source
# File lib/xmldsig/transforms/transform.rb, line 7 def initialize(node, transform_node, with_comments = false) @node = node @transform_node = transform_node @with_comments = with_comments end
Public Instance Methods
transform()
click to toggle source
# File lib/xmldsig/transforms/transform.rb, line 13 def transform warn("Transform called but not implemented!") self end