[DRE-commits] [ruby-bson] 01/06: Merge tag 'upstream/1.10.0'

Prach Pongpanich prach-guest at moszumanska.debian.org
Thu May 15 05:20:17 UTC 2014


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

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

commit 340aa9faef4b4b87de813dbf843fd1ca3faccf42
Merge: 2eef5ad 02a79b2
Author: Prach Pongpanich <prachpub at gmail.com>
Date:   Thu May 15 09:23:21 2014 +0700

    Merge tag 'upstream/1.10.0'
    
    Upstream version 1.10.0
    
    # gpg: Signature made Thu 15 May 2014 09:23:17 AM ICT using RSA key ID 23CE1C09
    # gpg: Good signature from "Prach Pongpanich <prachpub at gmail.com>"
    # gpg: WARNING: This key is not certified with a trusted signature!
    # gpg:          There is no indication that the signature belongs to the owner.
    # Primary key fingerprint: 0CA7 5D98 7B8E CF6E A944  3AD8 3909 1E81 23CE 1C09

 CHANGELOG.md                                     | 119 ----
 CONTRIBUTING.md                                  |  42 --
 NOTICE                                           |   2 -
 README.md                                        | 196 ------
 Rakefile                                         | 119 ----
 VERSION                                          |   1 +
 bin/b2json                                       |  63 ++
 bin/j2bson                                       |  64 ++
 bson.gemspec                                     |  34 +
 checksums.yaml.gz                                | Bin 270 -> 269 bytes
 checksums.yaml.gz.sig                            | Bin 256 -> 256 bytes
 data.tar.gz.sig                                  |   6 +-
 ext/bson/extconf.rb                              |   3 -
 ext/bson/native.c                                | 708 ---------------------
 lib/bson.rb                                      | 149 +++--
 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                            |  49 ++
 lib/bson/bson_ruby.rb                            | 645 +++++++++++++++++++
 lib/bson/byte_buffer.rb                          | 241 +++++++
 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/environment.rb                          |  36 --
 lib/bson/exceptions.rb                           |  37 ++
 lib/bson/false_class.rb                          |  61 --
 lib/bson/float.rb                                |  82 ---
 lib/bson/grow.rb                                 | 173 +++++
 lib/bson/hash.rb                                 |  84 ---
 lib/bson/int32.rb                                |  59 --
 lib/bson/int64.rb                                |  59 --
 lib/bson/integer.rb                              | 185 ------
 lib/bson/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                         | 197 ++++++
 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 | 174 +++++
 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 ++
 spec/bson_spec.rb => lib/bson/types/dbref.rb     |  38 +-
 lib/bson/types/min_max_keys.rb                   |  56 ++
 lib/bson/types/object_id.rb                      | 226 +++++++
 lib/bson/types/regex.rb                          | 116 ++++
 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                                     | 153 ++---
 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 -
 spec/spec_helper.rb                              |  32 -
 spec/support/shared_examples.rb                  | 102 ---
 92 files changed, 2436 insertions(+), 7315 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