Skip to content

Commit 36ddc77

Browse files
author
synapticloop
committed
updated documentation and version
1 parent d6944f9 commit 36ddc77

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed

README.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,15 @@ Yes, you can now do some server side includes, using the synapticloop templar te
5959
To make it quicker and easier to get started with routemaster, we added in module
6060
functionality so that it can be easily extended.
6161

62-
### Step 1:
62+
### Instructions:
63+
64+
Download the `routemaster-<version>-server.jar` from the [github releases directory](https://github.com/synapticloop/routemaster/releases) *(which contains all of the dependencies that are required)*, download modules that you require and place them in the `modules` directory from where you launched the routemaster server.
65+
66+
These will be automatically registered and ready to go.
67+
68+
For an example module with everything you need to build and deploy, see [https://github.com/synapticloop/routemaster-module-example](https://github.com/synapticloop/routemaster-module-example).
69+
6370

64-
Download the `routemaster-<version>-server.jar` from the [https://github.com/synapticloop/routemaster/releases](github releases directory)
65-
which contains all of the dependencies that are required
6671

6772

6873

@@ -235,9 +240,9 @@ repositories {
235240
236241
237242
dependencies {
238-
runtime(group: 'synapticloop', name: 'routemaster', version: '2.0.0', ext: 'jar')
243+
runtime(group: 'synapticloop', name: 'routemaster', version: '2.1.0', ext: 'jar')
239244
240-
compile(group: 'synapticloop', name: 'routemaster', version: '2.0.0', ext: 'jar')
245+
compile(group: 'synapticloop', name: 'routemaster', version: '2.1.0', ext: 'jar')
241246
}
242247
243248
@@ -249,9 +254,9 @@ or, more simply for versions of gradle greater than 2.1
249254
250255
251256
dependencies {
252-
runtime 'synapticloop:routemaster:2.0.0'
257+
runtime 'synapticloop:routemaster:2.1.0'
253258
254-
compile 'synapticloop:routemaster:2.0.0'
259+
compile 'synapticloop:routemaster:2.1.0'
255260
}
256261
257262
@@ -265,7 +270,7 @@ dependencies {
265270
<dependency>
266271
<groupId>synapticloop</groupId>
267272
<artifactId>routemaster</artifactId>
268-
<version>2.0.0</version>
273+
<version>2.1.0</version>
269274
<type>jar</type>
270275
</dependency>
271276

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ plugins {
1515
id "synapticloop.documentr" version "2.9.0"
1616
}
1717

18-
version = '2.0.0'
18+
version = '2.1.0'
1919

2020
group = 'synapticloop'
2121
archivesBaseName = 'routemaster'

src/docs/readme.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ Download the `routemaster-<version>-server.jar` from the [github releases direc
2121

2222
These will be automatically registered and ready to go.
2323

24+
For an example module with everything you need to build and deploy, see [https://github.com/synapticloop/routemaster-module-example](https://github.com/synapticloop/routemaster-module-example).
25+
26+
27+
2428

2529
## Options
2630

0 commit comments

Comments
 (0)