[DRE-commits] [ruby-psych] 01/18: Merge tag 'upstream/2.2.4'

Miguel Landaeta nomadium at moszumanska.debian.org
Wed Mar 15 21:43:40 UTC 2017


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

nomadium pushed a commit to branch master
in repository ruby-psych.

commit 175c2d36bb80a326b031457c904f987d52b72245
Merge: 8f2ebe9 a45bd39
Author: Miguel Landaeta <nomadium at debian.org>
Date:   Wed Mar 15 20:02:06 2017 +0000

    Merge tag 'upstream/2.2.4'
    
    Upstream version 2.2.4
    
    # gpg: Signature made Wed 15 Mar 2017 08:01:56 PM GMT
    # gpg:                using RSA key 0xAFB8E0FC9231CC6D
    # gpg: Good signature from "Miguel Landaeta <miguel at miguel.cc>" [full]
    # gpg:                 aka "Miguel Landaeta <nomadium at gmail.com>" [full]
    # gpg:                 aka "Miguel Landaeta (LDC) <miguel at ldc.usb.ve>" [full]
    # gpg:                 aka "Miguel Landaeta (Debian) <nomadium at debian.org>" [full]
    # Primary key fingerprint: 4CB7 FE1E 280E CC90 F29A  597E 6E60 8B63 7D89 67E9
    #      Subkey fingerprint: 1247 379C 15BC F26C 0EC4  6B61 AFB8 E0FC 9231 CC6D

 .autotest                               |  18 --
 .gitignore                              |  14 ++
 .travis.yml                             |  25 +-
 Gemfile                                 |   3 +
 Manifest.txt                            | 114 ---------
 Mavenfile                               |   7 +
 README.md                               |  73 ++++++
 README.rdoc                             |  71 ------
 Rakefile                                | 148 +++---------
 appveyor.yml                            |  18 ++
 bin/console                             |   7 +
 bin/setup                               |   6 +
 ext/java/PsychEmitter.java              | 347 ++++++++++++++++++++++++++++
 ext/java/PsychLibrary.java              |  93 ++++++++
 ext/java/PsychParser.java               | 398 ++++++++++++++++++++++++++++++++
 ext/java/PsychToRuby.java               |  79 +++++++
 ext/java/PsychYamlTree.java             |  55 +++++
 ext/psych/.gitignore                    |  11 +
 ext/psych/extconf.rb                    |   1 +
 ext/psych/psych.h                       |   3 -
 ext/psych/psych_emitter.c               |  28 +--
 ext/psych/psych_parser.c                |  29 ---
 ext/psych/psych_to_ruby.c               |   4 -
 ext/psych/yaml/api.c                    |  57 ++---
 ext/psych/yaml/config.h                 |  12 +-
 ext/psych/yaml/emitter.c                |  16 +-
 ext/psych/yaml/loader.c                 |  25 +-
 ext/psych/yaml/parser.c                 |  12 +-
 ext/psych/yaml/scanner.c                |  42 ++--
 ext/psych/yaml/yaml_private.h           |   4 +-
 lib/psych.rb                            |  24 +-
 lib/psych/class_loader.rb               |   1 +
 lib/psych/coder.rb                      |   1 +
 lib/psych/core_ext.rb                   |   1 +
 lib/psych/deprecated.rb                 |   1 +
 lib/psych/exception.rb                  |   1 +
 lib/psych/handler.rb                    |   1 +
 lib/psych/handlers/document_stream.rb   |   1 +
 lib/psych/handlers/recorder.rb          |   1 +
 lib/psych/json/ruby_events.rb           |   1 +
 lib/psych/json/stream.rb                |   1 +
 lib/psych/json/tree_builder.rb          |   1 +
 lib/psych/json/yaml_events.rb           |   1 +
 lib/psych/nodes.rb                      |   1 +
 lib/psych/nodes/alias.rb                |   1 +
 lib/psych/nodes/document.rb             |   1 +
 lib/psych/nodes/mapping.rb              |   1 +
 lib/psych/nodes/node.rb                 |   1 +
 lib/psych/nodes/scalar.rb               |   1 +
 lib/psych/nodes/sequence.rb             |   1 +
 lib/psych/nodes/stream.rb               |   1 +
 lib/psych/omap.rb                       |   1 +
 lib/psych/parser.rb                     |   1 +
 lib/psych/scalar_scanner.rb             |   3 +-
 lib/psych/set.rb                        |   1 +
 lib/psych/stream.rb                     |   1 +
 lib/psych/streaming.rb                  |   1 +
 lib/psych/syntax_error.rb               |   1 +
 lib/psych/tree_builder.rb               |   1 +
 lib/psych/versions.rb                   |   8 +-
 lib/psych/visitors.rb                   |   1 +
 lib/psych/visitors/depth_first.rb       |   1 +
 lib/psych/visitors/emitter.rb           |   1 +
 lib/psych/visitors/json_tree.rb         |   1 +
 lib/psych/visitors/to_ruby.rb           |   5 +-
 lib/psych/visitors/visitor.rb           |   1 +
 lib/psych/visitors/yaml_tree.rb         |   5 +-
 lib/psych/y.rb                          |   1 +
 lib/psych_jars.rb                       |   2 +-
 metadata.yml                            | 224 ------------------
 psych.gemspec                           |  41 ++++
 test/psych/handlers/test_recorder.rb    |   1 +
 test/psych/helper.rb                    |   1 +
 test/psych/json/test_stream.rb          |   1 +
 test/psych/nodes/test_enumerable.rb     |   1 +
 test/psych/test_alias_and_anchor.rb     |   1 +
 test/psych/test_array.rb                |   1 +
 test/psych/test_boolean.rb              |   1 +
 test/psych/test_class.rb                |   1 +
 test/psych/test_coder.rb                |   1 +
 test/psych/test_date_time.rb            |   1 +
 test/psych/test_deprecated.rb           |   1 +
 test/psych/test_document.rb             |   1 +
 test/psych/test_emitter.rb              |  19 ++
 test/psych/test_encoding.rb             |   1 +
 test/psych/test_exception.rb            |   1 +
 test/psych/test_hash.rb                 |   1 +
 test/psych/test_json_tree.rb            |   1 +
 test/psych/test_marshalable.rb          |  55 +++++
 test/psych/test_merge_keys.rb           |   1 +
 test/psych/test_nil.rb                  |   1 +
 test/psych/test_null.rb                 |   1 +
 test/psych/test_numeric.rb              |   1 +
 test/psych/test_object.rb               |   1 +
 test/psych/test_object_references.rb    |   1 +
 test/psych/test_omap.rb                 |   1 +
 test/psych/test_parser.rb               |   1 +
 test/psych/test_psych.rb                |   7 +
 test/psych/test_safe_load.rb            |   1 +
 test/psych/test_scalar.rb               |   1 +
 test/psych/test_scalar_scanner.rb       |   5 +
 test/psych/test_serialize_subclasses.rb |   1 +
 test/psych/test_set.rb                  |   1 +
 test/psych/test_stream.rb               |   1 +
 test/psych/test_string.rb               |   5 +
 test/psych/test_struct.rb               |   1 +
 test/psych/test_symbol.rb               |   1 +
 test/psych/test_tainted.rb              |   1 +
 test/psych/test_to_yaml_properties.rb   |   1 +
 test/psych/test_tree_builder.rb         |   1 +
 test/psych/test_yaml.rb                 |   1 +
 test/psych/test_yamldbm.rb              |   1 +
 test/psych/test_yamlstore.rb            |   1 +
 test/psych/visitors/test_depth_first.rb |   1 +
 test/psych/visitors/test_emitter.rb     |   1 +
 test/psych/visitors/test_to_ruby.rb     |   1 +
 test/psych/visitors/test_yaml_tree.rb   |   7 +
 117 files changed, 1470 insertions(+), 733 deletions(-)

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



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