-
As a mechanism for making things globally accessible…
```
ratpack {
modules {
// add some modules
}
handlers { SomeService someService ->
get("foo") {
someService.method()
}
…
-
In order to deploy on Heroku, a [buildpack](https://devcenter.heroku.com/articles/buildpacks) is required to release your application.
The official Gradle buildpack is stuck on Gradle 1.0-milestone-5…
-
I would like to raise a request for support HEAD verb in a similar fashion to which GET is supported.
i.e.
``` groovy
ratpack {
handlers {
head {
// do something
}
head 'file.t…
-
# Goal
Using Capybara to test real time feature
# Problem
The server works when starting it with `bundle exec thin start -R ./sinatra/config.ru -p $PORT` and the system works as expected, websockets…
5v3n updated
11 years ago
-
I'm evaluating the standalone Groovy script example (I've used the previous version of Ratpack quite a bit) and when I modify templates/date.html the changes are not reflected when the page is reloade…
-
There are a few cases where we know what the content type will be, but don't have the body. See DefaultByContentResponder.
We should introduce an easy way to do this...
```
Response contentType(Stri…
-
-
Contenders:
1. Context
2. HandlerContext
3. Route
-
./gradlew run gives the following output:
:compileGroovy
startup failed:
/Users/sean/git/example-ratpack-gradle-groovy-app/src/main/groovy/groovywebconsole/ScriptExecutor.groovy: 4: unable to resolve…
-
See: https://github.com/ratpack/ratpack/blob/master/ratpack-core/src/main/java/org/ratpackframework/http/Request.java#L38
Both of this are available as Map, which while technically correct is not opt…