lib/macros4cuke/templating/unary-element.rb in macros4cuke-0.5.07 vs lib/macros4cuke/templating/unary-element.rb in macros4cuke-0.5.08

- old
+ new

@@ -1,11 +1,10 @@ # File: unary-element.rb # Purpose: Implementation of the Section and ConditionalSection classes. module Macros4Cuke # Module used as a namespace - # Base class used internally by the template engine. # The generalization of any element from a template that has one variable # whose actual value influences the rendition. class UnaryElement # The name of the placeholder/variable. @@ -27,11 +26,8 @@ actual_value = aContextObject.send(name.to_sym) end return actual_value end - end # class - end # module - # End of file