doc/ex/writing_mode02.rb in rmagick-1.8.3 vs doc/ex/writing_mode02.rb in rmagick-1.9.0

- old
+ new

@@ -1,9 +1,8 @@ require 'rvg/rvg' -include Magick -RVG.dpi = 90 +Magick::RVG.dpi = 90 TEXT_STYLES = {:writing_mode=>'lr', :glyph_orientation_horizontal=>0, :fill=>'red4', :font_weight=>'bold', @@ -13,10 +12,10 @@ :glyph_orientation_horizontal=>180, :fill=>'green', :font_weight=>'bold', :font_size=>16} -rvg = RVG.new(3.in, 1.in).viewbox(0,0,300,100) do |canvas| +rvg = Magick::RVG.new(3.in, 1.in).viewbox(0,0,300,100) do |canvas| canvas.background_fill = 'white' canvas.text(15, 40, ":glyph_orientation_horizontal=0").styles(TEXT_STYLES) canvas.text(15, 80, ":glyph_orientation_horizontal=180").styles(TEXT_STYLES2)