
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Generate sets of labels or stickers using Prawn PDF.
For simple bulk generation, can break page between groups of data.
Add this line to your application's Gemfile:
gem 'prawn-label_sheet'
And then execute:
$ bundle
Or install it yourself as:
$ gem install prawn-label_sheet
items = %w[red orange yellow green blue indigo violet]
Prawn::LabelSheet.generate("out.pdf", items) do |pdf, item|
pdf.text_box item
end
Each item is passed to the block, together with a bounding box for the label.
For larger sets, page breaks can be inserted on change of value:
# Change in value returned from item[3]
generate("out.pdf", items, break_on: 3)
# Change in value returned from proc
generate("out.pdf", items, break_on: ->(item) { item.downcase })
In a school you might want a single document with labels for all students, where a new sheets is started for each class.
Given your class data, pre-sorted by [class, last, first]:
Arthur,Aardvark,1234,Class A
Sam,Smith,1235,Class A
Bob,Bobbington,1236,Class B
Leah,Lemon,1237,Class B
csv = CSV.read("students.csv")
Prawn::LabelSheet.generate("out.pdf", csv, break_on: 3) do |pdf, data|
last_name, first_name, class_name, student_id = data
b = pdf.bounds
full_width = b.width - 12
half_width = (full_width / 2).floor - 1
pdf.font 'Helvetica'
pdf.move_down 12
pdf.indent(6) do
pdf.text_box "#{last_name} #{first_name}",
at: [b.left, pdf.cursor],
width: full_width, height: 12,
overflow: :truncate
end
pdf.move_down 12
pdf.stroke_horizontal_rule
pdf.move_down 6
pdf.font_size 7 do
pdf.text_box "ID",
at: [b.left, pdf.cursor],
width: half_width, height: 8
pdf.text_box "Class",
at: [b.right - half_width, pdf.cursor],
width: half_width, height: 8
end
pdf.move_down 9
pdf.text_box student_id,
at: [b.left, pdf.cursor],
width: half_width, height: 10,
overflow: :shrink_to_fit
pdf.text_box class_name,
at: [b.right - half_width, pdf.cursor],
width: half_width, height: 10,
overflow: :shrink_to_fit
end
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/tcrouch/prawn-label_sheet.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that prawn-label_sheet demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.