[DRE-commits] [ruby-prawn] 01/03: Merge tag 'upstream/1.0.0_rc2+really0.14.0+dfsg'
Gunnar Wolf
gwolf at moszumanska.debian.org
Thu Jan 16 19:48:43 UTC 2014
This is an automated email from the git hooks/post-receive script.
gwolf pushed a commit to branch master
in repository ruby-prawn.
commit 9919a79cd20c1f19c948c3c9d6678159e6cdb9b9
Merge: 7c1a2d3 8e87b97
Author: Gunnar Wolf <gwolf at debian.org>
Date: Thu Jan 16 11:48:11 2014 -0600
Merge tag 'upstream/1.0.0_rc2+really0.14.0+dfsg'
Upstream version 1.0.0~rc2+really0.14.0+dfsg
# gpg: Signature made Thu 16 Jan 2014 11:48:08 AM CST using RSA key ID C1DB921F
# gpg: Good signature from "Gunnar Eyal Wolf Iszaevich <gwolf at debian.org>"
# gpg: aka "Gunnar Eyal Wolf Iszaevich <gwolf at gwolf.org>"
# gpg: aka "Gunnar Eyal Wolf Iszaevich (Instituto de Investigaciones Económicas UNAM) <gwolf at iiec.unam.mx>"
.travis.yml | 14 +-
.yardopts | 9 +
CONTRIBUTING.md | 40 +++
COPYING | 4 +-
Gemfile | 23 +-
LICENSE | 2 +-
README.md | 14 +-
Rakefile | 29 +-
VERSION | 2 +-
bench/png_type_6.rb | 6 +-
bench/png_type_6_objects.rb | 16 ++
bench/table_bench.rb | 9 -
data/images/indexed_color.dat | Bin 0 -> 20531 bytes
data/images/indexed_color.png | Bin 0 -> 25576 bytes
lib/pdf/core.rb | 35 +++
lib/{prawn => pdf}/core/annotations.rb | 13 +-
lib/{prawn => pdf}/core/byte_string.rb | 2 +-
lib/{prawn => pdf}/core/destinations.rb | 14 +-
lib/{prawn => pdf}/core/document_state.rb | 14 +-
lib/pdf/core/filter_list.rb | 51 ++++
lib/pdf/core/filters.rb | 36 +++
lib/pdf/core/graphics_state.rb | 89 ++++++
lib/{prawn => pdf}/core/literal_string.rb | 2 +-
lib/{prawn => pdf}/core/name_tree.rb | 4 +-
lib/{prawn => pdf}/core/object_store.rb | 59 ++--
lib/pdf/core/outline.rb | 315 +++++++++++++++++++++
lib/{prawn => pdf}/core/page.rb | 40 +--
lib/{prawn/document => pdf/core}/page_geometry.rb | 32 +--
lib/{prawn => pdf}/core/pdf_object.rb | 98 +++----
lib/{prawn => pdf}/core/reference.rb | 80 +++---
lib/pdf/core/stream.rb | 98 +++++++
lib/{prawn => pdf}/core/text.rb | 35 ++-
lib/prawn.rb | 114 ++++++--
lib/prawn/compatibility.rb | 87 ------
lib/prawn/core.rb | 87 ------
lib/prawn/core/text/formatted/arranger.rb | 294 -------------------
lib/prawn/core/text/formatted/line_wrap.rb | 288 -------------------
lib/prawn/core/text/formatted/wrap.rb | 153 ----------
lib/prawn/document.rb | 106 +++----
lib/prawn/document/bounding_box.rb | 11 +
lib/prawn/document/column_box.rb | 20 +-
lib/prawn/document/graphics_state.rb | 83 +-----
lib/prawn/document/internals.rb | 47 +--
lib/prawn/document/snapshot.rb | 8 +-
lib/prawn/document/span.rb | 20 +-
lib/prawn/encoding.rb | 15 +-
lib/prawn/errors.rb | 45 +--
lib/prawn/font.rb | 106 ++++---
lib/prawn/font/afm.rb | 105 ++++---
lib/prawn/font/dfont.rb | 6 +-
lib/prawn/font/ttf.rb | 56 ++--
lib/prawn/font_metric_cache.rb | 45 +++
lib/prawn/graphics.rb | 218 +++++++++++---
lib/prawn/graphics/cap_style.rb | 6 +-
lib/prawn/graphics/color.rb | 8 +-
lib/prawn/graphics/dash.rb | 83 ++++--
lib/prawn/graphics/join_style.rb | 14 +-
lib/prawn/graphics/patterns.rb | 2 +-
lib/prawn/graphics/transformation.rb | 18 +-
lib/prawn/graphics/transparency.rb | 2 +-
lib/prawn/image_handler.rb | 34 +++
lib/prawn/images.rb | 107 ++++---
lib/prawn/images/image.rb | 27 +-
lib/prawn/images/jpg.rb | 31 +-
lib/prawn/images/png.rb | 177 ++++--------
lib/prawn/layout.rb | 8 +-
lib/prawn/layout/grid.rb | 102 +++----
lib/prawn/measurement_extensions.rb | 12 +-
lib/prawn/measurements.rb | 46 +--
lib/prawn/outline.rb | 312 +-------------------
lib/prawn/repeater.rb | 14 +-
lib/prawn/security.rb | 78 ++---
lib/prawn/soft_mask.rb | 2 +-
lib/prawn/stamp.rb | 6 +-
lib/prawn/table.rb | 141 +++++----
lib/prawn/table/cell.rb | 34 +--
lib/prawn/table/cell/image.rb | 2 +-
lib/prawn/table/cell/in_table.rb | 4 +-
lib/prawn/table/cell/span_dummy.rb | 4 +
lib/prawn/table/cell/subtable.rb | 4 +-
lib/prawn/table/cell/text.rb | 25 +-
lib/prawn/table/cells.rb | 65 ++++-
lib/prawn/table/column_width_calculator.rb | 55 ++++
lib/prawn/templates.rb | 75 +++++
lib/prawn/text.rb | 48 ++--
lib/prawn/text/box.rb | 15 +-
lib/prawn/text/formatted.rb | 9 +-
lib/prawn/text/formatted/arranger.rb | 288 +++++++++++++++++++
lib/prawn/text/formatted/box.rb | 41 ++-
lib/prawn/text/formatted/fragment.rb | 20 +-
lib/prawn/text/formatted/line_wrap.rb | 265 +++++++++++++++++
lib/prawn/text/formatted/parser.rb | 15 +-
lib/prawn/text/formatted/wrap.rb | 148 ++++++++++
.../document_and_page_options.rb | 3 +-
manual/document_and_page_options/metadata.rb | 6 +-
manual/document_and_page_options/page_size.rb | 4 +-
manual/document_and_page_options/print_scaling.rb | 20 ++
manual/example_file.rb | 9 +-
manual/example_helper.rb | 143 ++++------
manual/graphics/helper.rb | 15 +-
manual/graphics/stroke_dash.rb | 33 ++-
manual/manual/cover.rb | 10 +
manual/manual/foreword.rb | 80 +++++-
manual/manual/manual.rb | 4 +-
manual/templates/full_template.rb | 23 --
manual/templates/page_template.rb | 47 ---
manual/templates/templates.rb | 26 --
manual/text/formatted_text.rb | 10 +-
prawn.gemspec | 29 +-
spec/acceptance/png.rb | 23 ++
spec/annotations_spec.rb | 48 ++--
spec/bounding_box_spec.rb | 12 +
spec/cell_spec.rb | 54 +++-
spec/column_box_spec.rb | 32 +++
spec/destinations_spec.rb | 10 +-
spec/document_spec.rb | 199 +++++++------
spec/extensions/encoding_helpers.rb | 7 +-
spec/filters_spec.rb | 34 +++
spec/font_metric_cache_spec.rb | 52 ++++
spec/font_spec.rb | 124 +++++---
spec/formatted_text_arranger_spec.rb | 48 ++--
spec/formatted_text_box_spec.rb | 63 ++---
spec/formatted_text_fragment_spec.rb | 4 +-
spec/graphics_spec.rb | 108 ++++---
spec/grid_spec.rb | 26 +-
spec/image_handler_spec.rb | 54 ++++
spec/images_spec.rb | 55 ++--
spec/inline_formatted_text_parser_spec.rb | 89 ++++--
spec/jpg_spec.rb | 6 +-
spec/line_wrap_spec.rb | 28 +-
spec/measurement_units_spec.rb | 10 +-
spec/name_tree_spec.rb | 30 +-
spec/object_store_spec.rb | 60 ++--
spec/outline_spec.rb | 114 +++++---
spec/pdf_object_spec.rb | 174 ++++++------
spec/png_spec.rb | 33 +--
spec/reference_spec.rb | 75 ++---
spec/repeater_spec.rb | 2 +-
spec/security_spec.rb | 50 +++-
spec/snapshot_spec.rb | 8 +-
spec/span_spec.rb | 17 +-
spec/spec_helper.rb | 15 +-
spec/stamp_spec.rb | 39 ++-
spec/stream_spec.rb | 58 ++++
spec/stroke_styles_spec.rb | 44 ++-
spec/table/span_dummy_spec.rb | 17 ++
spec/table_spec.rb | 285 ++++++++++++++++---
...{template_spec.rb => template_spec_obsolete.rb} | 3 +-
spec/text_at_spec.rb | 40 +--
spec/text_box_spec.rb | 49 ++--
spec/text_spec.rb | 96 ++++---
spec/transparency_spec.rb | 10 +-
152 files changed, 4752 insertions(+), 3461 deletions(-)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-prawn.git
More information about the Pkg-ruby-extras-commits
mailing list