sheets_v4 0.9.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,20 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module SheetsV4
4
- # Validate API Objects against the Google Discovery API
5
- #
6
- # @example
7
- # logger = Logger.new(STDOUT, :level => Logger::ERROR)
8
- # schema_name = 'batch_update_spreadsheet_request'
9
- # object = { 'requests' => [] }
10
- # SheetsV4::ApiObjectValidation::ValidateApiObject.new(logger:).call(schema_name:, object:)
11
- #
12
- # @api public
13
- #
14
- module ApiObjectValidation; end
15
- end
16
-
17
- require_relative 'api_object_validation/load_schemas'
18
- require_relative 'api_object_validation/resolve_schema_ref'
19
- require_relative 'api_object_validation/traverse_object_tree'
20
- require_relative 'api_object_validation/validate_api_object'