[DRE-commits] [ruby-msgpack] 01/05: Merge tag 'upstream/1.0.0'

Hleb Valoshka tsfgnu-guest at moszumanska.debian.org
Fri Jul 29 14:04:59 UTC 2016


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

tsfgnu-guest pushed a commit to branch master
in repository ruby-msgpack.

commit cc5d4fc497162d62ed22213b1a8ebcde7f2de4bd
Merge: 41370d2 0f17c23
Author: Hleb Valoshka <375gnu at gmail.com>
Date:   Fri Jul 29 15:50:54 2016 +0300

    Merge tag 'upstream/1.0.0'
    
    Upstream version 1.0.0

 .gitignore                                         |   1 +
 .rubocop.yml                                       |  33 +
 .travis.yml                                        |  12 +-
 ChangeLog                                          |  39 ++
 Dockerfile                                         |  55 --
 README.rdoc                                        |  74 ++-
 Rakefile                                           |  32 +-
 appveyor.yml                                       |  18 +
 bench/pack_symbols.rb                              |  28 +
 bench/run_symbols.sh                               |  26 +
 doclib/msgpack.rb                                  |  10 +
 doclib/msgpack/core_ext.rb                         |  40 +-
 doclib/msgpack/error.rb                            |   7 +-
 doclib/msgpack/extension_value.rb                  |   9 +
 doclib/msgpack/factory.rb                          |  68 ++
 doclib/msgpack/packer.rb                           |  50 ++
 doclib/msgpack/unpacker.rb                         |  41 +-
 ext/java/org/msgpack/jruby/Buffer.java             |   9 +-
 ext/java/org/msgpack/jruby/Decoder.java            | 107 +++-
 ext/java/org/msgpack/jruby/Encoder.java            | 118 +++-
 ext/java/org/msgpack/jruby/ExtensionRegistry.java  | 159 +++++
 ext/java/org/msgpack/jruby/ExtensionValue.java     | 115 ++--
 ext/java/org/msgpack/jruby/Factory.java            | 123 ++++
 ext/java/org/msgpack/jruby/MessagePackLibrary.java |  50 +-
 ext/java/org/msgpack/jruby/Packer.java             | 114 +++-
 ext/java/org/msgpack/jruby/Unpacker.java           | 161 ++++-
 ext/msgpack/buffer.c                               |  14 +-
 ext/msgpack/buffer_class.c                         |   6 +-
 ext/msgpack/buffer_class.h                         |   2 +-
 ext/msgpack/compat.h                               |  12 +
 ext/msgpack/core_ext.c                             |  30 +
 ext/msgpack/extconf.rb                             |   5 +-
 ext/msgpack/{rbinit.c => extension_value_class.c}  |  23 +-
 .../{packer_class.h => extension_value_class.h}    |  17 +-
 ext/msgpack/factory_class.c                        | 221 +++++++
 ext/msgpack/{buffer_class.h => factory_class.h}    |  19 +-
 ext/msgpack/packer.c                               |  25 +-
 ext/msgpack/packer.h                               |  80 ++-
 ext/msgpack/packer_class.c                         | 160 +++--
 ext/msgpack/packer_class.h                         |   6 +-
 ext/msgpack/packer_ext_registry.c                  |  79 +++
 ext/msgpack/packer_ext_registry.h                  |  98 +++
 ext/msgpack/rbinit.c                               |   4 +
 ext/msgpack/rmem.c                                 |  14 +-
 ext/msgpack/unpacker.c                             | 155 ++++-
 ext/msgpack/unpacker.h                             |  11 +
 ext/msgpack/unpacker_class.c                       | 171 +++--
 ext/msgpack/unpacker_class.h                       |   6 +-
 ext/msgpack/unpacker_ext_registry.c                |  62 ++
 ext/msgpack/unpacker_ext_registry.h                |  59 ++
 lib/msgpack.rb                                     |   5 +
 lib/msgpack/factory.rb                             |  60 ++
 lib/msgpack/packer.rb                              |  28 +
 lib/msgpack/symbol.rb                              |   9 +
 lib/msgpack/unpacker.rb                            |  28 +
 lib/msgpack/version.rb                             |   2 +-
 metadata.yml                                       | 228 -------
 msgpack.gemspec                                    |  13 +-
 spec/cruby/buffer_io_spec.rb                       |   5 +-
 spec/cruby/buffer_spec.rb                          |   4 +-
 spec/cruby/packer_spec.rb                          | 138 -----
 spec/cruby/unpacker_spec.rb                        | 235 -------
 spec/ext_value_spec.rb                             |  99 +++
 spec/exttypes.rb                                   |  51 ++
 spec/factory_spec.rb                               | 293 +++++++++
 spec/jruby/{msgpack => }/unpacker_spec.rb          | 166 +----
 spec/{jruby => }/msgpack_spec.rb                   |  13 +-
 spec/pack_spec.rb                                  |   6 -
 spec/packer_spec.rb                                | 393 ++++++++++++
 spec/spec_helper.rb                                |  13 +-
 spec/unpack_spec.rb                                |   5 +-
 spec/unpacker_spec.rb                              | 687 +++++++++++++++++++++
 72 files changed, 4103 insertions(+), 1156 deletions(-)

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



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