prawn-utils/lib/fourmi/prawn/utils/extensions/stroke_rounded_bounds.rb

13 lines
347 B
Ruby
Raw Normal View History

2022-10-14 09:05:37 +00:00
module Fourmi::Prawn::Utils
module Extensions
module StrokeRoundedBounds
def stroke_rounded_bounds(radius = 2)
stroke_rounded_rectangle [0, bounds.top], bounds.width, bounds.height, radius
end
end
end
end
require 'prawn/document'
Prawn::Document.extensions << Fourmi::Prawn::Utils::Extensions::StrokeRoundedBounds