Skip to content

Commit 9591784

Browse files
authored
Update edgedb name to gel in docs and build configs. (#52)
1 parent ff91975 commit 9591784

28 files changed

+62
-62
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
![EdgeDB Java](./branding/banner.png)
1+
![Gel Java](./branding/banner.png)
22

33
<div align="center">
4-
<h1>☕ The official Java/JVM client library for EdgeDB ☕</h1>
4+
<h1>☕ The official Java/JVM client library for Gel ☕</h1>
55

66
<a href="https://github.com.gel/edgedb-java/actions" rel="nofollow">
77
<img src="https://github.com.gel/edgedb-java/actions/workflows/gradle.yml/badge.svg?event=push&branch=master" alt="Build status">
@@ -42,7 +42,7 @@ libraryDependencies ++= Seq(
4242

4343
## Usage
4444

45-
The `GelClientPool` class contains all the methods necessary to interact with the EdgeDB database.
45+
The `GelClientPool` class contains all the methods necessary to interact with the Gel database.
4646

4747
```java
4848
import com.gel.driver.GelClientPool;

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ext {
99
github_org = 'edgedb'
1010
project_name = 'edgedb-java'
1111
artifact_group = 'com.gel'
12-
project_description = 'Java binding for the EdgeDB database'
12+
project_description = 'Java binding for Gel'
1313
project_url = "https://edgedb.com"
1414
project_jdk = '11'
1515
jdk = JavaVersion.current().majorVersion

dbschema/futures.esdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Disable the application of access policies within access policies
2-
# themselves. This behavior will become the default in EdgeDB 3.0.
2+
# themselves. This behavior will become the default in Gel 3.0.
33
# See: https://www.edgedb.com/docs/reference/ddl/access_policies#nonrecursive
44
using future nonrecursive_access_policies;

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717

1818
# -- Project information -----------------------------------------------------
1919

20-
project = 'edgedb'
21-
copyright = '2019-present MagicStack Inc. and the EdgeDB authors.'
22-
author = 'MagicStack Inc. and the EdgeDB authors'
20+
project = 'gel'
21+
copyright = '2019-present MagicStack Inc. and the Gel authors.'
22+
author = 'MagicStack Inc. and the Gel authors'
2323

2424

2525
# The full version, including alpha/beta/rc tags

docs/configuration.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. _edgedb-java-configuration:
1+
.. _gel-java-configuration:
22

33
=============
44
Configuration
@@ -30,7 +30,7 @@ These are the following methods exposed on the configuration builder:
3030
+------------------------------+-------------------------+---------------------------------------------------------------------------------------------+
3131
| ``withConnectionTimeout`` | ``long``, ``TimeUnit`` | The amount of time to wait for a connection to be established. |
3232
+------------------------------+-------------------------+---------------------------------------------------------------------------------------------+
33-
| ``withMessageTimeout`` | ``long, TimeUnit`` | The amount of time to wait for an expected response from EdgeDB. |
33+
| ``withMessageTimeout`` | ``long, TimeUnit`` | The amount of time to wait for an expected response from Gel. |
3434
+------------------------------+-------------------------+---------------------------------------------------------------------------------------------+
3535
| ``withExplicitObjectIds`` | ``boolean`` | Whether or not the ``id`` property of objects need to be explicitly included in shapes. |
3636
+------------------------------+-------------------------+---------------------------------------------------------------------------------------------+

docs/connecting.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. _edgedb_java_connecting:
1+
.. _gel_java_connecting:
22

33
=====================
44
Connection Parameters
@@ -56,18 +56,18 @@ This method parses a :ref:`DSN <ref_dsn>` string into an ``GelConnection``.
5656
.. code-block:: java
5757
5858
var connection = GelConnection
59-
.fromDSN("edgedb://user:pass@host:port/db");
59+
.fromDSN("gel://user:pass@host:port/db");
6060
6161
fromProjectFile
6262
^^^^^^^^^^^^^^^
6363

64-
This method resolves connection arguments from an ``edgedb.toml``
64+
This method resolves connection arguments from a ``gel.toml``
6565
:ref:`project file <ref_intro_projects>`.
6666

6767
.. code-block:: java
6868
6969
var connection = GelConnection
70-
.fromProjectFile("~/myproject/edgedb.toml");
70+
.fromProjectFile("~/myproject/gel.toml");
7171
7272
fromInstanceName
7373
^^^^^^^^^^^^^^^^
@@ -83,7 +83,7 @@ resolveEdgeDBTOML
8383
^^^^^^^^^^^^^^^^^
8484

8585
This method is the default behaviour, it scans the current directory for
86-
a ``edgedb.toml`` project file, if none is found, the parent directory is
86+
a ``gel.toml`` project file, if none is found, the parent directory is
8787
scanned recursivly until a project file is found; if none is found, a
8888
``FileNotFoundException`` is raised.
8989

docs/datamodeling.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. _edgedb_java_datamodeling:
1+
.. _gel_java_datamodeling:
22

33
=============
44
Data modeling
@@ -10,7 +10,7 @@ Basic representation
1010
--------------------
1111

1212
You can simply create a class that matches the schema types' properties
13-
by following the :ref:`scalar type map <edgedb_java_datatypes>`.
13+
by following the :ref:`scalar type map <gel_java_datatypes>`.
1414

1515
.. tabs::
1616

docs/datatypes.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
.. _edgedb_java_datatypes:
1+
.. _gel_java_datatypes:
22

33
=========
44
Datatypes
55
=========
66

7-
The Java binding maps the following EdgeDB types to corresponding JVM types:
7+
The Java binding maps the following Gel types to corresponding JVM types:
88

99
+------------------------------------+---------------------------------------------------------+
10-
| EdgeDB Type | JVM Type |
10+
| Gel Type | JVM Type |
1111
+====================================+=========================================================+
1212
| ``Set`` | ``Collection<T>`` |
1313
+------------------------------------+---------------------------------------------------------+

docs/index.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
.. _edgedb-java-intro:
1+
.. _gel-java-intro:
22

3-
==============================
4-
Java client library for EdgeDB
5-
==============================
3+
===========================
4+
Java client library for Gel
5+
===========================
66

77
.. toctree::
88
:maxdepth: 3
@@ -15,12 +15,12 @@ Java client library for EdgeDB
1515
transactions
1616

1717

18-
This is the official EdgeDB Java client, available to other JVM languages as well.
18+
This is the official Gel Java client, available to other JVM languages as well.
1919

2020
Quickstart
2121
----------
2222

23-
To get started, you will need to setup an EdgeDB project and have an instance
23+
To get started, you will need to setup an Gel project and have an instance
2424
created. For more information regarding how to do this, we recommend going
2525
through the `Quickstart guide <https://www.edgedb.com/docs/intro/quickstart>`_.
2626

@@ -43,7 +43,7 @@ project.
4343
implementation 'com.gel:driver'
4444

4545
Once you have the dependency added, you can start using the client. The
46-
following is a simple example of how to connect to an EdgeDB instance and
46+
following is a simple example of how to connect to an Gel instance and
4747
execute a query:
4848

4949
.. tabs::
@@ -123,7 +123,7 @@ schema type:
123123
}
124124
}
125125

126-
Learn more about :ref:`data modeling <edgedb_java_datamodeling>`.
126+
Learn more about :ref:`data modeling <gel_java_datamodeling>`.
127127

128128
Logging
129129
-------

docs/transactions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. _edgedb_java_transactions:
1+
.. _gel_java_transactions:
22

33
============
44
Transactions

0 commit comments

Comments
 (0)