-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Usage with Grails Framework #11
Comments
Ok, there seems to be an issue with Grails framework and how it loads the Groovy ExtensionModules. Just add the below code to your BootStrap.init to make Grails load the ExtensionModules from your dependencies.
|
What is the latest Gradle dependency to add into Grails for RxGroovy? Is this still valid? |
I got somethign like this for mine |
If I follow the usage examples on a Grails v2.3.11 application I always get a
MissingMethodException
like the one below:groovy.lang.MissingMethodException: No signature of method: rx.Observable.subscribe() is applicable for argument types: (my.package.TestController$_show_closure1)
Seems like the
Subscribe()
method does not allow closures, but as per the examples it should allow them.I configured my dependencies like:
Any idea why is this happening? You can use the Hello World example to try reproducing this (it's the one I'm using).
The text was updated successfully, but these errors were encountered: