lib/prawn/graphics.rb in prawn-0.13.1 vs lib/prawn/graphics.rb in prawn-0.13.2

- old
+ new

@@ -4,16 +4,17 @@ # # Copyright April 2008, Gregory Brown. All Rights Reserved. # # This is free software. Please see the LICENSE and COPYING files for details. -require "prawn/graphics/color" -require "prawn/graphics/dash" -require "prawn/graphics/cap_style" -require "prawn/graphics/join_style" -require "prawn/graphics/transparency" -require "prawn/graphics/transformation" -require "prawn/graphics/patterns" + +require_relative "graphics/color" +require_relative "graphics/dash" +require_relative "graphics/cap_style" +require_relative "graphics/join_style" +require_relative "graphics/transparency" +require_relative "graphics/transformation" +require_relative "graphics/patterns" module Prawn # Implements the drawing facilities for Prawn::Document. # Use this to draw the most beautiful imaginable things.