lib/phlex/svg.rb in phlex-1.9.3 vs lib/phlex/svg.rb in phlex-1.10.0
- old
+ new
@@ -1,10 +1,20 @@
# frozen_string_literal: true
module Phlex
class SVG < SGML
+ autoload :StandardElements, "phlex/svg/standard_elements"
+
include StandardElements
# This should be extended after all method definitions
extend ElementClobberingGuard
+
+ def content_type
+ "image/svg+xml"
+ end
+
+ def filename
+ nil
+ end
end
end