Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand All @@ -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"
```


Expand Down
3 changes: 2 additions & 1 deletion elasticgraph-apollo/apollo_tests_implementation/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
3 changes: 2 additions & 1 deletion elasticgraph-local/elasticgraph-local.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down