[DRE-commits] [ruby-zip] branch master updated (3b7b199 -> fb5236c)

Antonio Terceiro terceiro at moszumanska.debian.org
Sun Mar 23 17:44:21 UTC 2014


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

terceiro pushed a change to branch master
in repository ruby-zip.

      from  3b7b199   Fix duplicate Uploaders field
       new  4dff2b8   Imported Upstream version 1.1.2
       new  fb5236c   packaging new upstream release

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                   |    1 +
 test/alltests.rb => .simplecov               |    9 -
 .travis.yml                                  |    7 +-
 Changelog.md                                 |   10 +
 Gemfile                                      |   10 +
 README.md                                    |   70 +-
 Rakefile                                     |   18 +-
 TODO                                         |    1 -
 debian/changelog                             |    5 +-
 debian/control                               |    2 +-
 debian/patches/ignore-simplecov.diff         |    7 +
 debian/patches/series                        |    1 +
 debian/ruby-tests.rake                       |    5 +
 debian/ruby-tests.rb                         |   12 -
 debian/rules                                 |    4 +
 lib/zip.rb                                   |    4 +-
 lib/zip/central_directory.rb                 |   29 +-
 lib/zip/deflater.rb                          |    2 +-
 lib/zip/entry.rb                             |   66 +-
 lib/zip/entry_set.rb                         |    2 +-
 lib/zip/errors.rb                            |   12 +-
 lib/zip/extra_field.rb                       |   11 +-
 lib/zip/extra_field/generic.rb               |    8 +-
 lib/zip/extra_field/old_unix.rb              |   45 +
 lib/zip/file.rb                              |   83 +-
 lib/zip/inflater.rb                          |   59 +-
 lib/zip/input_stream.rb                      |   32 +-
 lib/zip/output_stream.rb                     |   74 +-
 lib/zip/streamable_stream.rb                 |   29 +-
 lib/zip/version.rb                           |    2 +-
 test/.cvsignore                              |   11 -
 test/basic_zip_file_test.rb                  |   64 +
 test/central_directory_entry_test.rb         |   73 +
 test/central_directory_test.rb               |  100 ++
 test/data/.cvsignore                         |    1 -
 test/deflater_test.rb                        |   62 +
 test/entry_set_test.rb                       |  125 ++
 test/entry_test.rb                           |  132 ++
 test/extra_field_test.rb                     |   69 +
 test/file_extract_directory_test.rb          |   55 +
 test/file_extract_test.rb                    |   90 ++
 test/file_split_test.rb                      |   60 +
 test/file_test.rb                            |  543 +++++++
 test/filesystem/dir_iterator_test.rb         |   62 +
 test/filesystem/directory_test.rb            |  131 ++
 test/filesystem/file_mutating_test.rb        |  100 ++
 test/filesystem/file_nonmutating_test.rb     |  505 +++++++
 test/filesystem/file_stat_test.rb            |   66 +
 test/gentestfiles.rb                         |  199 ++-
 test/inflater_test.rb                        |   14 +
 test/input_stream_test.rb                    |  160 ++
 test/ioextras/abstract_input_stream_test.rb  |  103 ++
 test/ioextras/abstract_output_stream_test.rb |  106 ++
 test/ioextras/fake_io_test.rb                |   18 +
 test/ioextrastest.rb                         |  234 ---
 test/local_entry_test.rb                     |  153 ++
 test/output_stream_test.rb                   |  114 ++
 test/pass_thru_compressor_test.rb            |   31 +
 test/pass_thru_decompressor_test.rb          |   15 +
 test/settings_test.rb                        |   71 +
 test/test_helper.rb                          |  228 +++
 test/unicode_file_names_and_comments.rb      |   38 +
 test/zip64_full_test.rb                      |   73 +-
 test/zip64_support_test.rb                   |   15 +
 test/zipfilesystemtest.rb                    |  893 -----------
 test/ziptest.rb                              | 2075 --------------------------
 testAllRubies.sh                             |    4 -
 67 files changed, 3804 insertions(+), 3609 deletions(-)
 rename test/alltests.rb => .simplecov (53%)
 mode change 100755 => 100644
 create mode 100644 debian/patches/ignore-simplecov.diff
 create mode 100644 debian/patches/series
 create mode 100644 debian/ruby-tests.rake
 delete mode 100644 debian/ruby-tests.rb
 create mode 100644 lib/zip/extra_field/old_unix.rb
 delete mode 100644 test/.cvsignore
 create mode 100644 test/basic_zip_file_test.rb
 create mode 100644 test/central_directory_entry_test.rb
 create mode 100644 test/central_directory_test.rb
 delete mode 100644 test/data/.cvsignore
 create mode 100644 test/deflater_test.rb
 create mode 100644 test/entry_set_test.rb
 create mode 100644 test/entry_test.rb
 create mode 100644 test/extra_field_test.rb
 create mode 100644 test/file_extract_directory_test.rb
 create mode 100644 test/file_extract_test.rb
 create mode 100644 test/file_split_test.rb
 create mode 100644 test/file_test.rb
 create mode 100644 test/filesystem/dir_iterator_test.rb
 create mode 100644 test/filesystem/directory_test.rb
 create mode 100644 test/filesystem/file_mutating_test.rb
 create mode 100644 test/filesystem/file_nonmutating_test.rb
 create mode 100644 test/filesystem/file_stat_test.rb
 create mode 100644 test/inflater_test.rb
 create mode 100644 test/input_stream_test.rb
 create mode 100644 test/ioextras/abstract_input_stream_test.rb
 create mode 100644 test/ioextras/abstract_output_stream_test.rb
 create mode 100644 test/ioextras/fake_io_test.rb
 delete mode 100755 test/ioextrastest.rb
 create mode 100644 test/local_entry_test.rb
 create mode 100644 test/output_stream_test.rb
 create mode 100644 test/pass_thru_compressor_test.rb
 create mode 100644 test/pass_thru_decompressor_test.rb
 create mode 100644 test/settings_test.rb
 create mode 100644 test/test_helper.rb
 create mode 100644 test/unicode_file_names_and_comments.rb
 create mode 100644 test/zip64_support_test.rb
 delete mode 100755 test/zipfilesystemtest.rb
 delete mode 100755 test/ziptest.rb
 delete mode 100755 testAllRubies.sh

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-zip.git



More information about the Pkg-ruby-extras-commits mailing list