Skip to content

Commit 62a8d42

Browse files
committed
add exports entry to modules
1 parent 41a87bc commit 62a8d42

30 files changed

Lines changed: 134 additions & 30 deletions

File tree

md/doc/aws/aws.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ It also give you access to aws credentials (access and secret keys).
66

77
## exports
88

9-
* One ore more ```AmazonWebServiceClient```
9+
* One ore more ```AmazonWebServiceClient```, like ```AmazonS3Client```, ```AmazonSimpleEmailServiceClient```, etc...
1010

1111
## dependency
1212

md/doc/camel/camel.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ exports a [CamelContext], [ProducerTemplate] and [ConsumerTemplate].
1010
NOTE: This module was designed to provide a better integration with Jooby. This module doesn't
1111
depend on [camel-guice](http://camel.apache.org/guice.html), but it provides similar features.
1212

13+
## exports
14+
15+
* ```CamelContext```
16+
* ```ProducerTemplate```
17+
* ```ConsumerTemplate```
18+
* ```RouteBuilder```
19+
1320
## dependency
1421

1522
```xml

md/doc/commons-email/commons-email.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ Email supports via {{commons-email}}.
44

55
Small but helpful module that provides access to ```Email``` instances.
66

7+
## exports
8+
9+
* ```SimpleEmail```
10+
* ```MultiPartEmail```
11+
* ```HtmlEmail```
12+
13+
## dependency
14+
15+
```xml
16+
<dependency>
17+
<groupId>org.jooby</groupId>
18+
<artifactId>jooby-commons-email</artifactId>
19+
<version>{{version}}</version>
20+
</dependency>
21+
```
22+
723
## usage
824

925
application.conf:

md/doc/ebean/ebean.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This module extends [jdbc module](/doc/jdbc), before going forward, make sure yo
66

77
## exports
88

9-
* ```EbeanServer``` objects
9+
* ```EbeanServer```
1010

1111
## dependency
1212

md/doc/ehcache/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Provides advanced cache features via {{ehcache}}
44

55
## exports
66

7-
* A ```CacheManager```
8-
* Direct access to ```Ehcache``` instances
7+
* ```CacheManager```
8+
* ```Ehcache```
99

1010
## dependency
1111

md/doc/elasticsearch/elasticsearch.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ Enterprise full text search via {{elasticsearch}}.
44

55
Provides a client/local API but also a RESTFul API.
66

7+
## exports
8+
9+
* ```/search``` route
10+
* ```Client```
11+
712
## dependency
813

914
```xml

md/doc/executor/executor.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
Manage the life cycle of {@link ExecutorService} and build async apps, schedule tasks, etc...
44

5+
## exports
6+
7+
* One or more ```ExecutorService``` or sub-types of it
8+
59
## dependency
610

711
```xml

md/doc/flyway/flyway.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,4 @@ There are some defaults setting that you can see in the appendix.
7474

7575
For more information, please visit the {{flyway}} site.
7676

77-
Happy coding!!!
78-
7977
{{appendix}}

md/doc/ftl/ftl.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# freemarker
22

3-
[Freemarker](http://freemarker.org) templates for [Jooby]({{site}}). exports a Configuration and [renderer]({{defdocs}}/Renderer.html).
3+
[Freemarker](http://freemarker.org) templates for [Jooby]({{site}}).
4+
5+
## exports
6+
7+
* Freemarker ```Configuration```
8+
* [ViewEngine]({{defdocs}}/View.Engine.html)
49

510
## dependency
611

md/doc/gson/gson.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ JSON support via [Gson](https://github.com/google/gson) library.
44

55
## exports
66

7-
* A [Gson](https://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/com/google/gson/Gson.html)
8-
* A [Parser]({{apidocs}}/Parser.html)
9-
* A [Renderer]({{apidocs}}/Renderer.html)
7+
* [Gson](https://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/com/google/gson/Gson.html)
8+
* [Parser]({{defdocs}}/Parser.html)
9+
* [Renderer]({{defdocs}}/Renderer.html)
1010

1111
## dependency
1212

0 commit comments

Comments
 (0)