<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Disqus - Latest Comments for aalmiray</title><link>http://disqus.com/by/aalmiray/</link><description></description><atom:link href="http://disqus.com/aalmiray/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Tue, 22 Jul 2014 15:57:29 -0000</lastBuildDate><item><title>Re: JUnit Rules and Spock</title><link>http://blog.andresteingress.com/2014/07/22/spock-junit-rules/#comment-1498498384</link><description>&lt;p&gt;I think that the rule field must have an explicit public modifier, otherwise the JUnit verifier complains.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aalmiray</dc:creator><pubDate>Tue, 22 Jul 2014 15:57:29 -0000</pubDate></item><item><title>Re: The Curious Coder’s Guide to Java Web Frameworks: Grails</title><link>https://zeroturnaround.com/rebellabs/the-curious-coders-guide-to-java-web-frameworks-grails/#comment-950328396</link><description>&lt;p&gt;Excellent intro, just a few remarks:&lt;/p&gt;&lt;p&gt; * latest Grails release is 2.2.3; a must have if you're running jdk7u25. See &lt;a href="http://jira.grails.org/browse/GRAILS-10183" rel="nofollow noopener" target="_blank" title="http://jira.grails.org/browse/GRAILS-10183"&gt;http://jira.grails.org/brow...&lt;/a&gt;&lt;br&gt; * There's great support for Grails in all major IDEs. Eclipse is not a *must* in order to develop Grails applications. You can even use text editors such as TextMate, Sublime Text, or my personal favorite: Vim.&lt;br&gt; * There's no need to generate controller and views If relying on default behavior, just scaffold everything &lt;a href="http://grails.org/doc/latest/guide/single.html#scaffolding" rel="nofollow noopener" target="_blank" title="http://grails.org/doc/latest/guide/single.html#scaffolding"&gt;http://grails.org/doc/lates...&lt;/a&gt; and customize as needed&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aalmiray</dc:creator><pubDate>Wed, 03 Jul 2013 06:25:36 -0000</pubDate></item><item><title>Re: </title><link>https://zeroturnaround.com/rebellabs/scripting-your-java-application-with-groovy/#comment-865133603</link><description>&lt;p&gt;There are several ways to instantiate a GroovyShell. One particular constructor can handle "org.codehaus.groovy.control.CompilerConfiguration" as input. This class is used to setup configuration options to the underlying Groovy compiler used by the Shell. One of those options allow you to define a base class for the generated script. This class must extend "groovy.lang.Script" however you may define additional methods. The following link [ &lt;a href="https://gist.github.com/aalmiray/5395913" rel="nofollow noopener" target="_blank" title="https://gist.github.com/aalmiray/5395913"&gt;https://gist.github.com/aal...&lt;/a&gt; ] shows a modified version of the examples demonstrated by Anton; this example makes use of a custom script class, no need to muck around with Java proxies anymore ;-)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aalmiray</dc:creator><pubDate>Tue, 16 Apr 2013 09:42:44 -0000</pubDate></item><item><title>Re: The Adventurous Developer&amp;#8217;s Guide to JVM Languages &amp;#8211; Fantom</title><link>https://zeroturnaround.com/rebellabs/the-adventurous-developers-guide-to-jvm-languages-fantom/#comment-797637273</link><description>&lt;p&gt;@Oleg: while I agree that Fantom's multi-line feature with automatic indentation feels more natural than Groovy's let me remind readers of two GDK ( &lt;a href="http://groovy.codehaus.org/groovy-jdk" rel="nofollow noopener" target="_blank" title="http://groovy.codehaus.org/groovy-jdk"&gt;http://groovy.codehaus.org/...&lt;/a&gt; ) methods available on java.lang.String: stripIndent() and stripMargin().&lt;/p&gt;&lt;p&gt;The following snippets produce the well formatted output without forcing multi-line strings to skip left indentation&lt;/p&gt;&lt;p&gt;&lt;a href="https://gist.github.com/aalmiray/4944681" rel="nofollow noopener" target="_blank" title="https://gist.github.com/aalmiray/4944681"&gt;https://gist.github.com/aal...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aalmiray</dc:creator><pubDate>Wed, 13 Feb 2013 08:44:21 -0000</pubDate></item><item><title>Re: Scala, Groovy &amp;#8211; A Comparision</title><link>http://www.tutkiun.com/2009/12/scala-groovy-a-comparision.html#comment-123477716</link><description>&lt;p&gt;Not to mention that Play! supports Groovy too (even before Scala support was added). Additional Groovy frameworks/tools include:&lt;/p&gt;&lt;p&gt;Gaelyk (&lt;a href="http://gaelyk.appspot.com/)" rel="nofollow noopener" target="_blank" title="http://gaelyk.appspot.com/)"&gt;http://gaelyk.appspot.com/)&lt;/a&gt; - GAE web framework&lt;br&gt;Ratpack (&lt;a href="https://github.com/bleedingwolf/Ratpack)" rel="nofollow noopener" target="_blank" title="https://github.com/bleedingwolf/Ratpack)"&gt;https://github.com/bleeding...&lt;/a&gt; - minimalistic web framework inspired in Ruby's Sinatra (Scala has Scalatra -&amp;gt; &lt;a href="http://www.scalatra.org/)" rel="nofollow noopener" target="_blank" title="http://www.scalatra.org/)"&gt;http://www.scalatra.org/)&lt;/a&gt;&lt;br&gt;Spock (&lt;a href="http://www.spockframework.org/)" rel="nofollow noopener" target="_blank" title="http://www.spockframework.org/)"&gt;http://www.spockframework.o...&lt;/a&gt; - Uber testing framework. Scala has Scalatest (&lt;a href="http://www.scalatest.org/)" rel="nofollow noopener" target="_blank" title="http://www.scalatest.org/)"&gt;http://www.scalatest.org/)&lt;/a&gt; and Scalacheck (&lt;a href="http://code.google.com/p/scalacheck/)" rel="nofollow noopener" target="_blank" title="http://code.google.com/p/scalacheck/)"&gt;http://code.google.com/p/sc...&lt;/a&gt; but they do not come close to what Spock can do. Also there's Easyb (&lt;a href="http://www.easyb.org/)" rel="nofollow noopener" target="_blank" title="http://www.easyb.org/)"&gt;http://www.easyb.org/)&lt;/a&gt;&lt;br&gt;GPars (&lt;a href="http://gpars.codehaus.org/)" rel="nofollow noopener" target="_blank" title="http://gpars.codehaus.org/)"&gt;http://gpars.codehaus.org/)&lt;/a&gt; - a library that provides constructs for handling concurrency (not just Actors), similarly to Akka.&lt;br&gt;Gradle (&lt;a href="http://www.gradle.org" rel="nofollow noopener" target="_blank" title="http://www.gradle.org"&gt;http://www.gradle.org&lt;/a&gt;) - next generation build tool (Scala has SBT, however it also does not come close to Gradle's flexibility).&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aalmiray</dc:creator><pubDate>Mon, 03 Jan 2011 09:19:06 -0000</pubDate></item></channel></rss>