Skip to content

Commit

Permalink
preparing for release 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Shiti committed Jul 14, 2015
1 parent 53f78ce commit f29e72a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 96 deletions.
18 changes: 1 addition & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,17 +132,6 @@ GET /ui com.tuplejump.playYeoman.Yeoman.index
-> /ui/ yeoman.Routes
```

If using, injected routes generator (0.8.1 onwards),

```
GET /ui @com.tuplejump.playYeoman.Yeoman.index
-> /ui/ yeoman.Routes
```

Optionally, you can also redirect your root url,
Expand All @@ -153,12 +142,8 @@ GET / com.tuplejump.playYeoman.Yeoman.redirectRoot(base="/ui/")
```

If using, injected routes generator (0.8.1 onwards),
```
GET / @com.tuplejump.playYeoman.Yeoman.redirectRoot(base="/ui/")
If using, Play's injected routes generator, prefixing the route with `@` will work except for `yeoman.Routes`. It can be used as is.

```

6) Start play/sbt in your project folder,

Expand Down Expand Up @@ -288,7 +273,6 @@ For this purpose play-yeoman provides 2 settings that you can use in you play pr

2) yeoman.devDirs - This is a List of String that takes a list of locations where play-yeoman should look for files in development mode i.e. when run using sbt run.


Note: Starting from 0.7.1, it is possible to disable force option on execution of grunt tasks. This can be done by adding the following to the application build settings,

```
Expand Down
4 changes: 4 additions & 0 deletions notes/0.8.1.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
New in this release

+ Support for using Play's injected routes generator.
+ updated default value for devDirs to include 'ui'. (related to #78)
9 changes: 0 additions & 9 deletions yo-demo/conf/routes~

This file was deleted.

49 changes: 0 additions & 49 deletions yo-demo/ui/app/index.html~

This file was deleted.

22 changes: 1 addition & 21 deletions yo-injection-demo/conf/routes
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,7 @@
# This file defines all application routes (Higher priority routes first)
# ~~~~

## OLD HOME PAGE
#GET /oldhome @controllers.Application.index
#
#GET /api/somejson @controllers.Application.json(keyword: String)
#
#
## Home page
#GET / @controllers.YeomanController.redirectRoot(base="/ui/")
#
## Map static resources from the /public folder to the /assets URL path
#GET /assets/*file @controllers.Assets.at(path="/public", file)
#
#GET /ui/views/templ.html @controllers.Application.serveTemplate
#
#GET /ui @controllers.YeomanController.index
#
#-> /ui/ yeoman.Routes
#
#GET /tdemo @controllers.Application.templateDemo
#

# OLD HOME PAGE
GET /oldhome @controllers.Application.index

GET /api/somejson @controllers.Application.json(keyword: String)
Expand Down

0 comments on commit f29e72a

Please sign in to comment.