diff --git a/README.md b/README.md index 18127dce..a7f46d7e 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,7 @@ These libraries are used for local development of ElasticGraph applications, but ```mermaid graph LR; - elasticgraph-local --> elasticgraph-admin & elasticgraph-graphql & elasticgraph-indexer & elasticgraph-rack & elasticgraph-schema_definition & rackup & rake + elasticgraph-local --> elasticgraph-admin & elasticgraph-graphql & elasticgraph-indexer & elasticgraph-rack & elasticgraph-schema_definition & rackup & rake & webrick elasticgraph-rack --> elasticgraph-graphql & rack elasticgraph-schema_definition --> elasticgraph-graphql & elasticgraph-indexer & elasticgraph-json_schema & elasticgraph-schema_artifacts & elasticgraph-support & graphql & rake style elasticgraph-local color: DodgerBlue; @@ -191,6 +191,7 @@ graph LR; style elasticgraph-indexer color: Green; style rackup color: Red; style rake color: Red; + style webrick color: Red; style rack color: Red; style elasticgraph-json_schema color: Green; style elasticgraph-schema_artifacts color: Green; @@ -200,6 +201,7 @@ click graphql href "https://rubygems.org/gems/graphql" click rack href "https://rubygems.org/gems/rack" click rackup href "https://rubygems.org/gems/rackup" click rake href "https://rubygems.org/gems/rake" +click webrick href "https://rubygems.org/gems/webrick" ``` diff --git a/elasticgraph-apollo/apollo_tests_implementation/Gemfile b/elasticgraph-apollo/apollo_tests_implementation/Gemfile index 0b43ce65..51b39f5d 100644 --- a/elasticgraph-apollo/apollo_tests_implementation/Gemfile +++ b/elasticgraph-apollo/apollo_tests_implementation/Gemfile @@ -24,4 +24,5 @@ source "https://rubygems.org" gem "elasticgraph-#{suffix}", path: "elasticgraph-#{suffix}" end -gem "rackup", "~> 2.1" +gem "rackup", "~> 2.2" +gem "webrick", "~> 1.9" diff --git a/elasticgraph-local/elasticgraph-local.gemspec b/elasticgraph-local/elasticgraph-local.gemspec index 661aacf3..c96d4c50 100644 --- a/elasticgraph-local/elasticgraph-local.gemspec +++ b/elasticgraph-local/elasticgraph-local.gemspec @@ -16,8 +16,9 @@ ElasticGraphGemspecHelper.define_elasticgraph_gem(gemspec_file: __FILE__, catego spec.add_dependency "elasticgraph-indexer", eg_version spec.add_dependency "elasticgraph-rack", eg_version spec.add_dependency "elasticgraph-schema_definition", eg_version - spec.add_dependency "rackup", "~> 2.1" + spec.add_dependency "rackup", "~> 2.2" spec.add_dependency "rake", "~> 13.2" + spec.add_dependency "webrick", "~> 1.9" spec.add_development_dependency "elasticgraph-elasticsearch", eg_version spec.add_development_dependency "elasticgraph-opensearch", eg_version