class MojoMagick::Util::Parser
Attributes
raw_fonts[R]
Public Class Methods
new()
click to toggle source
# File lib/mojo_magick/util/parser.rb, line 7 def initialize warn "DEPRECATION WARNING: This class has been deprecated and will be removed with " \ "the next minor version release. " \ "Please use `MojoMagick::Util::FontParser` instead" end
Public Instance Methods
parse_fonts(fonts)
click to toggle source
# File lib/mojo_magick/util/parser.rb, line 13 def parse_fonts(fonts) warn "DEPRECATION WARNING: #{__method__} has been deprecated and will be removed with " \ "the next minor version release. " \ "Please use `MojoMagick::Util::FontParser#parse` instead" FontParser.new(fonts).parse end