nicolaferraro opened a new pull request #83: Experimental IDE auto-completion 
using grape
URL: https://github.com/apache/camel-k-runtime/pull/83
 
 
   This adds a Builder class that can be imported statically in a groovy file 
and provides access to all RouteBuilder methods also in the IDE.
   
   A file like the following can be written in the IDE (and runs correctly):
   
   ```
   @Grab("org.apache.camel.k:camel-k-runtime-groovy:1.0.0-SNAPSHOT")
   import static org.apache.camel.k.groovy.Builder.*
   
   from("timer:tick")
     .setBody(constant("Daje de autocompletion"))
     .to("log:info")
   ```
   
   This is a draft experiment and should be extended with `context` and other 
configurers.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to