Skip to content

Commit d0dce25

Browse files
committed
Some doc fixes
1 parent 91346b7 commit d0dce25

6 files changed

Lines changed: 22 additions & 18 deletions

File tree

README.md

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
[![Build Status](https://travis-ci.org/jooby-project/jooby.svg?branch=master)](https://travis-ci.org/jooby-project/jooby)
22
[![Coverage Status](https://img.shields.io/coveralls/jooby-project/jooby.svg)](https://coveralls.io/r/jooby-project/jooby?branch=master)
3-
[![Issue Stats](http://issuestats.com/github/jooby-project/jooby/badge/issue?style=flat)](http://issuestats.com/github/jooby-project/jooby)
43
[![Google Group](https://img.shields.io/badge/google-group-orange.svg)](https://groups.google.com/forum/#!forum/jooby-project)
54
[![Join the chat at https://gitter.im/jooby-project/jooby](https://badges.gitter.im/jooby-project/jooby.svg)](https://gitter.im/jooby-project/jooby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
65
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jooby/jooby)
7-
[![Dependency Status](https://www.versioneye.com/user/projects/56e6afbcdf573d00495abe4c/badge.svg?style=flat)](https://www.versioneye.com/user/projects/56e6afbcdf573d00495abe4c)
86
[![ASF2](http://img.shields.io/badge/license-ASF2-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.txt)
97
[![Twitter @joobyproject](https://img.shields.io/badge/twitter--blue.svg)](https://twitter.com/joobyproject)
108

@@ -213,18 +211,7 @@ where to go now?
213211
-----
214212
215213
* read the [documentation](/doc)
216-
* checkout one of our [guides](https://github.com/jooby-project)
217-
218-
versioning
219-
=====
220-
221-
Jooby uses [semantic versioning](http://semver.org/) for releases.
222-
223-
API is considered unstable while release version is: ```0.x.x``` and it might changes and/or broke without previous notification.
224-
225-
This might sounds terrible but isn't. Any change on the API will be reported by the Java Compiler and it wont take you a long time to fix it.
226-
227-
Finally, API changes can be filtered and displayed it [at any time](https://github.com/jooby-project/jooby/labels/api-change)
214+
* checkout one of our [starter projects](https://github.com/search?q=topic%3Astarter+org%3Ajooby-project&type=Repositories)
228215
229216
want to contribute?
230217
=====

jooby-lang-kotlin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,6 @@ fun main(args: Array<String>) {
160160

161161
## starter project
162162

163-
We do provide a starter [Kotlin](https://kotlinlang.org) project ready to use. Just go to [Github](https://github.com/jooby-project/lang-kotlin) and fork it.
163+
We do provide a [kotlin-starter](https://github.com/jooby-project/kotlin-starter) project. Go and [fork it](https://github.com/jooby-project/kotlin-starter).
164164

165165
That's all folks!!

md/doc/ebean/ebean.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This module extends [jdbc module](/doc/jdbc), before going forward, make sure yo
2222

2323
```java
2424
{
25-
use(new Ebeanby().doWith(conf -> {
25+
use(new Ebeanby().doWith((ServerConfig conf) -> {
2626
conf.addClass(Pet.class);
2727
}));
2828

@@ -93,10 +93,16 @@ Or programmatically:
9393

9494
```java
9595
{
96-
use(new Ebeanby().doWith(conf -> {
96+
use(new Ebeanby().doWith((ServerConfig conf) -> {
9797
conf.setDisableClasspathSearch(false);
9898
}));
9999
}
100100
```
101101

102+
## starter project
103+
104+
We do provide an [ebean-starter](https://github.com/jooby-project/ebean-starter) project. Go and [fork it](https://github.com/jooby-project/ebean-starter).
105+
106+
That's all folks!!
107+
102108
{{appendix}}

md/doc/livereload/livereload.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,9 @@ The <a href="http://feedback.livereload.com/knowledgebase/articles/86174-liverel
6262
It automatically reload static resources from ```public```, ```target``` (Maven projects) or ```build``` folders (Gradle projects).
6363

6464
Every time a change is detected the websocket send a ```reload command```.
65+
66+
## starter project
67+
68+
We do provide a [livereload-starter](https://github.com/jooby-project/livereload-starter) project. Go and [fork it](https://github.com/jooby-project/livereload-starter).
69+
70+
That's all folks!!

md/doc/requery/requery.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,4 +171,8 @@ Advanced configuration is available via callback function:
171171
}
172172
```
173173
174+
## starter project
175+
176+
We do provide a [requery-starter](https://github.com/jooby-project/requery-starter) project. Go and [fork it](https://github.com/jooby-project/requery-starter).
177+
174178
That's all folks!!

md/kotlin.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ The `run` function is a [type-safe builder](http://kotlinlang.org/docs/reference
3232

3333
## idioms
3434

35+
3536
### request access
3637

3738
Access to {{request}} is available via **request callback**:
@@ -160,6 +161,6 @@ fun main(args: Array<String>) {
160161

161162
## starter project
162163

163-
We do provide a starter [Kotlin](https://kotlinlang.org) project ready to use. Just go to [Github](https://github.com/jooby-project/lang-kotlin) and fork it.
164+
We do provide a [kotlin-starter](https://github.com/jooby-project/kotlin-starter) project. Go and [fork it](https://github.com/jooby-project/kotlin-starter).
164165

165166
That's all folks!!

0 commit comments

Comments
 (0)