class Magick::RVG::Styles

def each_value

Iterate over the style names. Yield for each style that has a value.
def each_value
  each_pair do |style, value|
    yield(style, value) if value
  end
end