[DRE-commits] [ruby-json-schema] 02/09: Merge tag 'upstream/2.6.1-1'

Sagar Ippalpalli isaagar-guest at moszumanska.debian.org
Sun Mar 6 11:12:46 UTC 2016


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

isaagar-guest pushed a commit to branch master
in repository ruby-json-schema.

commit 763ad5b7e8d97356aa580de8df15e0e47b7c587a
Merge: 14a12cf 5e84206
Author: isaagar <i.vikram15 at gmail.com>
Date:   Fri Mar 4 14:29:51 2016 +0530

    Merge tag 'upstream/2.6.1-1'
    
    Upstream version 2.6.1-1

 .gitignore                                         |   7 -
 .gitmodules                                        |   4 -
 .travis.yml                                        |  26 -
 CONTRIBUTING.md                                    |   7 -
 CONTRIBUTORS.md                                    |  34 --
 Gemfile                                            |   5 -
 README.textile => README.md                        | 297 ++++++----
 Rakefile                                           |  22 -
 VERSION.yml                                        |   3 -
 gemfiles/Gemfile.multi_json.x                      |   5 -
 gemfiles/Gemfile.uuidtools.x                       |   5 -
 gemfiles/Gemfile.yajl-ruby.x                       |   5 -
 json-schema.gemspec                                |  28 -
 lib/json-schema/attributes/formats/date.rb         |   3 +-
 lib/json-schema/attributes/formats/date_time.rb    |  14 +-
 lib/json-schema/attributes/formats/uri.rb          |   7 +-
 lib/json-schema/attributes/not.rb                  |   2 +-
 lib/json-schema/attributes/properties.rb           |   2 +-
 lib/json-schema/attributes/ref.rb                  |  31 +-
 lib/json-schema/errors/json_load_error.rb          |   6 +
 lib/json-schema/errors/schema_parse_error.rb       |   8 +
 lib/json-schema/errors/uri_error.rb                |   6 +
 lib/json-schema/schema.rb                          |   5 +-
 lib/json-schema/schema/reader.rb                   |  11 +-
 lib/json-schema/util/uri.rb                        |  64 +-
 lib/json-schema/validator.rb                       | 104 ++--
 lib/json-schema/validators/draft1.rb               |   8 +-
 lib/json-schema/validators/draft2.rb               |   8 +-
 lib/json-schema/validators/draft3.rb               |   8 +-
 lib/json-schema/validators/draft4.rb               |   2 +-
 lib/json-schema/validators/hyper-draft1.rb         |   2 +-
 lib/json-schema/validators/hyper-draft2.rb         |   2 +-
 lib/json-schema/validators/hyper-draft4.rb         |   2 +-
 metadata.yml                                       | 177 ++++++
 test/data/all_of_ref_data.json                     |   3 -
 test/data/any_of_ref_data.json                     |   7 -
 test/data/bad_data_1.json                          |   3 -
 test/data/good_data_1.json                         |   3 -
 test/data/one_of_ref_links_data.json               |   5 -
 test/schemas/address_microformat.json              |  18 -
 test/schemas/all_of_ref_base_schema.json           |   6 -
 test/schemas/all_of_ref_schema.json                |   7 -
 test/schemas/any_of_ref_jane_schema.json           |   4 -
 test/schemas/any_of_ref_jimmy_schema.json          |   4 -
 test/schemas/any_of_ref_john_schema.json           |   4 -
 test/schemas/any_of_ref_schema.json                |  15 -
 test/schemas/definition_schema.json                |  15 -
 ...and_additionalProperties-1-filename.schema.json |  34 --
 ...ends_and_additionalProperties-1-ref.schema.json |  34 --
 ...and_additionalProperties-2-filename.schema.json |  33 --
 ...ends_and_additionalProperties-2-ref.schema.json |  33 --
 test/schemas/good_schema_1.json                    |  10 -
 test/schemas/good_schema_2.json                    |  10 -
 test/schemas/good_schema_extends1.json             |  10 -
 test/schemas/good_schema_extends2.json             |  13 -
 test/schemas/inner.schema.json                     |  21 -
 test/schemas/one_of_ref_links_schema.json          |  16 -
 test/schemas/ref john with spaces schema.json      |  11 -
 test/schemas/relative_definition_schema.json       |   8 -
 test/schemas/self_link_schema.json                 |  17 -
 test/schemas/up_link_schema.json                   |  17 -
 test/support/array_validation.rb                   | 108 ----
 test/support/enum_validation.rb                    | 133 -----
 test/support/number_validation.rb                  |  93 ---
 test/support/object_validation.rb                  |  68 ---
 test/support/strict_validation.rb                  |  89 ---
 test/support/string_validation.rb                  | 154 -----
 test/support/type_validation.rb                    |  81 ---
 test/test_all_of_ref_schema.rb                     |  35 --
 test/test_any_of_ref_schema.rb                     |  35 --
 test/test_bad_schema_ref.rb                        |  39 --
 test/test_common_test_suite.rb                     |  66 ---
 test/test_custom_format.rb                         | 116 ----
 test/test_definition.rb                            |  15 -
 test/test_extended_schema.rb                       |  62 --
 test/test_extends_and_additionalProperties.rb      |  52 --
 test/test_files_v3.rb                              |  43 --
 test/test_fragment_resolution.rb                   |  30 -
 test/test_fragment_validation_with_ref.rb          |  34 --
 test/test_full_validation.rb                       | 208 -------
 test/test_helper.rb                                |  47 --
 test/test_initialize_data.rb                       | 118 ----
 test/test_jsonschema_draft1.rb                     | 141 -----
 test/test_jsonschema_draft2.rb                     | 113 ----
 test/test_jsonschema_draft3.rb                     | 450 --------------
 test/test_jsonschema_draft4.rb                     | 657 ---------------------
 test/test_list_option.rb                           |  21 -
 test/test_load_ref_schema.rb                       |  40 --
 test/test_merge_missing_values.rb                  |  45 --
 test/test_minitems.rb                              |  16 -
 test/test_one_of.rb                                |  85 ---
 test/test_ruby_schema.rb                           |  59 --
 test/test_schema_loader.rb                         |  74 ---
 test/test_schema_type_attribute.rb                 |  20 -
 test/test_schema_validation.rb                     | 185 ------
 test/test_stringify.rb                             |  48 --
 test/test_uri_related.rb                           |  67 ---
 test/test_validator.rb                             |  53 --
 98 files changed, 554 insertions(+), 4427 deletions(-)

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



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