[DRE-commits] [ruby-prawn] 04/10: Merge tag 'upstream/1.0.0+dfsg'

Cédric Boutillier boutil at moszumanska.debian.org
Mon Apr 14 23:07:52 UTC 2014


This is an automated email from the git hooks/post-receive script.

boutil pushed a commit to branch master
in repository ruby-prawn.

commit 300c52ede5eb153cc62d939d7054e7ba0fa56cee
Merge: bb543db 9b296ae
Author: Cédric Boutillier <boutil at debian.org>
Date:   Mon Apr 14 23:23:11 2014 +0200

    Merge tag 'upstream/1.0.0+dfsg'
    
    Upstream version 1.0.0+dfsg
    
    # gpg: Signature faite le lun. 14 avril 2014 23:23:04 CEST avec la clef RSA d'identifiant 8F9F8F09
    # gpg: Bonne signature de « Cédric Boutillier <boutil at debian.org> »
    # gpg:                 alias « Cédric Boutillier <cedric.boutillier at upmc.fr> »
    # gpg:                 alias « Cédric Boutillier <cedric.boutillier at polytechnique.org> »
    # gpg:                 alias « Cédric Boutillier <cedric.boutillier at gmail.com> »

 .travis.yml                                        |   1 -
 .yardopts                                          |   2 +-
 CONTRIBUTING.md                                    |  17 +-
 README.md                                          |  78 ++++-
 Rakefile                                           |  12 +
 VERSION                                            |   2 +-
 bugs/indentation_across_pagebreaks.rb              |  15 -
 bugs/png_alpha_channel_filter.rb                   |  13 -
 bugs/resolved/canvas_sets_y_to_0.rb                |  15 -
 bugs/resolved/color_space_issues.rb                |  19 --
 bugs/resolved/dash_stamp_issue.rb                  |  20 --
 bugs/resolved/layout/cell_width_miscalculation.rb  |  24 --
 bugs/resolved/layout/fill_color.rb                 |  14 -
 bugs/resolved/layout/table_header_overrun.rb       |  35 --
 .../resolved/layout/table_ignores_align_headers.rb |  28 --
 .../layout/table_in_bounding_box_without_height.rb |  21 --
 .../layout/table_row_background_color_issue.rb     |  56 ----
 bugs/resolved/layout/table_suppress_newline.rb     |  16 -
 bugs/resolved/looks_blank.rb                       |  18 --
 bugs/resolved/multiple_rendering.rb                |  20 --
 bugs/resolved/png_barcode_issue.rb                 |  11 -
 bugs/resolved/save_graphics_state.rb               |  21 --
 bugs/resolved/stamp_color_issues.rb                |  23 --
 bugs/resolved/transaction_page_number_issue_79.rb  |  21 --
 bugs/resolved/ttf_fails_in_transactions.rb         |  24 --
 data/fonts/Panic+Sans.dfont                        | Bin 0 -> 225030 bytes
 data/images/license.md                             |   8 +
 lib/pdf/core.rb                                    |  35 --
 lib/pdf/core/annotations.rb                        |  60 ----
 lib/pdf/core/byte_string.rb                        |   9 -
 lib/pdf/core/destinations.rb                       |  90 ------
 lib/pdf/core/document_state.rb                     |  79 -----
 lib/pdf/core/filter_list.rb                        |  51 ---
 lib/pdf/core/filters.rb                            |  36 ---
 lib/pdf/core/graphics_state.rb                     |  89 ------
 lib/pdf/core/literal_string.rb                     |  16 -
 lib/pdf/core/name_tree.rb                          | 177 -----------
 lib/pdf/core/object_store.rb                       | 311 ------------------
 lib/pdf/core/outline.rb                            | 315 ------------------
 lib/pdf/core/page.rb                               | 212 -------------
 lib/pdf/core/page_geometry.rb                      | 126 --------
 lib/pdf/core/pdf_object.rb                         |  99 ------
 lib/pdf/core/reference.rb                          | 103 ------
 lib/pdf/core/stream.rb                             |  98 ------
 lib/pdf/core/text.rb                               | 275 ----------------
 lib/prawn.rb                                       |  30 +-
 lib/prawn/document.rb                              | 168 +++++-----
 lib/prawn/document/bounding_box.rb                 |  26 +-
 lib/prawn/document/column_box.rb                   |   4 +
 lib/prawn/document/graphics_state.rb               |   2 +-
 lib/prawn/document/internals.rb                    |   4 +-
 lib/prawn/document/snapshot.rb                     |  89 ------
 lib/prawn/document/span.rb                         |   2 +
 lib/prawn/encoding.rb                              |   2 +-
 lib/prawn/font.rb                                  | 168 +++++-----
 lib/prawn/font/afm.rb                              |   3 +
 lib/prawn/font/dfont.rb                            |   1 +
 lib/prawn/font/ttf.rb                              |   2 +
 lib/prawn/font_metric_cache.rb                     |   4 +-
 lib/prawn/graphics.rb                              |  16 +-
 lib/prawn/graphics/cap_style.rb                    |   1 +
 lib/prawn/graphics/color.rb                        |   1 +
 lib/prawn/graphics/dash.rb                         |   5 +-
 lib/prawn/graphics/join_style.rb                   |   2 +
 lib/prawn/graphics/patterns.rb                     |  17 +-
 lib/prawn/graphics/transformation.rb               |   1 +
 lib/prawn/graphics/transparency.rb                 |   2 +
 lib/prawn/{layout => }/grid.rb                     |  24 +-
 lib/prawn/image_handler.rb                         |   8 +
 lib/prawn/images.rb                                |   7 +-
 lib/prawn/images/image.rb                          |   1 +
 lib/prawn/images/jpg.rb                            |   3 +
 lib/prawn/images/png.rb                            |   2 +
 lib/prawn/layout.rb                                |  25 +-
 lib/prawn/measurement_extensions.rb                |   4 +
 lib/prawn/measurements.rb                          |   2 +
 lib/prawn/outline.rb                               | 293 ++++++++++++++++-
 lib/prawn/repeater.rb                              |   4 +-
 lib/prawn/security.rb                              |  27 +-
 lib/prawn/security/arcfour.rb                      |  52 +++
 lib/prawn/soft_mask.rb                             |   6 +-
 lib/prawn/stamp.rb                                 |   2 +
 lib/prawn/table.rb                                 |   4 +-
 lib/prawn/table/cell.rb                            |   4 +-
 lib/prawn/table/cell/image.rb                      |   3 +-
 lib/prawn/table/cell/in_table.rb                   |   6 +
 lib/prawn/table/cell/span_dummy.rb                 |   1 +
 lib/prawn/table/cell/subtable.rb                   |   1 +
 lib/prawn/table/cell/text.rb                       |   1 +
 lib/prawn/table/cells.rb                           |   9 +-
 lib/prawn/table/column_width_calculator.rb         |  10 +-
 lib/prawn/templates.rb                             |  75 -----
 lib/prawn/text.rb                                  |  11 +-
 lib/prawn/text/box.rb                              |   3 +
 lib/prawn/text/formatted/arranger.rb               |   2 +
 lib/prawn/text/formatted/box.rb                    | 105 +++---
 lib/prawn/text/formatted/fragment.rb               |   2 +
 lib/prawn/text/formatted/line_wrap.rb              |   1 +
 lib/prawn/text/formatted/parser.rb                 |   2 +
 lib/prawn/text/formatted/wrap.rb                   |   8 +
 lib/prawn/utilities.rb                             |   8 +-
 manual/graphics/common_lines.rb                    |   2 +
 manual/manual/cover.rb                             |  16 +-
 manual/manual/foreword.rb                          |  85 -----
 manual/manual/manual.rb                            |   2 -
 manual/text/fallback_fonts.rb                      |   8 +-
 manual/text/formatted_text.rb                      |  10 +-
 manual/text/group.rb                               |  29 --
 manual/text/inline.rb                              |   6 +-
 manual/text/registering_families.rb                |  24 +-
 manual/text/single_usage.rb                        |   8 +-
 manual/text/text.rb                                |   2 -
 prawn.gemspec                                      |   7 +-
 spec/bounding_box_spec.rb                          |  15 +-
 spec/cell_spec.rb                                  |  24 +-
 spec/document_spec.rb                              |  37 +--
 spec/filters_spec.rb                               |  34 --
 spec/font_spec.rb                                  | 121 +++----
 spec/grid_spec.rb                                  |  11 +
 spec/line_wrap_spec.rb                             |  11 +
 spec/name_tree_spec.rb                             | 112 -------
 spec/object_store_spec.rb                          | 176 -----------
 spec/outline_spec.rb                               |  18 --
 spec/pdf_object_spec.rb                            | 172 ----------
 spec/reference_spec.rb                             |  57 ----
 spec/snapshot_spec.rb                              | 186 -----------
 spec/soft_mask_spec.rb                             |  40 ---
 spec/spec_helper.rb                                |   7 +
 spec/stream_spec.rb                                |  58 ----
 spec/table_spec.rb                                 |  26 ++
 spec/template_spec_obsolete.rb                     | 352 ---------------------
 spec/text_box_spec.rb                              |  16 +-
 spec/text_spec.rb                                  |   2 +-
 133 files changed, 1050 insertions(+), 4605 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