DannyBen/victor

View on GitHub
lib/victor/svg.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Victor
  class SVG < SVGBase
    def method_missing(method_sym, ...)
      element(method_sym, ...)
    end

    def respond_to_missing?(*)
      true
    end
  end
end