[DRE-commits] [ruby-bson] 01/08: Merge tag 'upstream/2.2.1'

Cédric Boutillier boutil at moszumanska.debian.org
Wed Mar 12 12:04:37 UTC 2014


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

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

commit 5c05cbc27549ed31fdd769909e6b0976f59a42c5
Merge: ffa9203 d8c6ff8
Author: Cédric Boutillier <boutil at debian.org>
Date:   Wed Mar 12 11:16:20 2014 +0100

    Merge tag 'upstream/2.2.1'
    
    Upstream version 2.2.1
    
    # gpg: Signature faite le mer. 12 mars 2014 11:16:20 CET
    # gpg:                avec la clef RSA 0xDA4958F611E149E9
    # gpg: Bonne signature de « Cédric Boutillier <boutil at debian.org> »
    # gpg:                 alias « Cédric Boutillier <cedric.boutillier at gmail.com> »
    # gpg:                 alias « Cédric Boutillier <cedric.boutillier at upmc.fr> »
    # gpg:                 alias « Cédric Boutillier <cedric.boutillier at polytechnique.org> »
    # gpg: Attention : cette clef n'est pas certifiée avec une signature de confiance.
    # gpg:             Rien n'indique que la signature appartient à son propriétaire.
    # Empreinte de clef principale : 3041 4D81 DC28 290C 2568  6DE3 DA49 58F6 11E1 49E9

 CHANGELOG.md                                     | 119 ++++
 CONTRIBUTING.md                                  |  42 ++
 LICENSE                                          |   2 +-
 NOTICE                                           |   2 +
 README.md                                        | 196 ++++++
 Rakefile                                         | 119 ++++
 VERSION                                          |   1 -
 bin/b2json                                       |  63 --
 bin/j2bson                                       |  64 --
 bson.gemspec                                     |  34 -
 checksums.yaml.gz                                | Bin 267 -> 270 bytes
 checksums.yaml.gz.sig                            |   2 +-
 data.tar.gz.sig                                  |   6 +-
 ext/bson/extconf.rb                              |   3 +
 ext/bson/native.c                                | 708 +++++++++++++++++++++
 lib/bson.rb                                      | 148 ++---
 lib/bson/array.rb                                | 104 +++
 lib/bson/binary.rb                               | 193 ++++++
 lib/bson/boolean.rb                              |  48 ++
 lib/bson/bson_c.rb                               |  37 --
 lib/bson/bson_java.rb                            |  48 --
 lib/bson/bson_ruby.rb                            | 637 -------------------
 lib/bson/byte_buffer.rb                          | 238 -------
 lib/bson/code.rb                                 | 109 ++++
 lib/bson/code_with_scope.rb                      | 120 ++++
 lib/bson/date.rb                                 |  51 ++
 lib/bson/date_time.rb                            |  46 ++
 lib/bson/document.rb                             |  56 ++
 lib/bson/encodable.rb                            |  86 +++
 lib/bson/{types/dbref.rb => environment.rb}      |  36 +-
 lib/bson/exceptions.rb                           |  37 --
 lib/bson/false_class.rb                          |  61 ++
 lib/bson/float.rb                                |  82 +++
 lib/bson/hash.rb                                 |  84 +++
 lib/bson/int32.rb                                |  59 ++
 lib/bson/int64.rb                                |  59 ++
 lib/bson/integer.rb                              | 185 ++++++
 lib/bson/{types/dbref.rb => json.rb}             |  37 +-
 lib/bson/max_key.rb                              |  70 ++
 lib/bson/min_key.rb                              |  70 ++
 lib/bson/nil_class.rb                            |  70 ++
 lib/bson/object_id.rb                            | 395 ++++++++++++
 lib/bson/ordered_hash.rb                         | 192 ------
 lib/bson/regexp.rb                               | 124 ++++
 lib/bson/registry.rb                             |  70 ++
 lib/bson/specialized.rb                          |  74 +++
 lib/bson/string.rb                               | 203 ++++++
 lib/bson/support/hash_with_indifferent_access.rb | 164 -----
 lib/bson/symbol.rb                               |  87 +++
 lib/bson/time.rb                                 |  72 +++
 lib/bson/timestamp.rb                            | 113 ++++
 lib/bson/true_class.rb                           |  61 ++
 lib/bson/types/binary.rb                         |  52 --
 lib/bson/types/code.rb                           |  55 --
 lib/bson/types/min_max_keys.rb                   |  56 --
 lib/bson/types/object_id.rb                      | 229 -------
 lib/bson/types/timestamp.rb                      |  72 ---
 lib/bson/undefined.rb                            |  74 +++
 lib/bson/version.rb                              |  17 +
 metadata.gz.sig                                  | Bin 256 -> 256 bytes
 metadata.yml                                     | 176 +++--
 spec/bson/array_spec.rb                          |  58 ++
 spec/bson/binary_spec.rb                         | 118 ++++
 spec/bson/boolean_spec.rb                        |  48 ++
 spec/bson/code_spec.rb                           |  42 ++
 spec/bson/code_with_scope_spec.rb                |  97 +++
 spec/bson/date_spec.rb                           |  41 ++
 spec/bson/date_time_spec.rb                      |  39 ++
 spec/bson/document_spec.rb                       | 775 +++++++++++++++++++++++
 spec/bson/false_class_spec.rb                    |  28 +
 spec/bson/float_spec.rb                          |  29 +
 spec/bson/hash_spec.rb                           |  56 ++
 spec/bson/int32_spec.rb                          |  28 +
 spec/bson/int64_spec.rb                          |  28 +
 spec/bson/integer_spec.rb                        |  76 +++
 spec/bson/json_spec.rb                           |  53 ++
 spec/bson/max_key_spec.rb                        |  75 +++
 spec/bson/min_key_spec.rb                        |  75 +++
 spec/bson/nil_class_spec.rb                      |  29 +
 spec/bson/object_id_spec.rb                      | 524 +++++++++++++++
 spec/bson/regexp_spec.rb                         |  89 +++
 spec/bson/registry_spec.rb                       |  45 ++
 spec/bson/string_spec.rb                         | 292 +++++++++
 spec/bson/symbol_spec.rb                         |  55 ++
 spec/bson/time_spec.rb                           |  43 ++
 spec/bson/timestamp_spec.rb                      |  74 +++
 spec/bson/true_class_spec.rb                     |  28 +
 spec/bson/undefined_spec.rb                      |  29 +
 lib/bson/types/dbref.rb => spec/bson_spec.rb     |  40 +-
 spec/spec_helper.rb                              |  32 +
 spec/support/shared_examples.rb                  | 102 +++
 91 files changed, 7288 insertions(+), 2178 deletions(-)

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



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