graphql 1.7.6 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/generators/graphql/function_generator.rb +1 -1
- data/lib/generators/graphql/install_generator.rb +14 -8
- data/lib/generators/graphql/loader_generator.rb +1 -1
- data/lib/generators/graphql/mutation_generator.rb +6 -1
- data/lib/generators/graphql/templates/function.erb +2 -2
- data/lib/generators/graphql/templates/loader.erb +2 -2
- data/lib/generators/graphql/templates/schema.erb +1 -1
- data/lib/graphql/argument.rb +25 -19
- data/lib/graphql/backtrace/tracer.rb +16 -22
- data/lib/graphql/backtrace.rb +1 -1
- data/lib/graphql/backwards_compatibility.rb +2 -3
- data/lib/graphql/base_type.rb +31 -31
- data/lib/graphql/compatibility/query_parser_specification/parse_error_specification.rb +14 -0
- data/lib/graphql/compatibility/query_parser_specification.rb +117 -0
- data/lib/graphql/define/assign_object_field.rb +5 -12
- data/lib/graphql/deprecated_dsl.rb +42 -0
- data/lib/graphql/directive.rb +1 -0
- data/lib/graphql/enum_type.rb +3 -1
- data/lib/graphql/execution/execute.rb +21 -13
- data/lib/graphql/execution/instrumentation.rb +82 -0
- data/lib/graphql/execution/lazy/lazy_method_map.rb +1 -1
- data/lib/graphql/execution/lazy/resolve.rb +1 -3
- data/lib/graphql/execution/multiplex.rb +12 -29
- data/lib/graphql/execution.rb +1 -0
- data/lib/graphql/field.rb +21 -4
- data/lib/graphql/function.rb +14 -0
- data/lib/graphql/input_object_type.rb +3 -1
- data/lib/graphql/interface_type.rb +5 -3
- data/lib/graphql/internal_representation/node.rb +26 -14
- data/lib/graphql/internal_representation/visit.rb +3 -6
- data/lib/graphql/introspection/base_object.rb +16 -0
- data/lib/graphql/introspection/directive_location_enum.rb +11 -7
- data/lib/graphql/introspection/directive_type.rb +23 -16
- data/lib/graphql/introspection/dynamic_fields.rb +11 -0
- data/lib/graphql/introspection/entry_points.rb +29 -0
- data/lib/graphql/introspection/enum_value_type.rb +16 -11
- data/lib/graphql/introspection/field_type.rb +21 -12
- data/lib/graphql/introspection/input_value_type.rb +26 -23
- data/lib/graphql/introspection/schema_field.rb +7 -2
- data/lib/graphql/introspection/schema_type.rb +36 -22
- data/lib/graphql/introspection/type_by_name_field.rb +10 -2
- data/lib/graphql/introspection/type_kind_enum.rb +10 -6
- data/lib/graphql/introspection/type_type.rb +85 -23
- data/lib/graphql/introspection/typename_field.rb +1 -0
- data/lib/graphql/introspection.rb +3 -10
- data/lib/graphql/language/block_string.rb +47 -0
- data/lib/graphql/language/document_from_schema_definition.rb +280 -0
- data/lib/graphql/language/generation.rb +3 -182
- data/lib/graphql/language/lexer.rb +144 -69
- data/lib/graphql/language/lexer.rl +15 -4
- data/lib/graphql/language/nodes.rb +141 -78
- data/lib/graphql/language/parser.rb +677 -630
- data/lib/graphql/language/parser.y +18 -12
- data/lib/graphql/language/printer.rb +361 -0
- data/lib/graphql/language/token.rb +10 -3
- data/lib/graphql/language.rb +3 -0
- data/lib/graphql/non_null_type.rb +1 -1
- data/lib/graphql/object_type.rb +1 -6
- data/lib/graphql/query/arguments.rb +63 -32
- data/lib/graphql/query/context.rb +32 -2
- data/lib/graphql/query/literal_input.rb +4 -1
- data/lib/graphql/query/null_context.rb +1 -1
- data/lib/graphql/query/result.rb +1 -1
- data/lib/graphql/query/variables.rb +21 -3
- data/lib/graphql/query.rb +19 -6
- data/lib/graphql/railtie.rb +109 -0
- data/lib/graphql/relay/connection_resolve.rb +3 -0
- data/lib/graphql/relay/connection_type.rb +5 -3
- data/lib/graphql/relay/edge_type.rb +2 -1
- data/lib/graphql/relay/global_id_resolve.rb +5 -1
- data/lib/graphql/relay/mongo_relation_connection.rb +40 -0
- data/lib/graphql/relay/mutation/instrumentation.rb +1 -1
- data/lib/graphql/relay/mutation/resolve.rb +5 -1
- data/lib/graphql/relay/relation_connection.rb +14 -19
- data/lib/graphql/relay/type_extensions.rb +30 -0
- data/lib/graphql/relay.rb +2 -0
- data/lib/graphql/scalar_type.rb +14 -2
- data/lib/graphql/schema/argument.rb +92 -0
- data/lib/graphql/schema/build_from_definition.rb +64 -18
- data/lib/graphql/schema/enum.rb +85 -0
- data/lib/graphql/schema/enum_value.rb +74 -0
- data/lib/graphql/schema/field.rb +372 -0
- data/lib/graphql/schema/finder.rb +153 -0
- data/lib/graphql/schema/input_object.rb +87 -0
- data/lib/graphql/schema/interface.rb +105 -0
- data/lib/graphql/schema/introspection_system.rb +93 -0
- data/lib/graphql/schema/late_bound_type.rb +32 -0
- data/lib/graphql/schema/list.rb +32 -0
- data/lib/graphql/schema/loader.rb +2 -2
- data/lib/graphql/schema/member/accepts_definition.rb +152 -0
- data/lib/graphql/schema/member/base_dsl_methods.rb +100 -0
- data/lib/graphql/schema/member/build_type.rb +137 -0
- data/lib/graphql/schema/member/cached_graphql_definition.rb +26 -0
- data/lib/graphql/schema/member/graphql_type_names.rb +21 -0
- data/lib/graphql/schema/member/has_arguments.rb +50 -0
- data/lib/graphql/schema/member/has_fields.rb +130 -0
- data/lib/graphql/schema/member/instrumentation.rb +115 -0
- data/lib/graphql/schema/member/type_system_helpers.rb +34 -0
- data/lib/graphql/schema/member.rb +28 -0
- data/lib/graphql/schema/middleware_chain.rb +5 -1
- data/lib/graphql/schema/mutation.rb +138 -0
- data/lib/graphql/schema/non_null.rb +38 -0
- data/lib/graphql/schema/object.rb +81 -0
- data/lib/graphql/schema/printer.rb +33 -266
- data/lib/graphql/schema/relay_classic_mutation.rb +87 -0
- data/lib/graphql/schema/rescue_middleware.rb +8 -7
- data/lib/graphql/schema/resolver.rb +122 -0
- data/lib/graphql/schema/scalar.rb +35 -0
- data/lib/graphql/schema/traversal.rb +102 -22
- data/lib/graphql/schema/union.rb +36 -0
- data/lib/graphql/schema/validation.rb +3 -2
- data/lib/graphql/schema.rb +381 -12
- data/lib/graphql/static_validation/definition_dependencies.rb +1 -1
- data/lib/graphql/static_validation/literal_validator.rb +16 -4
- data/lib/graphql/static_validation/rules/fields_are_defined_on_type.rb +6 -6
- data/lib/graphql/static_validation/rules/fields_have_appropriate_selections.rb +5 -1
- data/lib/graphql/static_validation/rules/fields_will_merge.rb +15 -8
- data/lib/graphql/static_validation/rules/variables_are_used_and_defined.rb +11 -1
- data/lib/graphql/static_validation/validation_context.rb +1 -1
- data/lib/graphql/subscriptions/action_cable_subscriptions.rb +7 -5
- data/lib/graphql/subscriptions/instrumentation.rb +5 -1
- data/lib/graphql/subscriptions/serialize.rb +2 -0
- data/lib/graphql/subscriptions.rb +90 -16
- data/lib/graphql/tracing/data_dog_tracing.rb +49 -0
- data/lib/graphql/tracing/new_relic_tracing.rb +26 -0
- data/lib/graphql/tracing/platform_tracing.rb +20 -7
- data/lib/graphql/tracing/scout_tracing.rb +2 -2
- data/lib/graphql/tracing.rb +1 -0
- data/lib/graphql/unresolved_type_error.rb +3 -2
- data/lib/graphql/upgrader/member.rb +894 -0
- data/lib/graphql/upgrader/schema.rb +37 -0
- data/lib/graphql/version.rb +1 -1
- data/lib/graphql.rb +5 -25
- data/readme.md +2 -2
- data/spec/dummy/app/channels/graphql_channel.rb +23 -2
- data/spec/dummy/log/development.log +239 -0
- data/spec/dummy/log/test.log +410 -0
- data/spec/dummy/test/system/action_cable_subscription_test.rb +4 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-x/-xYZjAnuuzgR79fcznLTQtSdh6AARxu8FcQ_J6p7L3U.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/13/13HiV12xyoQvT-1L39ZzLwMZxjyaGMiENmfw7f-QTIc.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3W/3Wtf5pCWdqq0AB-iB0Y9uUNrTkruRxIEf1XFn_BETU0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5i/5iguGafb4hOn8262Kn8Q37ogNN9MxxQKGKNzHAzUcvI.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8m/8mj2T6yy847Mc2Z7k3Xzh8O91hhVJt3NrPe8ASNDlIA.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/DT/DTQyMpr4ABZYQetsdRJ5A7S4jf1r3ie4FGOR7GZBNSs.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Dq/DqJ5_yJPrP5iLlOQyTQsjAVI5FE5LCVDkED0f7GgsSo.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/F8/F8MUNRzORGFgr329fNM0xLaoWCXdv3BIalT7dsvLfjs.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KB/KB07ZaKNC5uXJ7TjLi-WqnY6g7dq8wWp_8N3HNjBNxg.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Rw/RwDuCV-XpnCtjNkvhpJfBuxXMk0b5AD3L9eR6M-wcy0.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/UL/ULdjhhb0bRuqmaG7XSZlFYzGYCXTDnqZuJBTWRlzqgw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Up/UpPNgh0yYoUsyMDh5zWqe_U6qJIyTC6-dxMMAs1vvlM.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wg/Wguh-szFGTI1gaL6npYwPekMXflugRei7F_mOyRucXg.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/X-/X-khLYMA9mqFRPg3zAi86mREDxpKl4bdKYp3uF6WHos.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/bi/BIkdhfxsezxM4q-HZ4oCNTq97WEJTigcq0tpX2cDvbY.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ff/FfxmA4CMHQZT7exx0G7NS1Wpcnny0vzp-Jhc2H36bp8.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gE/gEiiG4GZNy_djEjK2pHm_NgA-gyhLZhdQvo0Yt96GqE.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gn/gnA9ZSqpjccNL2m8pe_jBvY6SinXlCzXDWyop83Od8s.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lO/lOAan3cMwCE_Hli6gsDML88xFNfn0nxPmvrSkW7eEOw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/m1/M1pv8MJEPLXGLvS8QxVh3DSO9cI4mRt5FHFWdrvUj6o.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/m7/m77qH7ZqH0_0SmwJbiKGDd-aLau1Dav847DC6ge46zY.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sj/sjRjnjRB37lH2vrgtkdJ8Cz84__IJ978IuKTM7HcztI.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/um/um1JrirR4hJhK-1rE-HywlyCi5ibgxHVrReiujZBWJM.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/v4/v4fwVytD7ITcE0_GDbslZEYud8a5Okm85fV1o7SDl6g.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/v_/v_0PAQt0iipQjFP5zjgkkk9Stnpf4VzvnMv67d1Keuw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wd/wdT9U4MKxe1PyqNjVuCKMpCl3dxGCIRJIlwUTfh2DQU.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xI/xIaxut_fEIhKBDqljTNwYaADK9kj3gG0ESrfHs-5_og.cache +3 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/y0/y0SJOqIx2fn1SKqOkAihsQow0trRJrSIyAswufVuoA8.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zg/zgpzeaX-KZErHyGJ1aBH3ZusweNXMneVZule88XsIJI.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zy/zYFltDy-8VC-uKq2BVEiJJyYXNFvVzAKuMlR3ZIYZsk.cache +0 -0
- data/spec/dummy/tmp/screenshots/failures_test_it_handles_subscriptions.png +0 -0
- data/spec/fixtures/upgrader/account.original.rb +19 -0
- data/spec/fixtures/upgrader/account.transformed.rb +20 -0
- data/spec/fixtures/upgrader/blame_range.original.rb +43 -0
- data/spec/fixtures/upgrader/blame_range.transformed.rb +30 -0
- data/spec/fixtures/upgrader/date_time.original.rb +24 -0
- data/spec/fixtures/upgrader/date_time.transformed.rb +23 -0
- data/spec/fixtures/upgrader/delete_project.original.rb +28 -0
- data/spec/fixtures/upgrader/delete_project.transformed.rb +27 -0
- data/spec/fixtures/upgrader/gist_order_field.original.rb +14 -0
- data/spec/fixtures/upgrader/gist_order_field.transformed.rb +13 -0
- data/spec/fixtures/upgrader/increment_count.original.rb +59 -0
- data/spec/fixtures/upgrader/increment_count.transformed.rb +50 -0
- data/spec/fixtures/upgrader/photo.original.rb +10 -0
- data/spec/fixtures/upgrader/photo.transformed.rb +12 -0
- data/spec/fixtures/upgrader/release_order.original.rb +15 -0
- data/spec/fixtures/upgrader/release_order.transformed.rb +14 -0
- data/spec/fixtures/upgrader/starrable.original.rb +49 -0
- data/spec/fixtures/upgrader/starrable.transformed.rb +46 -0
- data/spec/fixtures/upgrader/subscribable.original.rb +55 -0
- data/spec/fixtures/upgrader/subscribable.transformed.rb +51 -0
- data/spec/fixtures/upgrader/type_x.original.rb +65 -0
- data/spec/fixtures/upgrader/type_x.transformed.rb +56 -0
- data/spec/generators/graphql/function_generator_spec.rb +26 -0
- data/spec/generators/graphql/install_generator_spec.rb +1 -1
- data/spec/generators/graphql/loader_generator_spec.rb +24 -0
- data/spec/graphql/analysis/max_query_complexity_spec.rb +3 -3
- data/spec/graphql/analysis/max_query_depth_spec.rb +3 -3
- data/spec/graphql/argument_spec.rb +21 -0
- data/spec/graphql/backtrace_spec.rb +10 -0
- data/spec/graphql/base_type_spec.rb +42 -0
- data/spec/graphql/boolean_type_spec.rb +3 -3
- data/spec/graphql/directive_spec.rb +3 -1
- data/spec/graphql/enum_type_spec.rb +18 -5
- data/spec/graphql/execution/execute_spec.rb +4 -4
- data/spec/graphql/execution/instrumentation_spec.rb +165 -0
- data/spec/graphql/execution/multiplex_spec.rb +2 -2
- data/spec/graphql/execution_error_spec.rb +18 -0
- data/spec/graphql/float_type_spec.rb +2 -2
- data/spec/graphql/id_type_spec.rb +1 -1
- data/spec/graphql/input_object_type_spec.rb +15 -2
- data/spec/graphql/int_type_spec.rb +2 -2
- data/spec/graphql/interface_type_spec.rb +12 -0
- data/spec/graphql/internal_representation/rewrite_spec.rb +2 -2
- data/spec/graphql/introspection/schema_type_spec.rb +2 -0
- data/spec/graphql/language/block_string_spec.rb +70 -0
- data/spec/graphql/language/document_from_schema_definition_spec.rb +770 -0
- data/spec/graphql/language/generation_spec.rb +21 -186
- data/spec/graphql/language/lexer_spec.rb +21 -1
- data/spec/graphql/language/nodes_spec.rb +21 -12
- data/spec/graphql/language/parser_spec.rb +1 -1
- data/spec/graphql/language/printer_spec.rb +203 -0
- data/spec/graphql/object_type_spec.rb +22 -0
- data/spec/graphql/query/arguments_spec.rb +25 -15
- data/spec/graphql/query/context_spec.rb +18 -0
- data/spec/graphql/query/executor_spec.rb +2 -1
- data/spec/graphql/query/serial_execution/value_resolution_spec.rb +2 -8
- data/spec/graphql/query/variables_spec.rb +42 -1
- data/spec/graphql/query_spec.rb +31 -5
- data/spec/graphql/rake_task_spec.rb +3 -1
- data/spec/graphql/relay/base_connection_spec.rb +1 -1
- data/spec/graphql/relay/connection_instrumentation_spec.rb +2 -2
- data/spec/graphql/relay/connection_resolve_spec.rb +1 -1
- data/spec/graphql/relay/connection_type_spec.rb +1 -1
- data/spec/graphql/relay/mongo_relation_connection_spec.rb +474 -0
- data/spec/graphql/relay/mutation_spec.rb +9 -7
- data/spec/graphql/relay/range_add_spec.rb +5 -1
- data/spec/graphql/relay/relation_connection_spec.rb +65 -1
- data/spec/graphql/schema/argument_spec.rb +87 -0
- data/spec/graphql/schema/build_from_definition_spec.rb +89 -5
- data/spec/graphql/schema/enum_spec.rb +74 -0
- data/spec/graphql/schema/field_spec.rb +225 -0
- data/spec/graphql/schema/finder_spec.rb +135 -0
- data/spec/graphql/schema/input_object_spec.rb +111 -0
- data/spec/graphql/schema/instrumentation_spec.rb +40 -0
- data/spec/graphql/schema/interface_spec.rb +185 -0
- data/spec/graphql/schema/introspection_system_spec.rb +39 -0
- data/spec/graphql/schema/member/accepts_definition_spec.rb +111 -0
- data/spec/graphql/schema/member/build_type_spec.rb +17 -0
- data/spec/graphql/schema/member/has_fields_spec.rb +129 -0
- data/spec/graphql/schema/member/type_system_helpers_spec.rb +63 -0
- data/spec/graphql/schema/mutation_spec.rb +148 -0
- data/spec/graphql/schema/object_spec.rb +175 -0
- data/spec/graphql/schema/printer_spec.rb +111 -15
- data/spec/graphql/schema/relay_classic_mutation_spec.rb +38 -0
- data/spec/graphql/schema/rescue_middleware_spec.rb +11 -0
- data/spec/graphql/schema/resolver_spec.rb +131 -0
- data/spec/graphql/schema/scalar_spec.rb +95 -0
- data/spec/graphql/schema/traversal_spec.rb +31 -0
- data/spec/graphql/schema/union_spec.rb +65 -0
- data/spec/graphql/schema/validation_spec.rb +1 -1
- data/spec/graphql/schema/warden_spec.rb +11 -11
- data/spec/graphql/schema_spec.rb +55 -12
- data/spec/graphql/static_validation/rules/fields_have_appropriate_selections_spec.rb +10 -2
- data/spec/graphql/static_validation/rules/fields_will_merge_spec.rb +2 -2
- data/spec/graphql/string_type_spec.rb +3 -3
- data/spec/graphql/subscriptions_spec.rb +273 -184
- data/spec/graphql/tracing/active_support_notifications_tracing_spec.rb +1 -1
- data/spec/graphql/tracing/new_relic_tracing_spec.rb +47 -0
- data/spec/graphql/tracing/platform_tracing_spec.rb +60 -1
- data/spec/graphql/union_type_spec.rb +1 -1
- data/spec/graphql/upgrader/member_spec.rb +516 -0
- data/spec/graphql/upgrader/schema_spec.rb +82 -0
- data/spec/spec_helper.rb +8 -0
- data/spec/support/dummy/schema.rb +53 -24
- data/spec/support/jazz.rb +544 -0
- data/spec/support/lazy_helpers.rb +21 -23
- data/spec/support/new_relic.rb +24 -0
- data/spec/support/star_trek/data.rb +109 -0
- data/spec/support/star_trek/schema.rb +388 -0
- data/spec/support/star_wars/data.rb +6 -7
- data/spec/support/star_wars/schema.rb +127 -171
- metadata +233 -11
- data/lib/graphql/introspection/arguments_field.rb +0 -7
- data/lib/graphql/introspection/enum_values_field.rb +0 -18
- data/lib/graphql/introspection/fields_field.rb +0 -13
- data/lib/graphql/introspection/input_fields_field.rb +0 -12
- data/lib/graphql/introspection/interfaces_field.rb +0 -11
- data/lib/graphql/introspection/of_type_field.rb +0 -6
- data/lib/graphql/introspection/possible_types_field.rb +0 -11
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: graphql
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert Mosolgo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-05-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: benchmark-ips
|
@@ -136,6 +136,20 @@ dependencies:
|
|
136
136
|
- - "~>"
|
137
137
|
- !ruby/object:Gem::Version
|
138
138
|
version: 3.0.0
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: memory_profiler
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
139
153
|
- !ruby/object:Gem::Dependency
|
140
154
|
name: minitest
|
141
155
|
requirement: !ruby/object:Gem::Requirement
|
@@ -248,6 +262,20 @@ dependencies:
|
|
248
262
|
- - ">="
|
249
263
|
- !ruby/object:Gem::Version
|
250
264
|
version: '0'
|
265
|
+
- !ruby/object:Gem::Dependency
|
266
|
+
name: parser
|
267
|
+
requirement: !ruby/object:Gem::Requirement
|
268
|
+
requirements:
|
269
|
+
- - ">="
|
270
|
+
- !ruby/object:Gem::Version
|
271
|
+
version: '0'
|
272
|
+
type: :development
|
273
|
+
prerelease: false
|
274
|
+
version_requirements: !ruby/object:Gem::Requirement
|
275
|
+
requirements:
|
276
|
+
- - ">="
|
277
|
+
- !ruby/object:Gem::Version
|
278
|
+
version: '0'
|
251
279
|
- !ruby/object:Gem::Dependency
|
252
280
|
name: jekyll
|
253
281
|
requirement: !ruby/object:Gem::Requirement
|
@@ -362,6 +390,7 @@ files:
|
|
362
390
|
- lib/graphql/define/no_definition_error.rb
|
363
391
|
- lib/graphql/define/non_null_with_bang.rb
|
364
392
|
- lib/graphql/define/type_definer.rb
|
393
|
+
- lib/graphql/deprecated_dsl.rb
|
365
394
|
- lib/graphql/directive.rb
|
366
395
|
- lib/graphql/directive/deprecated_directive.rb
|
367
396
|
- lib/graphql/directive/include_directive.rb
|
@@ -371,6 +400,7 @@ files:
|
|
371
400
|
- lib/graphql/execution/directive_checks.rb
|
372
401
|
- lib/graphql/execution/execute.rb
|
373
402
|
- lib/graphql/execution/flatten.rb
|
403
|
+
- lib/graphql/execution/instrumentation.rb
|
374
404
|
- lib/graphql/execution/lazy.rb
|
375
405
|
- lib/graphql/execution/lazy/lazy_method_map.rb
|
376
406
|
- lib/graphql/execution/lazy/resolve.rb
|
@@ -394,19 +424,15 @@ files:
|
|
394
424
|
- lib/graphql/internal_representation/scope.rb
|
395
425
|
- lib/graphql/internal_representation/visit.rb
|
396
426
|
- lib/graphql/introspection.rb
|
397
|
-
- lib/graphql/introspection/
|
427
|
+
- lib/graphql/introspection/base_object.rb
|
398
428
|
- lib/graphql/introspection/directive_location_enum.rb
|
399
429
|
- lib/graphql/introspection/directive_type.rb
|
430
|
+
- lib/graphql/introspection/dynamic_fields.rb
|
431
|
+
- lib/graphql/introspection/entry_points.rb
|
400
432
|
- lib/graphql/introspection/enum_value_type.rb
|
401
|
-
- lib/graphql/introspection/enum_values_field.rb
|
402
433
|
- lib/graphql/introspection/field_type.rb
|
403
|
-
- lib/graphql/introspection/fields_field.rb
|
404
|
-
- lib/graphql/introspection/input_fields_field.rb
|
405
434
|
- lib/graphql/introspection/input_value_type.rb
|
406
|
-
- lib/graphql/introspection/interfaces_field.rb
|
407
435
|
- lib/graphql/introspection/introspection_query.rb
|
408
|
-
- lib/graphql/introspection/of_type_field.rb
|
409
|
-
- lib/graphql/introspection/possible_types_field.rb
|
410
436
|
- lib/graphql/introspection/schema_field.rb
|
411
437
|
- lib/graphql/introspection/schema_type.rb
|
412
438
|
- lib/graphql/introspection/type_by_name_field.rb
|
@@ -416,14 +442,17 @@ files:
|
|
416
442
|
- lib/graphql/invalid_name_error.rb
|
417
443
|
- lib/graphql/invalid_null_error.rb
|
418
444
|
- lib/graphql/language.rb
|
445
|
+
- lib/graphql/language/block_string.rb
|
419
446
|
- lib/graphql/language/comments.rb
|
420
447
|
- lib/graphql/language/definition_slice.rb
|
448
|
+
- lib/graphql/language/document_from_schema_definition.rb
|
421
449
|
- lib/graphql/language/generation.rb
|
422
450
|
- lib/graphql/language/lexer.rb
|
423
451
|
- lib/graphql/language/lexer.rl
|
424
452
|
- lib/graphql/language/nodes.rb
|
425
453
|
- lib/graphql/language/parser.rb
|
426
454
|
- lib/graphql/language/parser.y
|
455
|
+
- lib/graphql/language/printer.rb
|
427
456
|
- lib/graphql/language/token.rb
|
428
457
|
- lib/graphql/language/visitor.rb
|
429
458
|
- lib/graphql/list_type.rb
|
@@ -448,6 +477,7 @@ files:
|
|
448
477
|
- lib/graphql/query/validation_pipeline.rb
|
449
478
|
- lib/graphql/query/variable_validation_error.rb
|
450
479
|
- lib/graphql/query/variables.rb
|
480
|
+
- lib/graphql/railtie.rb
|
451
481
|
- lib/graphql/rake_task.rb
|
452
482
|
- lib/graphql/rake_task/validate.rb
|
453
483
|
- lib/graphql/relay.rb
|
@@ -460,6 +490,7 @@ files:
|
|
460
490
|
- lib/graphql/relay/edge_type.rb
|
461
491
|
- lib/graphql/relay/edges_instrumentation.rb
|
462
492
|
- lib/graphql/relay/global_id_resolve.rb
|
493
|
+
- lib/graphql/relay/mongo_relation_connection.rb
|
463
494
|
- lib/graphql/relay/mutation.rb
|
464
495
|
- lib/graphql/relay/mutation/instrumentation.rb
|
465
496
|
- lib/graphql/relay/mutation/resolve.rb
|
@@ -468,9 +499,11 @@ files:
|
|
468
499
|
- lib/graphql/relay/page_info.rb
|
469
500
|
- lib/graphql/relay/range_add.rb
|
470
501
|
- lib/graphql/relay/relation_connection.rb
|
502
|
+
- lib/graphql/relay/type_extensions.rb
|
471
503
|
- lib/graphql/runtime_type_error.rb
|
472
504
|
- lib/graphql/scalar_type.rb
|
473
505
|
- lib/graphql/schema.rb
|
506
|
+
- lib/graphql/schema/argument.rb
|
474
507
|
- lib/graphql/schema/base_64_encoder.rb
|
475
508
|
- lib/graphql/schema/build_from_definition.rb
|
476
509
|
- lib/graphql/schema/build_from_definition/resolve_map.rb
|
@@ -478,16 +511,42 @@ files:
|
|
478
511
|
- lib/graphql/schema/catchall_middleware.rb
|
479
512
|
- lib/graphql/schema/default_parse_error.rb
|
480
513
|
- lib/graphql/schema/default_type_error.rb
|
514
|
+
- lib/graphql/schema/enum.rb
|
515
|
+
- lib/graphql/schema/enum_value.rb
|
516
|
+
- lib/graphql/schema/field.rb
|
517
|
+
- lib/graphql/schema/finder.rb
|
518
|
+
- lib/graphql/schema/input_object.rb
|
519
|
+
- lib/graphql/schema/interface.rb
|
520
|
+
- lib/graphql/schema/introspection_system.rb
|
481
521
|
- lib/graphql/schema/invalid_type_error.rb
|
522
|
+
- lib/graphql/schema/late_bound_type.rb
|
523
|
+
- lib/graphql/schema/list.rb
|
482
524
|
- lib/graphql/schema/loader.rb
|
525
|
+
- lib/graphql/schema/member.rb
|
526
|
+
- lib/graphql/schema/member/accepts_definition.rb
|
527
|
+
- lib/graphql/schema/member/base_dsl_methods.rb
|
528
|
+
- lib/graphql/schema/member/build_type.rb
|
529
|
+
- lib/graphql/schema/member/cached_graphql_definition.rb
|
530
|
+
- lib/graphql/schema/member/graphql_type_names.rb
|
531
|
+
- lib/graphql/schema/member/has_arguments.rb
|
532
|
+
- lib/graphql/schema/member/has_fields.rb
|
533
|
+
- lib/graphql/schema/member/instrumentation.rb
|
534
|
+
- lib/graphql/schema/member/type_system_helpers.rb
|
483
535
|
- lib/graphql/schema/middleware_chain.rb
|
536
|
+
- lib/graphql/schema/mutation.rb
|
537
|
+
- lib/graphql/schema/non_null.rb
|
484
538
|
- lib/graphql/schema/null_mask.rb
|
539
|
+
- lib/graphql/schema/object.rb
|
485
540
|
- lib/graphql/schema/possible_types.rb
|
486
541
|
- lib/graphql/schema/printer.rb
|
542
|
+
- lib/graphql/schema/relay_classic_mutation.rb
|
487
543
|
- lib/graphql/schema/rescue_middleware.rb
|
544
|
+
- lib/graphql/schema/resolver.rb
|
545
|
+
- lib/graphql/schema/scalar.rb
|
488
546
|
- lib/graphql/schema/timeout_middleware.rb
|
489
547
|
- lib/graphql/schema/traversal.rb
|
490
548
|
- lib/graphql/schema/type_expression.rb
|
549
|
+
- lib/graphql/schema/union.rb
|
491
550
|
- lib/graphql/schema/unique_within_type.rb
|
492
551
|
- lib/graphql/schema/validation.rb
|
493
552
|
- lib/graphql/schema/warden.rb
|
@@ -535,6 +594,7 @@ files:
|
|
535
594
|
- lib/graphql/tracing.rb
|
536
595
|
- lib/graphql/tracing/active_support_notifications_tracing.rb
|
537
596
|
- lib/graphql/tracing/appsignal_tracing.rb
|
597
|
+
- lib/graphql/tracing/data_dog_tracing.rb
|
538
598
|
- lib/graphql/tracing/new_relic_tracing.rb
|
539
599
|
- lib/graphql/tracing/platform_tracing.rb
|
540
600
|
- lib/graphql/tracing/scout_tracing.rb
|
@@ -542,6 +602,8 @@ files:
|
|
542
602
|
- lib/graphql/type_kinds.rb
|
543
603
|
- lib/graphql/union_type.rb
|
544
604
|
- lib/graphql/unresolved_type_error.rb
|
605
|
+
- lib/graphql/upgrader/member.rb
|
606
|
+
- lib/graphql/upgrader/schema.rb
|
545
607
|
- lib/graphql/version.rb
|
546
608
|
- readme.md
|
547
609
|
- spec/dummy/Gemfile
|
@@ -599,8 +661,10 @@ files:
|
|
599
661
|
- spec/dummy/test/test_helper.rb
|
600
662
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/-5/-5OWGoO21F6_WNuECrXgkwH7NcKlWSSe2GjVanwsmUk.cache
|
601
663
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/-T/-TNJ0-j8HjZCYUE7EDQlhfGu64B8guOUPkXYO6HFhus.cache
|
664
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/-x/-xYZjAnuuzgR79fcznLTQtSdh6AARxu8FcQ_J6p7L3U.cache
|
602
665
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/09/09tM9-9HC9J7np7PawoxLz0YZYB_jmwdMFL4N4WBJdM.cache
|
603
666
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/0H/0HR_baZ3Owzw1Gx5epPCDhsl0UXWGh73zDkQu08IHuc.cache
|
667
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/13/13HiV12xyoQvT-1L39ZzLwMZxjyaGMiENmfw7f-QTIc.cache
|
604
668
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/1I/1IbYhe7oTUZvWCe0pIMBMp5bLq5pCuxuxlgnQV1TAno.cache
|
605
669
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/1I/1i4n3ptJre3b2zbA9AvgzE-ThTU_1mqSX3AlMtS_Qxk.cache
|
606
670
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/1L/1LQJg_vkfK3o2UCvJGQKuGjXydCfw7GerrpJCGiKw5k.cache
|
@@ -613,6 +677,7 @@ files:
|
|
613
677
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/33/33_yR0KysvUnUWvR5TzwELDqGApTbi2ex2o3vY-ybfU.cache
|
614
678
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/3N/3NTAQ9mVEZbccGibE39JpeqlDw2L6zcUtlRsbPCT918.cache
|
615
679
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/3V/3V8ZntS_gc1fums5LuLZK0a_nwPIjLXSD0JNF_3ScEk.cache
|
680
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/3W/3Wtf5pCWdqq0AB-iB0Y9uUNrTkruRxIEf1XFn_BETU0.cache
|
616
681
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/4U/4UAd9Le8LhEYS8mCovy_yQC_ofpTBWt1Q997x0hg6xY.cache
|
617
682
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/4V/4VaOsvficwh2EmmuR-pEJTISpR9mbr8Cf7jYYyptEwY.cache
|
618
683
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/53/53WajXFPOCZVqMrL7nxYAYl90fSweya9XM4vrDJhU6c.cache
|
@@ -623,6 +688,7 @@ files:
|
|
623
688
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/5f/5fUAiOa1Zm-ove4HOeSLN1OQmEMHu0OYjHrYIK3-SGE.cache
|
624
689
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/5f/5flfgUDFCRhrUbGifk2RfSEGWOBMubAcaWg4ZadI5PY.cache
|
625
690
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/5i/5iW33HH6azj0ds2lqDaOB1666CY_uOHhVAQavgh7tYw.cache
|
691
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/5i/5iguGafb4hOn8262Kn8Q37ogNN9MxxQKGKNzHAzUcvI.cache
|
626
692
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/5m/5m0G50I6WuIDftOEFtJHjC0KmN1mnhe51wBZ2dq9la0.cache
|
627
693
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/5m/5mzbQNNLQ1vmll1Azo5cAZpDY2Zc7C_CLYJH2zKtzYY.cache
|
628
694
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/6K/6KeDYkyM_nd3JJSp2B4HtcpdeA3uHgJLSlRaEVpH328.cache
|
@@ -634,6 +700,7 @@ files:
|
|
634
700
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/7r/7rgR5Gy_i08FxXwdCvtqSCXSghB7e5EXB2Vox4MQVUg.cache
|
635
701
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8Q/8Qz_ptqTPNDlaE2aAVgaFiIBByiF2fhNHKQJFggzJYA.cache
|
636
702
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8e/8ezXMOIySx7oyopI2nH1EXfCzPCFHTJiS3q2tvyEZjY.cache
|
703
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8m/8mj2T6yy847Mc2Z7k3Xzh8O91hhVJt3NrPe8ASNDlIA.cache
|
637
704
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8w/8wY_SKagj8wHuwGNAAf6JnQ8joMbC6cEYpHrTAI8Urc.cache
|
638
705
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/99/99m8UCKl4j8IpsVOK8ltLHyNh8Ae0nHw3GBkC34V_co.cache
|
639
706
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/9a/9abVi8XfoB8pGShaL5_-jzZGJIxKmedpFY0HQ5h24oE.cache
|
@@ -656,9 +723,11 @@ files:
|
|
656
723
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/D4/D4osajB0M3Tk4bo3qAkcpkXlGHReFCOJxlo20Deiqk4.cache
|
657
724
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/D9/D9cZjx3n4E4qKXoR9rROjaYWpm1nnip45O0Ubyqyho8.cache
|
658
725
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/DP/DPvPPYoq_7HYVvKapcWxWL0bSIyINU7Oc93He65SrAk.cache
|
726
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/DT/DTQyMpr4ABZYQetsdRJ5A7S4jf1r3ie4FGOR7GZBNSs.cache
|
659
727
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Df/Dfl0fgtV2z9SkiRUCnFBU6pD3TPmL0rI_lUqOVSglz8.cache
|
660
728
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Df/dfOhvqqzI4Yxr6VUUn6T5DARFk5SNeEasmpVaiBivxQ.cache
|
661
729
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Dl/DlaCy1X82C9F58mF2UUes54AZzBUIGyuFiZEc9PUW0U.cache
|
730
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Dq/DqJ5_yJPrP5iLlOQyTQsjAVI5FE5LCVDkED0f7GgsSo.cache
|
662
731
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Dy/DyHdMGh9NYCQ6KM4Cs6ySrmxIGQLcs3urJo2ni_GHeI.cache
|
663
732
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/E8/E84Qt1hM8br74RgXrkdGt8CGM8KnVROweUTPah6hpao.cache
|
664
733
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Ea/Ea7ca7cxAj6u9A8UKN2ZVtAFE3GXgmTZtHiorPaUnTg.cache
|
@@ -704,6 +773,7 @@ files:
|
|
704
773
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Q_/Q_J_xCMNzLrUyke5pUNpWmyoVj_lW8yCigUKNE9FyXs.cache
|
705
774
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/RB/RBv3Nnh3mIqYx7YWNYxr9uuJlQKt0sISacYDiDkOJ3w.cache
|
706
775
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/RE/REff4oUdSjRZwuhZkynEkMbvKkAnflI5V3ti3ZCXtO0.cache
|
776
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Rw/RwDuCV-XpnCtjNkvhpJfBuxXMk0b5AD3L9eR6M-wcy0.cache
|
707
777
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/S2/S2ulcWK2u8bC-jxhkG5P2oDyoR91wKtZkw6I5RfTz24.cache
|
708
778
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/SD/SDQnsrLw-b0RFX481lQQF9x0HiZaefzuBAuOj3cwo9I.cache
|
709
779
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/SD/sDGKBkb0LsWWFOmHNgz4ahOe6iLlCfJ8Zy8iInv4teI.cache
|
@@ -718,15 +788,19 @@ files:
|
|
718
788
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/U9/U9dnnrqeoOE-mYHdH4XmicZAjMQbjhjXdiA8VlMGsHA.cache
|
719
789
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/UA/UA89Y066oW41G1gWoHWdEXcPU2JZ66j8dnXKwoc3yJc.cache
|
720
790
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/UK/UKklu-xV4ZGx7P5-zWqENrlHQUaedqEuUNTgezjc3g0.cache
|
791
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/UL/ULdjhhb0bRuqmaG7XSZlFYzGYCXTDnqZuJBTWRlzqgw.cache
|
721
792
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/US/USYEqEC54xCRgdxfID_BklmAl2jIXZAKJ9BhapbMqNg.cache
|
793
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Up/UpPNgh0yYoUsyMDh5zWqe_U6qJIyTC6-dxMMAs1vvlM.cache
|
722
794
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/V5/V5dKKdHyA7y6N44igdqPBARmoV0tYdUsUrmf2lJkF6M.cache
|
723
795
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/VJ/VJ9Lp37PnSDzVOvhSVhKc2eG-KOuv3bRFxar6M8LLnA.cache
|
724
796
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/VP/VPf8mKPeiYU53d-M_P60d-YL6wdTka1rTVRa4F5dB_k.cache
|
725
797
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/VY/VYJV9KoRx38NfAvSvXouEYF_0k-Su_KdFuSSXPOoSOg.cache
|
726
798
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/W2/W2nmNoF054n5uT-S7jhvUpaJqxHYWiJnHNP8fbjwjj0.cache
|
727
799
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/WA/WA0OKbW1ShDLWAbN4voLShkG6JaNjvWeSNF3ZpLcUqY.cache
|
800
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Wg/Wguh-szFGTI1gaL6npYwPekMXflugRei7F_mOyRucXg.cache
|
728
801
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Wr/WriMHycrWjgHpmRpAo9N4nvDB5T0lBL5EOTTUQUHwn4.cache
|
729
802
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Ws/WsHB1qkchRYVF4JV0Yqtr-QiyZ26DiLFtKTrCRVc5kI.cache
|
803
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/X-/X-khLYMA9mqFRPg3zAi86mREDxpKl4bdKYp3uF6WHos.cache
|
730
804
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/XD/XDRDiP6A_Qz7pCCfZHYO6Xfob7trS4JQQoX_ByuWnRI.cache
|
731
805
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Xr/XrGClLu5lOe_6gWU_Nm-tCAC6tUCFpoTPwyKLHmrnNw.cache
|
732
806
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Xu/XU4k1OXnfMils5SrirorPvDSyDSqiOWLZNtmAH1HH8k.cache
|
@@ -751,6 +825,7 @@ files:
|
|
751
825
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/bC/bCSJnsDI4K9-Hwd7p_GC9M36gA2QbYgtfl-Guk1Ev80.cache
|
752
826
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/bM/bMopwpsFeLUsi20J9L9mPnoi6ZMJMVHIzxbTHbWrBho.cache
|
753
827
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/bd/bdikSDf26RlvOPFhOT9G-XHnMj8ptHrTYB3QUuABCUQ.cache
|
828
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/bi/BIkdhfxsezxM4q-HZ4oCNTq97WEJTigcq0tpX2cDvbY.cache
|
754
829
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/bi/biczy7hoa1_tzXKc6t2QU3WdkhkfdBfwwq66GVVz914.cache
|
755
830
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/bq/bqRZ6xUe_GzjdFbiyk0iMQoNHY4xk1gccuw3l8KUJz8.cache
|
756
831
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/bv/bvfgzCTJxyiwgFWSXthcO14iFDl_K1NuT0vWVXcI-WU.cache
|
@@ -766,7 +841,10 @@ files:
|
|
766
841
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/eW/eWG0d21oPZQGuYiCLej8OsRayN0--zxnvn7KHFqrQus.cache
|
767
842
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/fA/fADdr9ULIrFxI-36hG3S8yfvCp2VHyR6WzSZNIPM3C0.cache
|
768
843
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/fE/fEt1GN3H2qJiB0PwX6Cd43UrRkzLxTRIeUyyrydPe_A.cache
|
844
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/ff/FfxmA4CMHQZT7exx0G7NS1Wpcnny0vzp-Jhc2H36bp8.cache
|
769
845
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/ff/ffguBp3lFlcLuH9rWtl1JJxs9dDTIfm-FCMONYpUdww.cache
|
846
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/gE/gEiiG4GZNy_djEjK2pHm_NgA-gyhLZhdQvo0Yt96GqE.cache
|
847
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/gn/gnA9ZSqpjccNL2m8pe_jBvY6SinXlCzXDWyop83Od8s.cache
|
770
848
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/he/hepQXqLZteSsVIUXJaeKnrpVYKb53gbWe1xr6tuFN3Y.cache
|
771
849
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/hy/hyMfoAGcpyTZYoedJT2E2u3X96FEwATK-lIPMFlN_bw.cache
|
772
850
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/i9/I9UL3IEpQ14Bi9EpF3TLd0P5Rabp6ulJbgz2f1o-neA.cache
|
@@ -786,13 +864,16 @@ files:
|
|
786
864
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/kz/kz7lpLb0SoWDdaStz39DkoaQykVp0h3Jl4agZcEh6L4.cache
|
787
865
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/l8/l8UyUr0lncdtUUTZFwO0ulkW8Bl3z83viCwii7OewZk.cache
|
788
866
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/lH/lHDGd3_dxi_xz9n5_wYFy7hKMxp78Q39u_XQKZWub_Y.cache
|
867
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/lO/lOAan3cMwCE_Hli6gsDML88xFNfn0nxPmvrSkW7eEOw.cache
|
789
868
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/lU/lUmP4mi3T8xmwS_odQgw8llzs35KCOMZCTv0DANy9dM.cache
|
790
869
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/lY/lYdwx9C-FXcmiLA5bsEfQIBwpcg3twu1lz6rFXROyCI.cache
|
791
870
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/lj/ljpGLuZae0hOTv1h7MGCiJ30O0qhPCuvEKLhD5zpV8Q.cache
|
871
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/m1/M1pv8MJEPLXGLvS8QxVh3DSO9cI4mRt5FHFWdrvUj6o.cache
|
792
872
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/m1/M1yW7a2h3VzoyhwmJIKGEXjCQN8GsQcnvcKaklurytE.cache
|
793
873
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/m1/m1jB-0OsQz_CCr-Q_KIlpfF7BsJBF8GXMfk9pZdJsdg.cache
|
794
874
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/m3/m3WJ72qtNo4wVe78N9YRArVH33D15hEwdVd67wJbvOQ.cache
|
795
875
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/m4/m4EE0-xa87oylMzux18a-d2pR0zDtF2GCbYzwdSvQH4.cache
|
876
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/m7/m77qH7ZqH0_0SmwJbiKGDd-aLau1Dav847DC6ge46zY.cache
|
796
877
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/mS/mSWxg1xZbGaeYGDXMe8nsYZC_LfhiNdjSTL2J2ELE0s.cache
|
797
878
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/mb/mb6HAyivnzHzDrkN35ifr4kL7MuksZYWamdJBUjhoHQ.cache
|
798
879
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/me/melFFxMi_bgtkEkztQhKusyFDqKEeVVzurk_1_TPt6A.cache
|
@@ -821,31 +902,62 @@ files:
|
|
821
902
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/r_/r_57OZEW0SEEUS9tJZwHYMvqjkbw3-3qfgomLAKJzoE.cache
|
822
903
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/rh/rhT44pxmkWo5fhkEb829kceOiGof5L5L55DT5Uv9LKQ.cache
|
823
904
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/s4/s4BZ5EXO5EOticOtqwWaw3qjnMod3t0AfgXahBpqSZA.cache
|
905
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/sj/sjRjnjRB37lH2vrgtkdJ8Cz84__IJ978IuKTM7HcztI.cache
|
824
906
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/tF/tFofktc3WRxmXDS1NTWdUstzycUbsShJBMHatxLvxqQ.cache
|
825
907
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/tL/tLQy_cVJ8R8R35MKxmAuxHklAoaJTyXFO-eL8dXcMKY.cache
|
908
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/um/um1JrirR4hJhK-1rE-HywlyCi5ibgxHVrReiujZBWJM.cache
|
909
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/v4/v4fwVytD7ITcE0_GDbslZEYud8a5Okm85fV1o7SDl6g.cache
|
826
910
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/vH/vHyq2njTP0fsOdOun0eFn07YnFCTmJJkD89-pJ9tKYA.cache
|
827
911
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/vK/vKDpBE4UJEuJjeJqLtVQSQ7wHxJ1ywxrRt8Y1XQBxtk.cache
|
828
912
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/vK/vk4eyljHSm11GcRNbA0QEqn13Y4bEfxOcBwiesL-XvQ.cache
|
913
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/v_/v_0PAQt0iipQjFP5zjgkkk9Stnpf4VzvnMv67d1Keuw.cache
|
829
914
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/w6/w6JBeSUs8dNJNtbRF-HVG3csGda2FlttAEBSpSHoqcE.cache
|
830
915
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/wc/wcSdAX-yztEvzKx_xYHtqxT47ZyaLoLal_vKwPxEP08.cache
|
916
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/wd/wdT9U4MKxe1PyqNjVuCKMpCl3dxGCIRJIlwUTfh2DQU.cache
|
831
917
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/wh/whuY0tTNf66sTcgILzLfelCAHIBpDZZIiOIuI12HNQw.cache
|
832
918
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/wi/wiKqSHxw-MJpM466KPFAcPyzBHxbpGGYW578TqFEJeg.cache
|
833
919
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/wi/wixK89IvA4Xk2MyJxkyLg-2xRs2vRPzY_OIs37bi8XA.cache
|
834
920
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/wz/wzY0ol5RRJK1j-hK9nckKoTMWK5TJDii5QSZMGTu5hk.cache
|
835
921
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/x3/x3jUhlqTEK-rA6zTC8_MWGyKD8tZRhz2nPu0nCBgEGI.cache
|
922
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/xI/xIaxut_fEIhKBDqljTNwYaADK9kj3gG0ESrfHs-5_og.cache
|
836
923
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/xL/xLZtF0WWBePfiVBWxxi6brXCLsEfcrj435b9xJupeeU.cache
|
837
924
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/xL/xLktzniI5dkWKAifTMHzZvRHyRHOexsqV-ZRsdLXx0g.cache
|
838
925
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/xv/xvoydM1zth53tauNTatJNfb-o44mAGDD9-85yRkpeqY.cache
|
926
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/y0/y0SJOqIx2fn1SKqOkAihsQow0trRJrSIyAswufVuoA8.cache
|
839
927
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/yH/yHfd9J_SJGssjygyWK8-uLlvE6IlN6DIda7947QWVsI.cache
|
840
928
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/yQ/yQP_20gvJZ1MfkfWE7nU-EFpqbMzANYy8OWuQuaDyLM.cache
|
841
929
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/yv/yvOcRnWhg9dCjr1_rScAH4M8-rUQVY9oHFqBGVoMniI.cache
|
842
930
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/z2/z2ro57FqSGT_X2jnC68fS-HrFmCh7Wbrnrm45BceZoM.cache
|
843
931
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/zJ/zJfViroVCTZxyBh0pLP8_QiOxemqmKRkiU7BHAf5HxA.cache
|
844
932
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/zP/zPBLf0GnkvCm86BY_8PtGJRyawPWy-JxWZp25_yNRfk.cache
|
933
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/zg/zgpzeaX-KZErHyGJ1aBH3ZusweNXMneVZule88XsIJI.cache
|
845
934
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/zm/zmEmiHcLam0fJ2odLUV8n4hg9GN2gBDrJo7JCkkg8f4.cache
|
935
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/zy/zYFltDy-8VC-uKq2BVEiJJyYXNFvVzAKuMlR3ZIYZsk.cache
|
846
936
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/zy/zywotY5ANjNyE78CLDqC1eYRFwL1ZFzkT9J5LzNlI4M.cache
|
847
937
|
- spec/dummy/tmp/restart.txt
|
848
938
|
- spec/dummy/tmp/screenshots/failures_test_it_handles_subscriptions.png
|
939
|
+
- spec/fixtures/upgrader/account.original.rb
|
940
|
+
- spec/fixtures/upgrader/account.transformed.rb
|
941
|
+
- spec/fixtures/upgrader/blame_range.original.rb
|
942
|
+
- spec/fixtures/upgrader/blame_range.transformed.rb
|
943
|
+
- spec/fixtures/upgrader/date_time.original.rb
|
944
|
+
- spec/fixtures/upgrader/date_time.transformed.rb
|
945
|
+
- spec/fixtures/upgrader/delete_project.original.rb
|
946
|
+
- spec/fixtures/upgrader/delete_project.transformed.rb
|
947
|
+
- spec/fixtures/upgrader/gist_order_field.original.rb
|
948
|
+
- spec/fixtures/upgrader/gist_order_field.transformed.rb
|
949
|
+
- spec/fixtures/upgrader/increment_count.original.rb
|
950
|
+
- spec/fixtures/upgrader/increment_count.transformed.rb
|
951
|
+
- spec/fixtures/upgrader/photo.original.rb
|
952
|
+
- spec/fixtures/upgrader/photo.transformed.rb
|
953
|
+
- spec/fixtures/upgrader/release_order.original.rb
|
954
|
+
- spec/fixtures/upgrader/release_order.transformed.rb
|
955
|
+
- spec/fixtures/upgrader/starrable.original.rb
|
956
|
+
- spec/fixtures/upgrader/starrable.transformed.rb
|
957
|
+
- spec/fixtures/upgrader/subscribable.original.rb
|
958
|
+
- spec/fixtures/upgrader/subscribable.transformed.rb
|
959
|
+
- spec/fixtures/upgrader/type_x.original.rb
|
960
|
+
- spec/fixtures/upgrader/type_x.transformed.rb
|
849
961
|
- spec/generators/graphql/enum_generator_spec.rb
|
850
962
|
- spec/generators/graphql/function_generator_spec.rb
|
851
963
|
- spec/generators/graphql/install_generator_spec.rb
|
@@ -874,6 +986,7 @@ files:
|
|
874
986
|
- spec/graphql/directive_spec.rb
|
875
987
|
- spec/graphql/enum_type_spec.rb
|
876
988
|
- spec/graphql/execution/execute_spec.rb
|
989
|
+
- spec/graphql/execution/instrumentation_spec.rb
|
877
990
|
- spec/graphql/execution/lazy/lazy_method_map_spec.rb
|
878
991
|
- spec/graphql/execution/lazy_spec.rb
|
879
992
|
- spec/graphql/execution/multiplex_spec.rb
|
@@ -894,12 +1007,15 @@ files:
|
|
894
1007
|
- spec/graphql/introspection/schema_type_spec.rb
|
895
1008
|
- spec/graphql/introspection/type_by_name_field_spec.rb
|
896
1009
|
- spec/graphql/introspection/type_type_spec.rb
|
1010
|
+
- spec/graphql/language/block_string_spec.rb
|
897
1011
|
- spec/graphql/language/definition_slice_spec.rb
|
1012
|
+
- spec/graphql/language/document_from_schema_definition_spec.rb
|
898
1013
|
- spec/graphql/language/equality_spec.rb
|
899
1014
|
- spec/graphql/language/generation_spec.rb
|
900
1015
|
- spec/graphql/language/lexer_spec.rb
|
901
1016
|
- spec/graphql/language/nodes_spec.rb
|
902
1017
|
- spec/graphql/language/parser_spec.rb
|
1018
|
+
- spec/graphql/language/printer_spec.rb
|
903
1019
|
- spec/graphql/language/visitor_spec.rb
|
904
1020
|
- spec/graphql/list_type_spec.rb
|
905
1021
|
- spec/graphql/non_null_type_spec.rb
|
@@ -919,21 +1035,40 @@ files:
|
|
919
1035
|
- spec/graphql/relay/connection_resolve_spec.rb
|
920
1036
|
- spec/graphql/relay/connection_type_spec.rb
|
921
1037
|
- spec/graphql/relay/edge_spec.rb
|
1038
|
+
- spec/graphql/relay/mongo_relation_connection_spec.rb
|
922
1039
|
- spec/graphql/relay/mutation_spec.rb
|
923
1040
|
- spec/graphql/relay/node_spec.rb
|
924
1041
|
- spec/graphql/relay/page_info_spec.rb
|
925
1042
|
- spec/graphql/relay/range_add_spec.rb
|
926
1043
|
- spec/graphql/relay/relation_connection_spec.rb
|
927
1044
|
- spec/graphql/scalar_type_spec.rb
|
1045
|
+
- spec/graphql/schema/argument_spec.rb
|
928
1046
|
- spec/graphql/schema/build_from_definition_spec.rb
|
929
1047
|
- spec/graphql/schema/catchall_middleware_spec.rb
|
1048
|
+
- spec/graphql/schema/enum_spec.rb
|
1049
|
+
- spec/graphql/schema/field_spec.rb
|
1050
|
+
- spec/graphql/schema/finder_spec.rb
|
1051
|
+
- spec/graphql/schema/input_object_spec.rb
|
1052
|
+
- spec/graphql/schema/instrumentation_spec.rb
|
1053
|
+
- spec/graphql/schema/interface_spec.rb
|
1054
|
+
- spec/graphql/schema/introspection_system_spec.rb
|
930
1055
|
- spec/graphql/schema/loader_spec.rb
|
1056
|
+
- spec/graphql/schema/member/accepts_definition_spec.rb
|
1057
|
+
- spec/graphql/schema/member/build_type_spec.rb
|
1058
|
+
- spec/graphql/schema/member/has_fields_spec.rb
|
1059
|
+
- spec/graphql/schema/member/type_system_helpers_spec.rb
|
931
1060
|
- spec/graphql/schema/middleware_chain_spec.rb
|
1061
|
+
- spec/graphql/schema/mutation_spec.rb
|
1062
|
+
- spec/graphql/schema/object_spec.rb
|
932
1063
|
- spec/graphql/schema/printer_spec.rb
|
1064
|
+
- spec/graphql/schema/relay_classic_mutation_spec.rb
|
933
1065
|
- spec/graphql/schema/rescue_middleware_spec.rb
|
1066
|
+
- spec/graphql/schema/resolver_spec.rb
|
1067
|
+
- spec/graphql/schema/scalar_spec.rb
|
934
1068
|
- spec/graphql/schema/timeout_middleware_spec.rb
|
935
1069
|
- spec/graphql/schema/traversal_spec.rb
|
936
1070
|
- spec/graphql/schema/type_expression_spec.rb
|
1071
|
+
- spec/graphql/schema/union_spec.rb
|
937
1072
|
- spec/graphql/schema/unique_within_type_spec.rb
|
938
1073
|
- spec/graphql/schema/validation_spec.rb
|
939
1074
|
- spec/graphql/schema/warden_spec.rb
|
@@ -969,21 +1104,28 @@ files:
|
|
969
1104
|
- spec/graphql/subscriptions/serialize_spec.rb
|
970
1105
|
- spec/graphql/subscriptions_spec.rb
|
971
1106
|
- spec/graphql/tracing/active_support_notifications_tracing_spec.rb
|
1107
|
+
- spec/graphql/tracing/new_relic_tracing_spec.rb
|
972
1108
|
- spec/graphql/tracing/platform_tracing_spec.rb
|
973
1109
|
- spec/graphql/tracing/scout_tracing_spec.rb
|
974
1110
|
- spec/graphql/tracing_spec.rb
|
975
1111
|
- spec/graphql/union_type_spec.rb
|
1112
|
+
- spec/graphql/upgrader/member_spec.rb
|
1113
|
+
- spec/graphql/upgrader/schema_spec.rb
|
976
1114
|
- spec/rails_dependency_sanity_spec.rb
|
977
1115
|
- spec/spec_helper.rb
|
978
1116
|
- spec/support/base_generator_test.rb
|
979
1117
|
- spec/support/dummy/data.rb
|
980
1118
|
- spec/support/dummy/schema.rb
|
1119
|
+
- spec/support/jazz.rb
|
981
1120
|
- spec/support/lazy_helpers.rb
|
982
1121
|
- spec/support/magic_cards/schema.graphql
|
983
1122
|
- spec/support/minimum_input_object.rb
|
1123
|
+
- spec/support/new_relic.rb
|
984
1124
|
- spec/support/parser/filename_example.graphql
|
985
1125
|
- spec/support/parser/filename_example_error_1.graphql
|
986
1126
|
- spec/support/parser/filename_example_error_2.graphql
|
1127
|
+
- spec/support/star_trek/data.rb
|
1128
|
+
- spec/support/star_trek/schema.rb
|
987
1129
|
- spec/support/star_wars/data.rb
|
988
1130
|
- spec/support/star_wars/schema.rb
|
989
1131
|
- spec/support/static_validation_helpers.rb
|
@@ -999,7 +1141,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
999
1141
|
requirements:
|
1000
1142
|
- - ">="
|
1001
1143
|
- !ruby/object:Gem::Version
|
1002
|
-
version: 2.
|
1144
|
+
version: 2.2.0
|
1003
1145
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1004
1146
|
requirements:
|
1005
1147
|
- - ">="
|
@@ -1007,7 +1149,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1007
1149
|
version: '0'
|
1008
1150
|
requirements: []
|
1009
1151
|
rubyforge_project:
|
1010
|
-
rubygems_version: 2.6.
|
1152
|
+
rubygems_version: 2.6.13
|
1011
1153
|
signing_key:
|
1012
1154
|
specification_version: 4
|
1013
1155
|
summary: A GraphQL language and runtime for Ruby
|
@@ -1067,8 +1209,10 @@ test_files:
|
|
1067
1209
|
- spec/dummy/test/test_helper.rb
|
1068
1210
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/-5/-5OWGoO21F6_WNuECrXgkwH7NcKlWSSe2GjVanwsmUk.cache
|
1069
1211
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/-T/-TNJ0-j8HjZCYUE7EDQlhfGu64B8guOUPkXYO6HFhus.cache
|
1212
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/-x/-xYZjAnuuzgR79fcznLTQtSdh6AARxu8FcQ_J6p7L3U.cache
|
1070
1213
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/09/09tM9-9HC9J7np7PawoxLz0YZYB_jmwdMFL4N4WBJdM.cache
|
1071
1214
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/0H/0HR_baZ3Owzw1Gx5epPCDhsl0UXWGh73zDkQu08IHuc.cache
|
1215
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/13/13HiV12xyoQvT-1L39ZzLwMZxjyaGMiENmfw7f-QTIc.cache
|
1072
1216
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/1I/1i4n3ptJre3b2zbA9AvgzE-ThTU_1mqSX3AlMtS_Qxk.cache
|
1073
1217
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/1I/1IbYhe7oTUZvWCe0pIMBMp5bLq5pCuxuxlgnQV1TAno.cache
|
1074
1218
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/1L/1LQJg_vkfK3o2UCvJGQKuGjXydCfw7GerrpJCGiKw5k.cache
|
@@ -1081,6 +1225,7 @@ test_files:
|
|
1081
1225
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/33/33_yR0KysvUnUWvR5TzwELDqGApTbi2ex2o3vY-ybfU.cache
|
1082
1226
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/3N/3NTAQ9mVEZbccGibE39JpeqlDw2L6zcUtlRsbPCT918.cache
|
1083
1227
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/3V/3V8ZntS_gc1fums5LuLZK0a_nwPIjLXSD0JNF_3ScEk.cache
|
1228
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/3W/3Wtf5pCWdqq0AB-iB0Y9uUNrTkruRxIEf1XFn_BETU0.cache
|
1084
1229
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/4U/4UAd9Le8LhEYS8mCovy_yQC_ofpTBWt1Q997x0hg6xY.cache
|
1085
1230
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/4V/4VaOsvficwh2EmmuR-pEJTISpR9mbr8Cf7jYYyptEwY.cache
|
1086
1231
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/53/53oHiwCXSKokJPEWS6w53bGXkeZm-YAcDuXcBhNscEY.cache
|
@@ -1088,6 +1233,7 @@ test_files:
|
|
1088
1233
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/5d/5dGYuqW7Lp3oCc1lq8B9Uoa0lfgE4iOEiGvgwRf1JHA.cache
|
1089
1234
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/5f/5flfgUDFCRhrUbGifk2RfSEGWOBMubAcaWg4ZadI5PY.cache
|
1090
1235
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/5f/5fUAiOa1Zm-ove4HOeSLN1OQmEMHu0OYjHrYIK3-SGE.cache
|
1236
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/5i/5iguGafb4hOn8262Kn8Q37ogNN9MxxQKGKNzHAzUcvI.cache
|
1091
1237
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/5i/5iW33HH6azj0ds2lqDaOB1666CY_uOHhVAQavgh7tYw.cache
|
1092
1238
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/5m/5m0G50I6WuIDftOEFtJHjC0KmN1mnhe51wBZ2dq9la0.cache
|
1093
1239
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/5m/5mzbQNNLQ1vmll1Azo5cAZpDY2Zc7C_CLYJH2zKtzYY.cache
|
@@ -1101,6 +1247,7 @@ test_files:
|
|
1101
1247
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/7p/7pN8wYS-6xc_x5BzT4gRgFAiVGhhcW9NHg_e6Ng5CDw.cache
|
1102
1248
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/7r/7rgR5Gy_i08FxXwdCvtqSCXSghB7e5EXB2Vox4MQVUg.cache
|
1103
1249
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8e/8ezXMOIySx7oyopI2nH1EXfCzPCFHTJiS3q2tvyEZjY.cache
|
1250
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8m/8mj2T6yy847Mc2Z7k3Xzh8O91hhVJt3NrPe8ASNDlIA.cache
|
1104
1251
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8Q/8Qz_ptqTPNDlaE2aAVgaFiIBByiF2fhNHKQJFggzJYA.cache
|
1105
1252
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8w/8wY_SKagj8wHuwGNAAf6JnQ8joMbC6cEYpHrTAI8Urc.cache
|
1106
1253
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/99/99m8UCKl4j8IpsVOK8ltLHyNh8Ae0nHw3GBkC34V_co.cache
|
@@ -1126,6 +1273,7 @@ test_files:
|
|
1126
1273
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/bd/bdikSDf26RlvOPFhOT9G-XHnMj8ptHrTYB3QUuABCUQ.cache
|
1127
1274
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Bg/BgLjB8mXnvRh9DrKcGI_KblFPuA84hjh4nJC50FDsWc.cache
|
1128
1275
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/bi/biczy7hoa1_tzXKc6t2QU3WdkhkfdBfwwq66GVVz914.cache
|
1276
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/bi/BIkdhfxsezxM4q-HZ4oCNTq97WEJTigcq0tpX2cDvbY.cache
|
1129
1277
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/bM/bMopwpsFeLUsi20J9L9mPnoi6ZMJMVHIzxbTHbWrBho.cache
|
1130
1278
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/bq/bqRZ6xUe_GzjdFbiyk0iMQoNHY4xk1gccuw3l8KUJz8.cache
|
1131
1279
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/bv/bvfgzCTJxyiwgFWSXthcO14iFDl_K1NuT0vWVXcI-WU.cache
|
@@ -1148,7 +1296,9 @@ test_files:
|
|
1148
1296
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/dG/dGyq85wVf9waxk23R1VlUQQMflMpPSsiMOTM9TtZ1f0.cache
|
1149
1297
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Dl/DlaCy1X82C9F58mF2UUes54AZzBUIGyuFiZEc9PUW0U.cache
|
1150
1298
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/DP/DPvPPYoq_7HYVvKapcWxWL0bSIyINU7Oc93He65SrAk.cache
|
1299
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Dq/DqJ5_yJPrP5iLlOQyTQsjAVI5FE5LCVDkED0f7GgsSo.cache
|
1151
1300
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/dr/drw7hbVGSDH0ujUo0r9Fmfbjvw8_eoOc6fCktj5IKak.cache
|
1301
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/DT/DTQyMpr4ABZYQetsdRJ5A7S4jf1r3ie4FGOR7GZBNSs.cache
|
1152
1302
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Dy/DyHdMGh9NYCQ6KM4Cs6ySrmxIGQLcs3urJo2ni_GHeI.cache
|
1153
1303
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/e7/e7SEwN9e5ctMuXdXSRM6IB2fFMiIP2UAmvXjDKktd5w.cache
|
1154
1304
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/E8/E84Qt1hM8br74RgXrkdGt8CGM8KnVROweUTPah6hpao.cache
|
@@ -1159,11 +1309,14 @@ test_files:
|
|
1159
1309
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/fA/fADdr9ULIrFxI-36hG3S8yfvCp2VHyR6WzSZNIPM3C0.cache
|
1160
1310
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/fE/fEt1GN3H2qJiB0PwX6Cd43UrRkzLxTRIeUyyrydPe_A.cache
|
1161
1311
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/ff/ffguBp3lFlcLuH9rWtl1JJxs9dDTIfm-FCMONYpUdww.cache
|
1312
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/ff/FfxmA4CMHQZT7exx0G7NS1Wpcnny0vzp-Jhc2H36bp8.cache
|
1162
1313
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/FN/FNAoxlHjPOpzywpYUXo13-PLULLhE4lZ8jRmsdCpQ8s.cache
|
1163
1314
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/FS/FS-IBIwKNJB6ey4YiEJy3WQxdihlzqhn27zuXCPW3I4.cache
|
1164
1315
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/FS/fsx-7r5CnuEuuruO05WoCqUE7I7yHdsHFyufpAo9L_w.cache
|
1165
1316
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/FU/FU7chcPDGpikN_If4SNgCUiwKbAtWa-dV0x644C-R8A.cache
|
1166
1317
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/FZ/FZS5A8sTziH2yLSQsehYe2Lov6tTh7qddnYpUCOrSg8.cache
|
1318
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/gE/gEiiG4GZNy_djEjK2pHm_NgA-gyhLZhdQvo0Yt96GqE.cache
|
1319
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/gn/gnA9ZSqpjccNL2m8pe_jBvY6SinXlCzXDWyop83Od8s.cache
|
1167
1320
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Gx/GxO9oxH-DZ8Vk1eqP17OKFSocWisT4gGJtcGM1t5Fio.cache
|
1168
1321
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/H6/H6QLQGIr0MZMFEBwWkJpjKCoSmnCM1d1b7Z2bT1pchI.cache
|
1169
1322
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Hb/HbX5bR5UYD1vbffHD_0rvCrL9QARJ6bCpD00MQdR1g4.cache
|
@@ -1200,15 +1353,18 @@ test_files:
|
|
1200
1353
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/lH/lHDGd3_dxi_xz9n5_wYFy7hKMxp78Q39u_XQKZWub_Y.cache
|
1201
1354
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/LI/LIHDRdjIBdKfW4tnKTESwsWFz4OeCV-sJZtEKUYaLiU.cache
|
1202
1355
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/lj/ljpGLuZae0hOTv1h7MGCiJ30O0qhPCuvEKLhD5zpV8Q.cache
|
1356
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/lO/lOAan3cMwCE_Hli6gsDML88xFNfn0nxPmvrSkW7eEOw.cache
|
1203
1357
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/lU/lUmP4mi3T8xmwS_odQgw8llzs35KCOMZCTv0DANy9dM.cache
|
1204
1358
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Lx/Lx6tpPxpS0hrFKiVXiv37Q4bFJjhDJJak7WUoOemLC8.cache
|
1205
1359
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Lx/LxRPPEO9CB_ckDd1jRPcKJjsm_Gc0CGMSmrdUXXpzjs.cache
|
1206
1360
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/lY/lYdwx9C-FXcmiLA5bsEfQIBwpcg3twu1lz6rFXROyCI.cache
|
1207
1361
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/m1/m1jB-0OsQz_CCr-Q_KIlpfF7BsJBF8GXMfk9pZdJsdg.cache
|
1362
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/m1/M1pv8MJEPLXGLvS8QxVh3DSO9cI4mRt5FHFWdrvUj6o.cache
|
1208
1363
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/m1/M1yW7a2h3VzoyhwmJIKGEXjCQN8GsQcnvcKaklurytE.cache
|
1209
1364
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/m3/m3WJ72qtNo4wVe78N9YRArVH33D15hEwdVd67wJbvOQ.cache
|
1210
1365
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/m4/m4EE0-xa87oylMzux18a-d2pR0zDtF2GCbYzwdSvQH4.cache
|
1211
1366
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/M6/M6hnb_EIRICxNcrNSkV7ekfCpVo0O9U2XSSaLxDqONI.cache
|
1367
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/m7/m77qH7ZqH0_0SmwJbiKGDd-aLau1Dav847DC6ge46zY.cache
|
1212
1368
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/mb/mb6HAyivnzHzDrkN35ifr4kL7MuksZYWamdJBUjhoHQ.cache
|
1213
1369
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/me/melFFxMi_bgtkEkztQhKusyFDqKEeVVzurk_1_TPt6A.cache
|
1214
1370
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/mm/mms9rxcyPm09RjefBI321LIRPUAobgQ1X4A8Uu4w9Fc.cache
|
@@ -1251,11 +1407,13 @@ test_files:
|
|
1251
1407
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/RB/RBv3Nnh3mIqYx7YWNYxr9uuJlQKt0sISacYDiDkOJ3w.cache
|
1252
1408
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/RE/REff4oUdSjRZwuhZkynEkMbvKkAnflI5V3ti3ZCXtO0.cache
|
1253
1409
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/rh/rhT44pxmkWo5fhkEb829kceOiGof5L5L55DT5Uv9LKQ.cache
|
1410
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Rw/RwDuCV-XpnCtjNkvhpJfBuxXMk0b5AD3L9eR6M-wcy0.cache
|
1254
1411
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/rX/rX6desISJ78BGVzR2gPZKb2BiWY-N596DjfIgaTTkew.cache
|
1255
1412
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/S2/S2ulcWK2u8bC-jxhkG5P2oDyoR91wKtZkw6I5RfTz24.cache
|
1256
1413
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/s4/s4BZ5EXO5EOticOtqwWaw3qjnMod3t0AfgXahBpqSZA.cache
|
1257
1414
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/SD/sDGKBkb0LsWWFOmHNgz4ahOe6iLlCfJ8Zy8iInv4teI.cache
|
1258
1415
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/SD/SDQnsrLw-b0RFX481lQQF9x0HiZaefzuBAuOj3cwo9I.cache
|
1416
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/sj/sjRjnjRB37lH2vrgtkdJ8Cz84__IJ978IuKTM7HcztI.cache
|
1259
1417
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/SM/SMCVX47Gg93AptU_3a66VblIT3KLHqKrkHHuMhfPIxk.cache
|
1260
1418
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/SQ/SQPrFInSYpfPUMfXYJXnph6q8eAFQsL_plvmqSwAVEM.cache
|
1261
1419
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/SR/SRppQZkF9KwCpA8Ud3swxGKHJUSM5M75OTHlmfiTeAY.cache
|
@@ -1269,8 +1427,13 @@ test_files:
|
|
1269
1427
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/U9/U9dnnrqeoOE-mYHdH4XmicZAjMQbjhjXdiA8VlMGsHA.cache
|
1270
1428
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/UA/UA89Y066oW41G1gWoHWdEXcPU2JZ66j8dnXKwoc3yJc.cache
|
1271
1429
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/UK/UKklu-xV4ZGx7P5-zWqENrlHQUaedqEuUNTgezjc3g0.cache
|
1430
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/UL/ULdjhhb0bRuqmaG7XSZlFYzGYCXTDnqZuJBTWRlzqgw.cache
|
1431
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/um/um1JrirR4hJhK-1rE-HywlyCi5ibgxHVrReiujZBWJM.cache
|
1432
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Up/UpPNgh0yYoUsyMDh5zWqe_U6qJIyTC6-dxMMAs1vvlM.cache
|
1272
1433
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/US/USYEqEC54xCRgdxfID_BklmAl2jIXZAKJ9BhapbMqNg.cache
|
1434
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/v4/v4fwVytD7ITcE0_GDbslZEYud8a5Okm85fV1o7SDl6g.cache
|
1273
1435
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/V5/V5dKKdHyA7y6N44igdqPBARmoV0tYdUsUrmf2lJkF6M.cache
|
1436
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/v_/v_0PAQt0iipQjFP5zjgkkk9Stnpf4VzvnMv67d1Keuw.cache
|
1274
1437
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/vH/vHyq2njTP0fsOdOun0eFn07YnFCTmJJkD89-pJ9tKYA.cache
|
1275
1438
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/VJ/VJ9Lp37PnSDzVOvhSVhKc2eG-KOuv3bRFxar6M8LLnA.cache
|
1276
1439
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/vK/vk4eyljHSm11GcRNbA0QEqn13Y4bEfxOcBwiesL-XvQ.cache
|
@@ -1281,14 +1444,18 @@ test_files:
|
|
1281
1444
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/w6/w6JBeSUs8dNJNtbRF-HVG3csGda2FlttAEBSpSHoqcE.cache
|
1282
1445
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/WA/WA0OKbW1ShDLWAbN4voLShkG6JaNjvWeSNF3ZpLcUqY.cache
|
1283
1446
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/wc/wcSdAX-yztEvzKx_xYHtqxT47ZyaLoLal_vKwPxEP08.cache
|
1447
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/wd/wdT9U4MKxe1PyqNjVuCKMpCl3dxGCIRJIlwUTfh2DQU.cache
|
1448
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Wg/Wguh-szFGTI1gaL6npYwPekMXflugRei7F_mOyRucXg.cache
|
1284
1449
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/wh/whuY0tTNf66sTcgILzLfelCAHIBpDZZIiOIuI12HNQw.cache
|
1285
1450
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/wi/wiKqSHxw-MJpM466KPFAcPyzBHxbpGGYW578TqFEJeg.cache
|
1286
1451
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/wi/wixK89IvA4Xk2MyJxkyLg-2xRs2vRPzY_OIs37bi8XA.cache
|
1287
1452
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Wr/WriMHycrWjgHpmRpAo9N4nvDB5T0lBL5EOTTUQUHwn4.cache
|
1288
1453
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Ws/WsHB1qkchRYVF4JV0Yqtr-QiyZ26DiLFtKTrCRVc5kI.cache
|
1289
1454
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/wz/wzY0ol5RRJK1j-hK9nckKoTMWK5TJDii5QSZMGTu5hk.cache
|
1455
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/X-/X-khLYMA9mqFRPg3zAi86mREDxpKl4bdKYp3uF6WHos.cache
|
1290
1456
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/x3/x3jUhlqTEK-rA6zTC8_MWGyKD8tZRhz2nPu0nCBgEGI.cache
|
1291
1457
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/XD/XDRDiP6A_Qz7pCCfZHYO6Xfob7trS4JQQoX_ByuWnRI.cache
|
1458
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/xI/xIaxut_fEIhKBDqljTNwYaADK9kj3gG0ESrfHs-5_og.cache
|
1292
1459
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/xL/xLktzniI5dkWKAifTMHzZvRHyRHOexsqV-ZRsdLXx0g.cache
|
1293
1460
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/xL/xLZtF0WWBePfiVBWxxi6brXCLsEfcrj435b9xJupeeU.cache
|
1294
1461
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Xr/XrGClLu5lOe_6gWU_Nm-tCAC6tUCFpoTPwyKLHmrnNw.cache
|
@@ -1296,6 +1463,7 @@ test_files:
|
|
1296
1463
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Xu/XupuIipXyzmZQIRfy2SfGTCS21Y-sBxWWjFWmnxYllM.cache
|
1297
1464
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/xv/xvoydM1zth53tauNTatJNfb-o44mAGDD9-85yRkpeqY.cache
|
1298
1465
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Xx/XxkX9e-7J9By7nLHpwyUoOdUJ78twXYUefvXKie2WkA.cache
|
1466
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/y0/y0SJOqIx2fn1SKqOkAihsQow0trRJrSIyAswufVuoA8.cache
|
1299
1467
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Yf/YfGn3oqi1Sm1_rHBqpmph8QpfhWTITbEUWS9waD_HKg.cache
|
1300
1468
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Yf/yfhQwhH-ul-osfCM7_EXtSEeujd0TqsbqPoVgj7ehi0.cache
|
1301
1469
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/yH/yHfd9J_SJGssjygyWK8-uLlvE6IlN6DIda7947QWVsI.cache
|
@@ -1305,15 +1473,39 @@ test_files:
|
|
1305
1473
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Z-/Z--HP-BzybXzcZ6TPTFHonJqTM1B3B2g-5uUSi_EuSc.cache
|
1306
1474
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/z2/z2ro57FqSGT_X2jnC68fS-HrFmCh7Wbrnrm45BceZoM.cache
|
1307
1475
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Za/ZaT_Lz8qe4rCd9sYS8dWxhl6MB_pWFUu7sqohGkRsAo.cache
|
1476
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/zg/zgpzeaX-KZErHyGJ1aBH3ZusweNXMneVZule88XsIJI.cache
|
1308
1477
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/zJ/zJfViroVCTZxyBh0pLP8_QiOxemqmKRkiU7BHAf5HxA.cache
|
1309
1478
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/zm/zmEmiHcLam0fJ2odLUV8n4hg9GN2gBDrJo7JCkkg8f4.cache
|
1310
1479
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/zP/zPBLf0GnkvCm86BY_8PtGJRyawPWy-JxWZp25_yNRfk.cache
|
1311
1480
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/ZT/ZTVpqYlcQg-w8iygSuUB7UBreT5bxLOPDNlKjzg5kMY.cache
|
1312
1481
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/ZT/ztYH9puOw0lwdIjwlH18IT68aY0KvTPEiAQTrxn4doQ.cache
|
1482
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/zy/zYFltDy-8VC-uKq2BVEiJJyYXNFvVzAKuMlR3ZIYZsk.cache
|
1313
1483
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/zy/zywotY5ANjNyE78CLDqC1eYRFwL1ZFzkT9J5LzNlI4M.cache
|
1314
1484
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Zz/Zzsh2ASGqBSWLSWIU4fAyxS3iVuJDxdTCw8jOOsUNzA.cache
|
1315
1485
|
- spec/dummy/tmp/restart.txt
|
1316
1486
|
- spec/dummy/tmp/screenshots/failures_test_it_handles_subscriptions.png
|
1487
|
+
- spec/fixtures/upgrader/account.original.rb
|
1488
|
+
- spec/fixtures/upgrader/account.transformed.rb
|
1489
|
+
- spec/fixtures/upgrader/blame_range.original.rb
|
1490
|
+
- spec/fixtures/upgrader/blame_range.transformed.rb
|
1491
|
+
- spec/fixtures/upgrader/date_time.original.rb
|
1492
|
+
- spec/fixtures/upgrader/date_time.transformed.rb
|
1493
|
+
- spec/fixtures/upgrader/delete_project.original.rb
|
1494
|
+
- spec/fixtures/upgrader/delete_project.transformed.rb
|
1495
|
+
- spec/fixtures/upgrader/gist_order_field.original.rb
|
1496
|
+
- spec/fixtures/upgrader/gist_order_field.transformed.rb
|
1497
|
+
- spec/fixtures/upgrader/increment_count.original.rb
|
1498
|
+
- spec/fixtures/upgrader/increment_count.transformed.rb
|
1499
|
+
- spec/fixtures/upgrader/photo.original.rb
|
1500
|
+
- spec/fixtures/upgrader/photo.transformed.rb
|
1501
|
+
- spec/fixtures/upgrader/release_order.original.rb
|
1502
|
+
- spec/fixtures/upgrader/release_order.transformed.rb
|
1503
|
+
- spec/fixtures/upgrader/starrable.original.rb
|
1504
|
+
- spec/fixtures/upgrader/starrable.transformed.rb
|
1505
|
+
- spec/fixtures/upgrader/subscribable.original.rb
|
1506
|
+
- spec/fixtures/upgrader/subscribable.transformed.rb
|
1507
|
+
- spec/fixtures/upgrader/type_x.original.rb
|
1508
|
+
- spec/fixtures/upgrader/type_x.transformed.rb
|
1317
1509
|
- spec/generators/graphql/enum_generator_spec.rb
|
1318
1510
|
- spec/generators/graphql/function_generator_spec.rb
|
1319
1511
|
- spec/generators/graphql/install_generator_spec.rb
|
@@ -1342,6 +1534,7 @@ test_files:
|
|
1342
1534
|
- spec/graphql/directive_spec.rb
|
1343
1535
|
- spec/graphql/enum_type_spec.rb
|
1344
1536
|
- spec/graphql/execution/execute_spec.rb
|
1537
|
+
- spec/graphql/execution/instrumentation_spec.rb
|
1345
1538
|
- spec/graphql/execution/lazy/lazy_method_map_spec.rb
|
1346
1539
|
- spec/graphql/execution/lazy_spec.rb
|
1347
1540
|
- spec/graphql/execution/multiplex_spec.rb
|
@@ -1362,12 +1555,15 @@ test_files:
|
|
1362
1555
|
- spec/graphql/introspection/schema_type_spec.rb
|
1363
1556
|
- spec/graphql/introspection/type_by_name_field_spec.rb
|
1364
1557
|
- spec/graphql/introspection/type_type_spec.rb
|
1558
|
+
- spec/graphql/language/block_string_spec.rb
|
1365
1559
|
- spec/graphql/language/definition_slice_spec.rb
|
1560
|
+
- spec/graphql/language/document_from_schema_definition_spec.rb
|
1366
1561
|
- spec/graphql/language/equality_spec.rb
|
1367
1562
|
- spec/graphql/language/generation_spec.rb
|
1368
1563
|
- spec/graphql/language/lexer_spec.rb
|
1369
1564
|
- spec/graphql/language/nodes_spec.rb
|
1370
1565
|
- spec/graphql/language/parser_spec.rb
|
1566
|
+
- spec/graphql/language/printer_spec.rb
|
1371
1567
|
- spec/graphql/language/visitor_spec.rb
|
1372
1568
|
- spec/graphql/list_type_spec.rb
|
1373
1569
|
- spec/graphql/non_null_type_spec.rb
|
@@ -1387,21 +1583,40 @@ test_files:
|
|
1387
1583
|
- spec/graphql/relay/connection_resolve_spec.rb
|
1388
1584
|
- spec/graphql/relay/connection_type_spec.rb
|
1389
1585
|
- spec/graphql/relay/edge_spec.rb
|
1586
|
+
- spec/graphql/relay/mongo_relation_connection_spec.rb
|
1390
1587
|
- spec/graphql/relay/mutation_spec.rb
|
1391
1588
|
- spec/graphql/relay/node_spec.rb
|
1392
1589
|
- spec/graphql/relay/page_info_spec.rb
|
1393
1590
|
- spec/graphql/relay/range_add_spec.rb
|
1394
1591
|
- spec/graphql/relay/relation_connection_spec.rb
|
1395
1592
|
- spec/graphql/scalar_type_spec.rb
|
1593
|
+
- spec/graphql/schema/argument_spec.rb
|
1396
1594
|
- spec/graphql/schema/build_from_definition_spec.rb
|
1397
1595
|
- spec/graphql/schema/catchall_middleware_spec.rb
|
1596
|
+
- spec/graphql/schema/enum_spec.rb
|
1597
|
+
- spec/graphql/schema/field_spec.rb
|
1598
|
+
- spec/graphql/schema/finder_spec.rb
|
1599
|
+
- spec/graphql/schema/input_object_spec.rb
|
1600
|
+
- spec/graphql/schema/instrumentation_spec.rb
|
1601
|
+
- spec/graphql/schema/interface_spec.rb
|
1602
|
+
- spec/graphql/schema/introspection_system_spec.rb
|
1398
1603
|
- spec/graphql/schema/loader_spec.rb
|
1604
|
+
- spec/graphql/schema/member/accepts_definition_spec.rb
|
1605
|
+
- spec/graphql/schema/member/build_type_spec.rb
|
1606
|
+
- spec/graphql/schema/member/has_fields_spec.rb
|
1607
|
+
- spec/graphql/schema/member/type_system_helpers_spec.rb
|
1399
1608
|
- spec/graphql/schema/middleware_chain_spec.rb
|
1609
|
+
- spec/graphql/schema/mutation_spec.rb
|
1610
|
+
- spec/graphql/schema/object_spec.rb
|
1400
1611
|
- spec/graphql/schema/printer_spec.rb
|
1612
|
+
- spec/graphql/schema/relay_classic_mutation_spec.rb
|
1401
1613
|
- spec/graphql/schema/rescue_middleware_spec.rb
|
1614
|
+
- spec/graphql/schema/resolver_spec.rb
|
1615
|
+
- spec/graphql/schema/scalar_spec.rb
|
1402
1616
|
- spec/graphql/schema/timeout_middleware_spec.rb
|
1403
1617
|
- spec/graphql/schema/traversal_spec.rb
|
1404
1618
|
- spec/graphql/schema/type_expression_spec.rb
|
1619
|
+
- spec/graphql/schema/union_spec.rb
|
1405
1620
|
- spec/graphql/schema/unique_within_type_spec.rb
|
1406
1621
|
- spec/graphql/schema/validation_spec.rb
|
1407
1622
|
- spec/graphql/schema/warden_spec.rb
|
@@ -1437,21 +1652,28 @@ test_files:
|
|
1437
1652
|
- spec/graphql/subscriptions/serialize_spec.rb
|
1438
1653
|
- spec/graphql/subscriptions_spec.rb
|
1439
1654
|
- spec/graphql/tracing/active_support_notifications_tracing_spec.rb
|
1655
|
+
- spec/graphql/tracing/new_relic_tracing_spec.rb
|
1440
1656
|
- spec/graphql/tracing/platform_tracing_spec.rb
|
1441
1657
|
- spec/graphql/tracing/scout_tracing_spec.rb
|
1442
1658
|
- spec/graphql/tracing_spec.rb
|
1443
1659
|
- spec/graphql/union_type_spec.rb
|
1660
|
+
- spec/graphql/upgrader/member_spec.rb
|
1661
|
+
- spec/graphql/upgrader/schema_spec.rb
|
1444
1662
|
- spec/rails_dependency_sanity_spec.rb
|
1445
1663
|
- spec/spec_helper.rb
|
1446
1664
|
- spec/support/base_generator_test.rb
|
1447
1665
|
- spec/support/dummy/data.rb
|
1448
1666
|
- spec/support/dummy/schema.rb
|
1667
|
+
- spec/support/jazz.rb
|
1449
1668
|
- spec/support/lazy_helpers.rb
|
1450
1669
|
- spec/support/magic_cards/schema.graphql
|
1451
1670
|
- spec/support/minimum_input_object.rb
|
1671
|
+
- spec/support/new_relic.rb
|
1452
1672
|
- spec/support/parser/filename_example.graphql
|
1453
1673
|
- spec/support/parser/filename_example_error_1.graphql
|
1454
1674
|
- spec/support/parser/filename_example_error_2.graphql
|
1675
|
+
- spec/support/star_trek/data.rb
|
1676
|
+
- spec/support/star_trek/schema.rb
|
1455
1677
|
- spec/support/star_wars/data.rb
|
1456
1678
|
- spec/support/star_wars/schema.rb
|
1457
1679
|
- spec/support/static_validation_helpers.rb
|