class String include Rtml::Rules::DomValidation def to_controller camel = self.camelize "#{camel}Controller".constantize rescue NameError camel.constantize end def valid_tml? validate_tml(self) true end def to_tml_simulator Rtml::Test::Simulator.new(self) end end